Skip to content

๐Ÿš€ SPTFlo Plugin - Quickstart Guide โ€‹

Get started with SPTFlo in 5 minutes!


๐Ÿ“ฆ Installation โ€‹

In Claude Code:

/plugin add spt/sptflo
/restart

Local Installation โ€‹

bash
# Clone the repository
git clone https://github.com/smartpointstech/sptflo.git
cd sptflo

Then in Claude Code:

/plugin add .
/restart

โœ… Verify Installation โ€‹

In Claude Code:

/plugin list

Look for sptflo in the active plugins.

Try a command:

/coordination-swarm-init

Or type / to see all 150+ commands.


๐ŸŽฏ Your First Swarm โ€‹

1. Initialize a Swarm โ€‹

In Claude Code, run:

/coordination-swarm-init

This creates a hierarchical swarm with:

  • Automatic agent spawning
  • Cross-session memory
  • Performance optimization

2. Spawn Specialized Agents โ€‹

/coordination-agent-spawn

Choose from 74+ agents:

  • coder - Code implementation
  • tester - Test creation
  • reviewer - Code review
  • planner - Project planning
  • And 70 more!

3. Orchestrate a Task โ€‹

/coordination-task-orchestrate "Build a REST API with authentication"

The swarm automatically:

  1. Analyzes requirements
  2. Spawns appropriate agents
  3. Coordinates parallel execution
  4. Monitors progress
  5. Reports results

๐Ÿ’ป Common Workflows โ€‹

Full-Stack Development โ€‹

bash
# Initialize development swarm
/swarm-development

# Spawns: backend-dev, coder, tester, reviewer
# Orchestrates: design โ†’ implement โ†’ test โ†’ review

SMART TDD Workflow โ€‹

bash
# Specification phase
/smart-modes specification "Shopping cart system"

# Architecture design
/smart-architect

# TDD implementation
/smart-tdd

# Review and optimize
/smart-reviewer
/smart-optimizer

GitHub Automation โ€‹

bash
# Analyze repository
/github-repo-analyze

# Multi-agent PR review
/github-code-review-swarm

# Automated PR management
/github-pr-manager

# Release coordination
/github-release-manager

๐Ÿงช Try These Commands โ€‹

Monitoring โ€‹

bash
/monitoring-status          # System overview
/monitoring-swarm-monitor   # Real-time swarm view
/monitoring-agent-metrics   # Performance metrics

Analysis โ€‹

bash
/analysis-performance-report     # Performance analysis
/analysis-bottleneck-detect      # Find bottlenecks
/analysis-token-usage            # Token consumption

Optimization โ€‹

bash
/optimization-auto-topology      # Auto-select topology
/optimization-parallel-execution # Parallel task execution
/optimization-cache-manage       # Cache management

๐ŸŽจ Agent Showcase โ€‹

Core Development Agents โ€‹

/coordination-agent-spawn coder
/coordination-agent-spawn tester
/coordination-agent-spawn reviewer

GitHub Automation Agents โ€‹

/coordination-agent-spawn pr-manager
/coordination-agent-spawn code-review-swarm
/coordination-agent-spawn release-manager

Swarm Coordination Agents โ€‹

/coordination-agent-spawn hierarchical-coordinator
/coordination-agent-spawn mesh-coordinator
/coordination-agent-spawn adaptive-coordinator

๐Ÿ”ง MCP Configuration โ€‹

Add MCP Servers โ€‹

bash
# Core MCP (required)
claude mcp add sptflo npx sptflo@alpha mcp start

# Enhanced coordination (optional)
claude mcp add spt-swarm npx spt-swarm mcp start

# Cloud features (optional - requires auth)
claude mcp add flow-nexus npx flow-nexus@latest mcp start

Test MCP Integration โ€‹

In Claude Code:

List available MCP tools for sptflo

Expected: 40+ tools including:

  • swarm_init
  • agent_spawn
  • task_orchestrate
  • memory_usage
  • neural_train
  • And more!

๐Ÿ“š Example: Build a Todo App โ€‹

Step 1: Initialize โ€‹

/coordination-swarm-init

Step 2: Specify Requirements โ€‹

/smart-modes specification "Todo app with React frontend and Express backend"

Step 3: Design Architecture โ€‹

/smart-architect

Step 4: TDD Implementation โ€‹

/smart-tdd

Step 5: Monitor Progress โ€‹

/monitoring-swarm-monitor

Step 6: Review & Optimize โ€‹

/smart-reviewer
/smart-optimizer

Step 7: Performance Report โ€‹

/analysis-performance-report

๐Ÿ› Troubleshooting โ€‹

Commands Not Found โ€‹

bash
# Verify installation
bash scripts/verify.sh

# Check commands directory
ls ~/.claude/commands/

# Restart Claude Code

MCP Not Working โ€‹

bash
# Check settings
cat ~/.claude/settings.json

# Verify MCP package
npx sptflo@alpha --version

# Reinstall if needed
npm install -g @smartpointstech/sptflo@alpha

Agents Not Spawning โ€‹

bash
# Check agents directory
ls ~/.claude/agents/

# Verify permissions
chmod -R 755 ~/.claude/agents/

# Restart Claude Code

๐ŸŽ“ Next Steps โ€‹

  1. Explore Commands: Browse ~/.claude/commands/ for all 150+ commands
  2. Try Agents: Experiment with different specialized agents
  3. Read User Guide: docs/USER_GUIDE.md for detailed documentation
  4. Check Examples: docs/EXAMPLES.md for real-world usage
  5. Join Community: GitHub Discussions for help and sharing

๐Ÿ“– Quick Reference โ€‹

Most Used Commands โ€‹

CommandPurpose
/coordination-swarm-initInitialize swarm
/coordination-agent-spawnSpawn agents
/coordination-task-orchestrateOrchestrate tasks
/smart-tddTDD workflow
/github-pr-managerPR management
/monitoring-statusSystem status
/analysis-performance-reportPerformance

Most Used Agents โ€‹

AgentPurpose
coderCode implementation
testerTest creation
reviewerCode review
plannerProject planning
backend-devBackend development
pr-managerPR automation

๐Ÿš€ You're Ready! โ€‹

Start building with SPTFlo's enterprise AI agent orchestration.

Happy coding! ๐ŸŽ‰

Released under the MIT License.