From ctx
Audits recent session transcripts to identify vague user prompts causing clarification cycles. Helps improve prompting quality and reduce back-and-forth periodically.
npx claudepluginhub activememory/ctx --plugin ctxThis skill uses the workspace's default tool permissions.
Analyze recent session transcripts to identify prompts that led to
Reviews conversation history for corrections, traces errors to skills, CLAUDE.md, memory or tools, and proposes process fixes. Invoke after corrections or at session end.
Analyzes Claude Code JSONL transcripts to detect anti-patterns, tool misuse, user frustration signals, and workflow patterns using DuckDB SQL, 10 dimensions, and PM4Py mining.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Share bugs, ideas, or general feedback.
Analyze recent session transcripts to identify prompts that led to unnecessary clarification back-and-forth.
/ctx-prompt-audit
/ctx-prompt-audit --sessions 10
/ctx-prompt-audit 2026-01-24
Session transcripts are stored in the journal:
| Source | Format |
|---|---|
| Journal directory | Exported session journals (richer) |
Journal entries contain full turn-by-turn conversation and are the best source for pattern detection.
Look for prompts where the agent asked clarifying questions instead of acting:
Not every short prompt is vague. Consider context:
## Prompt Audit Report
**Sessions analyzed**: 5
**User prompts reviewed**: 47
**Vague prompts found**: 4 (8.5%)
---
### Example 1: Missing File Context
**Your prompt**: "fix the bug"
**What happened**: I had to ask which file and what error.
**Better prompt**: "fix the authentication error in
src/auth/login.ts where JWT validation fails with 401"
---
## Patterns to Watch
Based on your sessions, you tend to:
1. Skip mentioning file paths (3 occurrences)
2. Use "it" without establishing what "it" refers to
(2 occurrences)
## What You Do Well
- You provide error output when debugging (4 of 5 sessions)
- You reference specific files by path in most prompts
## Tips
- Start prompts with the **file path** when discussing
specific code
- Include **error messages** when debugging
- Specify **success criteria** for optimization tasks
Before presenting the report, verify: