Claude Helpers
Description
Interactive CLI tools for managing Claude Code sessions.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Claude Helpers
Interactive CLI tools for managing Claude Code sessions.
Project Overview
This is a Bun-based CLI tool that provides:
- Semantic search across Claude session history using semtools
- Session management - browse, resume, and explore past conversations
- Agent launcher - quick access to predefined Claude agents (reviewer, debugger, etc.)
Architecture
src/
├── types.ts # TypeScript interfaces
├── sessions.ts # Session loading and parsing from ~/.claude/projects/
├── search.ts # Semantic search using semtools
├── agents.ts # Predefined agent definitions
└── ui.ts # Terminal UI formatting (chalk, etc.)
index.ts # Main CLI entry point
Key Files
~/.claude/projects/- Where Claude stores session JSONL files- Sessions are stored as
{project-path}/{session-id}.jsonl - Each line is a JSON object with type, message, timestamp, etc.
Commands
ch # Interactive menu
ch search # Semantic search (requires semtools)
ch sessions # List recent sessions
ch resume [id|query] # Resume a session
ch agent # Launch with agent
ch agents # List available agents
Development
bun run dev # Run the CLI
bun test # Run tests
Dependencies
@inquirer/prompts- Interactive promptschalk- Terminal colorsora- Spinnersglob- File pattern matchingsemtools- For semantic search (external:npm i -g @llamaindex/semtools)
Bun Guidelines
Default to using Bun instead of Node.js.
- Use
buninstead ofnodeorts-node - Use
bun testinstead ofjestorvitest - Use
bun installinstead ofnpm install - Bun automatically loads .env, so don't use dotenv.
- Prefer
Bun.fileovernode:fs's readFile/writeFile - Use
Bun.$\ls`` instead of execa - Always recompile the bin after making code changes.
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development