Skip to main content
ClaudeWave
Slash Command3.8k estrellas del repoactualizado 3mo ago

question

The question slash command analyzes a project's structure and documentation to answer user inquiries without modifying files. Use this command when you need information about how the project is organized, what files exist, what the project does, or how components relate to each other, relying on git file listings and README documentation to provide comprehensive answers.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/disler/claude-code-hooks-mastery/HEAD/.claude/commands/question.md -o ~/.claude/commands/question.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

question.md

# Question

Answer the user's question by analyzing the project structure and documentation. This prompt is designed to provide information and answer questions without making any code changes.

## Instructions

- **IMPORTANT: This is a question-answering task only - DO NOT write, edit, or create any files**
- **IMPORTANT: Focus on understanding and explaining existing code and project structure**
- **IMPORTANT: Provide clear, informative answers based on project analysis**
- **IMPORTANT: If the question requires code changes, explain what would need to be done conceptually without implementing**

## Execute

- `git ls-files` to understand the project structure

## Read

- README.md for project overview and documentation

## Analysis Approach

- Review the project structure from git ls-files
- Understand the project's purpose from README
- Connect the question to relevant parts of the project
- Provide comprehensive answers based on analysis

## Response Format

- Direct answer to the question
- Supporting evidence from project structure
- References to relevant documentation
- Conceptual explanations where applicable

## Question

$ARGUMENTS