Agent skill
executing-tasks-with-shannon-do
Use when creating files, implementing features, or executing development tasks - guides shannon do command usage, dashboard integration, caching behavior, when to use vs shannon exec or shannon analyze
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/executing-tasks-with-shannon-do-krzemienski-shannon-cli
SKILL.md
Executing Tasks with shannon do
Overview
shannon do executes development tasks by invoking Shannon Framework exec skill, wrapped with V3 intelligence (cache, analytics, cost optimization).
When to Use
Use shannon do for:
- Creating files: "create hello.py"
- Implementing features: "add authentication to API"
- Fixing bugs: "fix login validation error"
- Multi-file tasks: "create models.py, views.py, tests.py"
Don't use for:
- Analyzing specs → shannon analyze
- Autonomous with git automation → shannon exec
- Wave orchestration → shannon wave
Basic Usage
# Simple task
shannon do "create calculator.py with add and multiply"
# Complex application
shannon do "create Flask API with user auth, posts CRUD, SQLite database"
# With real-time dashboard
shannon do "create app" --dashboard
Dashboard Mode
Start services once:
# Terminal 1: WebSocket server
python -m shannon.server.app
# Terminal 2: Dashboard UI
cd dashboard && npm run dev
Then use --dashboard:
shannon do "create authentication system" --dashboard
# Open browser: http://localhost:5173
Shows real-time: task progress, files created, validation status, agents.
vs Other Commands
| Need | Use |
|---|---|
| Create code | shannon do |
| Analyze spec | shannon analyze |
| With git commits | shannon exec |
| Multi-agent waves | shannon wave |
Caching
Automatic via UnifiedOrchestrator:
- First run: Full execution
- Check cache: shannon cache stats
- Clear: shannon cache clear
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?