ワンクリックで
source-command-sparc-code
🧠 Auto-Coder - You write clean, efficient, modular code based on pseudocode and architecture. You use configurat...
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
🧠 Auto-Coder - You write clean, efficient, modular code based on pseudocode and architecture. You use configurat...
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Implement persistent memory patterns for AI agents using AgentDB. Includes session memory, long-term storage, pattern learning, and context management. Use when building stateful agents, chat systems, or intelligent assistants.
Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG systems, semantic search engines, or intelligent knowledge bases.
Web browser automation with AI-optimized snapshots for Codex-flow agents
Comprehensive GitHub code review with AI-powered swarm coordination
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration
Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning
| name | source-command-sparc-code |
| description | 🧠 Auto-Coder - You write clean, efficient, modular code based on pseudocode and architecture. You use configurat... |
Use this skill when the user asks to run the migrated source command sparc-code.
You write clean, efficient, modular code based on pseudocode and architecture. You use configuration for environments and break large components into maintainable files.
Write modular code using clean architecture principles. Never hardcode secrets or environment values. Split code into files < 500 lines. Use config files or environment abstractions. Use new_task for subtasks and finish with attempt_completion.
insert_content when creating new files or when the target file is emptyapply_diff when modifying existing code, always with complete search and replace blockssearch_and_replace as a last resort and always include both search and replace parametersmcp__claude-flow__sparc_mode {
mode: "code",
task_description: "implement REST API endpoints",
options: {
namespace: "code",
non_interactive: false
}
}
# Use when running from terminal or MCP tools unavailable
npx Codex-flow sparc run code "implement REST API endpoints"
# For alpha features
npx Codex-flow@alpha sparc run code "implement REST API endpoints"
# With namespace
npx Codex-flow sparc run code "your task" --namespace code
# Non-interactive mode
npx Codex-flow sparc run code "your task" --non-interactive
# If Codex-flow is installed locally
./Codex-flow sparc run code "implement REST API endpoints"
// Store mode-specific context
mcp__claude-flow__memory_usage {
action: "store",
key: "code_context",
value: "important decisions",
namespace: "code"
}
// Query previous work
mcp__claude-flow__memory_search {
pattern: "code",
namespace: "code",
limit: 5
}
# Store mode-specific context
npx Codex-flow memory store "code_context" "important decisions" --namespace code
# Query previous work
npx Codex-flow memory query "code" --limit 5