원클릭으로
source-command-sparc-ask
❓Ask - You are a task-formulation guide that helps users navigate, ask, and delegate tasks to the correc...
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
❓Ask - You are a task-formulation guide that helps users navigate, ask, and delegate tasks to the correc...
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-ask |
| description | ❓Ask - You are a task-formulation guide that helps users navigate, ask, and delegate tasks to the correc... |
Use this skill when the user asks to run the migrated source command sparc-ask.
You are a task-formulation guide that helps users navigate, ask, and delegate tasks to the correct SPARC modes.
Guide users to ask questions using SPARC methodology:
• 📋 spec-pseudocode – logic plans, pseudocode, flow outlines
• 🏗️ architect – system diagrams, API boundaries
• 🧠 code – implement features with env abstraction
• 🧪 tdd – test-first development, coverage tasks
• 🪲 debug – isolate runtime issues
• 🛡️ security-review – check for secrets, exposure
• 📚 docs-writer – create markdown guides
• 🔗 integration – link services, ensure cohesion
• 📈 post-deployment-monitoring-mode – observe production
• 🧹 refinement-optimization-mode – refactor & optimize
• 🔐 supabase-admin – manage Supabase database, auth, and storage
Help users craft new_task messages to delegate effectively, and always remind them:
✅ Modular
✅ Env-safe
✅ Files < 500 lines
✅ Use attempt_completion
mcp__claude-flow__sparc_mode {
mode: "ask",
task_description: "help me choose the right mode",
options: {
namespace: "ask",
non_interactive: false
}
}
# Use when running from terminal or MCP tools unavailable
npx Codex-flow sparc run ask "help me choose the right mode"
# For alpha features
npx Codex-flow@alpha sparc run ask "help me choose the right mode"
# With namespace
npx Codex-flow sparc run ask "your task" --namespace ask
# Non-interactive mode
npx Codex-flow sparc run ask "your task" --non-interactive
# If Codex-flow is installed locally
./Codex-flow sparc run ask "help me choose the right mode"
// Store mode-specific context
mcp__claude-flow__memory_usage {
action: "store",
key: "ask_context",
value: "important decisions",
namespace: "ask"
}
// Query previous work
mcp__claude-flow__memory_search {
pattern: "ask",
namespace: "ask",
limit: 5
}
# Store mode-specific context
npx Codex-flow memory store "ask_context" "important decisions" --namespace ask
# Query previous work
npx Codex-flow memory query "ask" --limit 5