gt:claude-history
Find or reference a past Claude Code conversation — fixes, decisions, or discussions from earlier sessions ("you helped me fix", "we debugged", "I remember asking"). Locate sessions by topic, file, or date. Not for codebase/git/Slack history.
What this skill does
# Claude History Search Search through Claude Code conversation history to find past interactions. ## Quick Reference ```bash # Basic search tools claude history "keyword" # Search with filters tools claude history "query" --tool Edit --since "7 days ago" # Interactive mode tools claude history -i ``` ## Common Use Cases ### Find by Keywords ```bash tools claude history "backup mcp-manager refactor" tools claude history "authentication bug" --exact ``` ### Find by File Modified ```bash tools claude history --file "config/api.php" tools claude history --file "*.tsx" --tool Edit ``` ### Find by Tool Usage ```bash tools claude history --tool Edit --since "7 days ago" tools claude history --tool Task --limit 50 ``` ### Find by Project ```bash tools claude history "timer" --project GenesisTools tools claude history "migration" --all # Search all projects ``` ### Show Context ```bash tools claude history "timer" --context 10 # 10 messages before/after ``` ## CLI Options | Option | Description | |--------|-------------| | `-i, --interactive` | Interactive mode with autocomplete | | `-p, --project <name>` | Filter by project name | | `--all` | Search all projects | | `-f, --file <pattern>` | Filter by file path pattern | | `-t, --tool <name>` | Filter by tool (Edit, Write, Bash, etc.) | | `--since <date>` | Since date (e.g., "7 days ago", "yesterday") | | `--until <date>` | Until date | | `-l, --limit <n>` | Limit results (default: 20) | | `-c, --context <n>` | Show N messages before/after match | | `--exact` | Exact match instead of fuzzy | | `--regex` | Use regex for query | | `--agents-only` | Only search subagent conversations | | `--exclude-agents` | Exclude subagent conversations | | `--exclude-thinking` | Exclude thinking blocks | | `--reindex` | Rebuild search index (use when index seems stale or after manual edits) | | `--format <type>` | Output: ai (default), json | ## Output Formats **Default (ai):** Perfect markdown with summaries and file paths **With --context:** Shows surrounding messages in markdown **JSON:** Raw JSON for programmatic use ## Summarize Sessions Summarize Claude Code sessions using LLM-powered templates. Extracts key information and produces structured output in 7 modes. ### Quick Start ```bash # Interactive mode — guided session & mode selection tools claude history summarize -i # Summarize a specific session tools claude history summarize <session-id> --mode documentation # Summarize current session (inside Claude Code) tools claude history summarize --current --mode short-memory # Output prompt only (no LLM call) tools claude history summarize <session-id> --prompt-only --mode changelog ``` ### Summarization Modes | Mode | Description | |------|-------------| | `documentation` | Full technical doc: problem, changes, patterns, lessons | | `memorization` | Comprehensive learnings organized by topic tags | | `short-memory` | Concise MEMORY.md-ready bullets (500-2000 chars) | | `changelog` | Added/Changed/Fixed/Removed with file paths | | `debug-postmortem` | Symptoms, investigation, dead ends, root cause, fix | | `onboarding` | "How this works" for new devs: architecture, key files | | `custom` | Your own prompt with session content | ### Summarize Options | Option | Description | |--------|-------------| | `-s, --session <id>` | Session ID (repeatable) | | `--current` | Use current session from `$CLAUDE_CODE_SESSION_ID` | | `--since <date>` | Sessions since date | | `--until <date>` | Sessions until date | | `-m, --mode <name>` | Template mode (default: documentation) | | `--model <name>` | LLM model name | | `--provider <name>` | LLM provider name | | `--prompt-only` | Output the prepared prompt without calling LLM | | `-o, --output <path>` | Write output to file | | `--clipboard` | Copy output to clipboard | | `--thorough` | Chunked summarization for large sessions | | `--max-tokens <n>` | Token budget (default: 128000) | | `--include-tool-results` | Include tool execution results | | `--include-thinking` | Include thinking blocks | | `--priority <type>` | Content priority: balanced, user-first, assistant-first | | `-i, --interactive` | Interactive guided flow | | `--custom-prompt <text>` | Custom prompt (for custom mode) | | `--memory-dir <path>` | Output dir for memorization topic files | ### Examples ```bash # Generate onboarding docs from a session tools claude history summarize abc123 --mode onboarding -o docs/onboarding.md # Extract debug learnings tools claude history summarize abc123 --mode debug-postmortem --clipboard # Memorization with topic files tools claude history summarize abc123 --mode memorization --memory-dir ./memory/ # Large session with chunked processing tools claude history summarize abc123 --mode documentation --thorough # Custom analysis tools claude history summarize abc123 --mode custom --custom-prompt "List all API endpoints discussed" # Use specific model tools claude history summarize abc123 --mode short-memory --provider anthropic --model claude-sonnet-4-5-20250929 ``` ## Dashboard For visual exploration, `tools claude history dashboard` launches a web-based React/Vite interface for browsing and analyzing conversation history.
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.