Help us improve
Share bugs, ideas, or general feedback.
From atuin
Searches and retrieves bash command history using Atuin. Returns matching or recent commands with timestamps and exit codes. Useful for recalling past executions like deployments or git commands.
npx claudepluginhub nathanvale/side-quest-marketplace-old --plugin atuinHow this skill is triggered — by the user, by Claude, or both
Slash command
/atuin:bash-historyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Access bash command history through Atuin to search for and retrieve previously executed commands.
Searches past Claude Code sessions semantically to recall commands, solutions, and context from prior conversations.
Recalls past Claude Code sessions using qrec CLI via Bash. Useful for queries about prior conversations, implementations, decisions, 'last time we...', or previous work.
Searches prior sessions for similar work and synthesizes a task playbook. Useful when starting a task and wanting precedent.
Share bugs, ideas, or general feedback.
Access bash command history through Atuin to search for and retrieve previously executed commands.
Search for commands matching a query.
Parameters:
query (string): Search term to find matching commandslimit (number, default: 10): Maximum results to returninclude_failed (boolean, default: false): Include failed commandsGet the most recent commands.
Parameters:
limit (number, default: 10): Number of recent commandsinclude_failed (boolean, default: false): Include failed commandsWhen user asks: "How did I deploy last time?"
Use mcp__bash-history__search_history with query "deploy"
When user asks: "What commands did I run recently?"
Use mcp__bash-history__get_recent_history with limit 20
When user asks: "Show me failed git commands"
Use mcp__bash-history__search_history with query "git" and include_failed true
Results include command text, exit code (0 = success), and timestamp. Present clearly and offer to help reuse commands.