Skip to content

Commit 6f8fa98

Browse files
authored
feat: #42 - Make swarm mode the default for /research (#43)
* feat(research): make swarm mode the default workflow Inverts the route selection so research commands use the agent team (swarm) workflow by default. Users can opt out with --no-swarm instead of opting in with --swarm. * chore: bump version to 1.22.0
1 parent 720a2b5 commit 6f8fa98

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sdlc",
3-
"version": "1.21.0",
3+
"version": "1.22.0",
44
"description": "Comprehensive SDLC plugin with specialized agents, commands, and integrations for enhanced software development workflow",
55
"author": {
66
"name": "Ladislav Martincik",

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to the SDLC Plugin will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.22.0] - 2026-02-14
9+
10+
### Changed
11+
12+
- **Swarm mode default**`/research` now uses agent team (swarm) workflow by default; opt out with `--no-swarm` instead of opting in with `--swarm`
13+
814
## [1.21.0] - 2026-02-14
915

1016
### Changed

commands/research.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Read documentarian constraints (Glob `**/sdlc/**/references/documentarian-constr
1818

1919
### CRITICAL: Route Selection
2020

21-
BEFORE taking any other action, check `$ARGUMENTS` for the `--swarm` flag:
21+
BEFORE taking any other action, check `$ARGUMENTS` for the `--no-swarm` flag:
2222

23-
1. If `--swarm` IS present: remove it from the arguments (the remaining text is the research topic), then skip directly to **Swarm Workflow**. Do NOT execute any Standard Workflow steps.
24-
2. If `--swarm` is NOT present: the full `$ARGUMENTS` is the research topic, skip directly to **Standard Workflow**. Do NOT execute any Swarm Workflow steps.
23+
1. If `--no-swarm` IS present: remove it from the arguments (the remaining text is the research topic), then skip directly to **Standard Workflow**. Do NOT execute any Swarm Workflow steps.
24+
2. If `--no-swarm` is NOT present: the full `$ARGUMENTS` is the research topic, skip directly to **Swarm Workflow**. Do NOT execute any Standard Workflow steps.
2525

2626
If no research topic remains after processing, ask the user for a research question before proceeding.
2727

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sdlc-plugin",
3-
"version": "1.21.0",
3+
"version": "1.22.0",
44
"description": "Comprehensive SDLC plugin with specialized agents, commands, and integrations",
55
"private": true,
66
"type": "module",

0 commit comments

Comments
 (0)