docs / tools
Supported Tools
PromptConduit works with AI coding assistants in two ways: real-time event capture via hooks (Claude Code, Cursor, Gemini CLI) and transcript analysis for local skill generation (Claude Code, Codex CLI, Copilot CLI). Attachments in prompts are extracted and uploaded automatically.
Real-Time Hooks
These tools support real-time event capture via hooks. Requires a
platform account. Install with promptconduit install <tool>.
| Tool | Install Command | Events Captured |
|---|---|---|
| Claude Code | promptconduit install claude-code | Prompts, Tools, Sessions, Attachments |
| Cursor | promptconduit install cursor | Prompts, Shell, MCP, Files, Attachments |
| Gemini CLI | promptconduit install gemini-cli | Prompts, Tools, Sessions |
Local Skill Generation
These tools are supported for transcript analysis with
promptconduit skills generate --local. No hooks required.
| Tool | Transcript Location |
|---|---|
| Claude Code | ~/.claude/projects/**/*.jsonl |
| OpenAI Codex CLI | ~/.codex/**/*.jsonl |
| GitHub Copilot CLI | ~/.copilot/session-state/**/*.jsonl |
Attachment Support
The CLI automatically extracts attachments from prompts and uploads them alongside event metadata.
| Type | Formats |
|---|---|
| Images | JPEG, PNG, GIF, WebP, SVG, BMP, TIFF, HEIC |
| Documents | PDF, Word (.doc/.docx), Excel (.xls/.xlsx), PowerPoint (.ppt/.pptx) |
| Text | Plain text, CSV, HTML, Markdown, JSON, XML |
Adding a New Tool
The CLI is open source. If you're working in the repo with Claude Code,
run /add-tool <name> for a step-by-step guide. See
CONTRIBUTING.md
for details.