Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:00:12 +08:00
commit 946e3c351f
5 changed files with 141 additions and 0 deletions

27
commands/ask.md Normal file
View File

@@ -0,0 +1,27 @@
---
description: Look up a symbol and ask Claude a specific question about it
argument-hint: <symbol-name> "<question>"
---
## Context
Symbol to analyze: **$1**
User's question: **$2**
## Your task
Use the Bash tool to fetch symbol information, then answer the user's question.
**Workflow:**
1. Execute: `node .claude/scripts/context-provider.js symbol $1`
2. Analyze the symbol details returned
3. Answer the question: "$2"
When answering:
- Reference actual code locations (file:line)
- Explain relationships (calls, called_by, implements, defines)
- Use the signature and documentation from the symbol
- Be specific about how the symbol is used in the codebase
Focus on what the code actually shows, not general programming principles.