-
Notifications
You must be signed in to change notification settings - Fork 564
[EXPERIMENTAL] feat(commands): add /slfg and /swarm-status swarm commands #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kieranklaassen
wants to merge
12
commits into
main
Choose a base branch
from
feat/slfg-swarm-command
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add new /slfg command that uses TeammateTool to spawn specialized agents (Planner, Researcher, Worker, Reviewer, Tester, Resolver, Video) that work in parallel on different phases of the development lifecycle. Key features: - Parallel execution: planning + research run simultaneously - Shared task list with dependencies for coordination - Team lead orchestrates and approves plans before implementation - Review + testing run in parallel after implementation - Full autonomous workflow from feature description to PR with video This provides maximum parallelism compared to the sequential /lfg command. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add new /swarm-status command that displays: - Active teams from ~/.claude/teams/ - Teammates with running/stopped status - Task progress with completion percentage Simplified after code review to focus on essential information. Built using the /slfg swarm workflow with parallel agents. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Update marketplace.json version and command count - Update HTML docs with new commands (/slfg, /swarm-status) - Add swarm-status plan document Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Warp <agent@warp.dev>
- Reduce from ~500 lines to ~290 lines with clearer structure - Split single reviewer into 4 parallel specialized reviewers - Add Parallel Group column to task table for clarity - Phase C now runs 5 agents simultaneously (4 reviewers + tester) - Add agent-to-agent communication (researcher → planner, video → lead) - Include team lead orchestration loop at the end - List all 10 agents explicitly in cleanup section Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add new command to scaffold complete Rails 8 applications with: - DHH/37signals conventions - Custom passwordless magic link auth (~150 lines) - Solid stack (Queue, Cache, Cable) - no Redis - Minitest with fixtures (no RSpec/factory_bot) - Tailwind styling and CSP configured Bumps version to 3.1.0 (27 commands). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Remove files that were accidentally included: - .opencode/ - experimental opencode converter output - output_test/ - test output directory - opencode.json - opencode config Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7156f32 to
b3fe72e
Compare
…tion Add comprehensive skill for mastering Claude Code's TeammateTool and Task system: - Core primitives: Teams, Teammates, Tasks, Inboxes, Messages - Built-in agent types: Bash, Explore, Plan, general-purpose - TeammateTool operations: spawnTeam, write, broadcast, shutdown, cleanup - Task system integration with dependencies and auto-unblocking - Orchestration patterns: Parallel Specialists, Pipeline, Swarm - Spawn backends: in-process, tmux, iterm2 - Complete workflows and best practices Also removes build-website command (will be on separate branch). Bumps version to 3.1.0 (28 agents, 26 commands, 16 skills). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
marketplace.json belongs at root level only, not inside plugin directories. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Remove specs and solutions docs that aren't related to swarm feature. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Keep PR focused on swarm feature only. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is experimental and should not be merged until the swarm functionality is fully tested and validated.
Summary
Adds two new swarm-related commands:
1.
/slfg- Swarm LFG (v2.29.0)Swarm-based autonomous engineering workflow using TeammateTool. Spawns parallel agents:
2.
/swarm-status- Swarm Status (v2.30.0)Display status of active swarm teams:
Architecture
Testing
Changes
commands/slfg.mdcommands/swarm-status.mdplugin.jsonCHANGELOG.mdREADME.mdmarketplace.jsonCo-Authored-By: Claude Opus 4.5 noreply@anthropic.com