adr
Write an Architecture Decision Record documenting a significant technical decision.
Trace the execution path of a request or operation through the codebase.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/traceContext preview
What this command does when you run it.
Trace the execution path of a request or operation through the codebase.
Trace the execution path of a request or operation through the codebase.
1. Identify the starting point: HTTP request handler, event listener, CLI command, or function call. 2. Follow the execution path step by step:
3. For each step in the trace, document:
4. Identify potential failure points:
5. Generate a sequence diagram of the execution flow. 6. Highlight any performance bottlenecks (blocking I/O, N+1 queries).
Trace: <operation name>
1. [entry.ts:handleRequest] <- HTTP POST /api/users
2. [middleware/auth.ts:verify] <- checks JWT token
3. [services/user.ts:create] <- validates input, calls DB
4. [db/queries.ts:insert] <- INSERT INTO users ...
5. [services/user.ts:create] -> returns { id, email }
6. [entry.ts:handleRequest] -> 201 Created
Side effects: 1 DB write, 1 email sent
Potential issues: No transaction wrapping steps 4-5The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.