Skip to main content
ClaudeWave
Slash Command502 repo starsupdated 4mo ago

ask

The `/mind:ask` command queries a memory system to retrieve context-aware answers about past work, technical decisions, and solutions. Use this command when you need to recall specific project decisions, troubleshooting approaches, or implementation details that were previously documented in the memory system, such as technology choices or bug fixes.

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/memvid/claude-brain/HEAD/commands/ask.md -o ~/.claude/commands/ask.md
Then start a new Claude Code session; the slash command loads automatically.

ask.md

# Memory Question

Ask Claude's memory system questions about past work, decisions, and context.

**Usage**: `/mind:ask <question>`

Execute the ask script with user's question:

```bash
node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/ask.js" "$ARGUMENTS"
```

## Examples
- `/mind:ask Why did we choose React?` - Get context about technology decisions
- `/mind:ask What was the CORS solution?` - Recall specific solutions
- `/mind:ask How did we fix the authentication bug?` - Get details about past fixes

## Response Format
- Provide context-aware answers based on stored memories
- Reference specific memories when applicable
- Include timestamps for referenced information