Agent skill
bash-history
Search and retrieve bash command history using Atuin. Use when users ask about commands they've run before, want to find a specific command, recall how they did something previously, or ask "how did I..." or "what command did I use to..."
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/testing/bash-history-nathanvale-side-quest-marketpla-dfa61c3b
SKILL.md
Bash History Skill
Access bash command history through Atuin to search for and retrieve previously executed commands.
Tools
mcp__bash-history__search_history
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 commands
mcp__bash-history__get_recent_history
Get the most recent commands.
Parameters:
limit(number, default: 10): Number of recent commandsinclude_failed(boolean, default: false): Include failed commands
Example Usage
When 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
Output Format
Results include command text, exit code (0 = success), and timestamp. Present clearly and offer to help reuse commands.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?