| name | ask |
| version | 1.0.0 |
| description | [Utilities] Use when you need to answer technical and architectural questions. |
Quick Summary
Goal: Answer technical and architectural questions with evidence-based analysis.
Workflow:
- Understand -- Parse the question and identify scope
- Research -- Search codebase for evidence and examples
- Answer -- Provide concise, evidence-backed answer
Key Rules:
- Every claim must be backed by code evidence (
file:line)
- Keep answers concise and actionable
- Reference existing patterns over theoretical solutions
Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).
Context
Technical question or architecture challenge:
$ARGUMENTS
Current development workflows, system constraints, scale requirements, and business context will be considered:
- Primary workflow:
./.claude/workflows/primary-workflow.md
- Development rules:
./.claude/docs/development-rules.md
- Orchestration protocols:
./.claude/workflows/orchestration-protocol.md
- Documentation management:
./.claude/workflows/documentation-management.md
Project Documentation:
./docs
├── project-reference/ # reference docs (patterns, specs system, conventions)
│ ├── project-structure-reference.md
│ ├── backend-patterns-reference.md
│ ├── frontend-patterns-reference.md
│ ├── code-review-rules.md
│ ├── integration-test-reference.md
│ ├── e2e-test-reference.md
│ ├── scss-styling-guide.md
│ └── feature-spec-reference.md
├── adr/ # architecture decision records
├── specs/ # feature specs + test cases
├── release/
└── templates/