Claude Code Prompt Improver v0.5.3: Plan Mode Refactor and Subagent-First Research

v0.5.3 of the Claude Code Prompt Improver is out, past 1.4K stars on GitHub. The plugin hooks into UserPromptSubmit to check if a prompt is vague before Claude Code runs it — clear prompts pass through, vague ones trigger a prompt-improver skill that researches the codebase and asks 1–6 questions via AskUserQuestion. The hook adds ~189 tokens per prompt.
Plan Mode Readability (v0.5.3)
A new PreToolUse hook runs on EnterPlanMode. Plans were accumulating revision history — lines like "previously I considered X but rejected it because Y". The hook tells the model to:
- Keep only the problem statement, remove decision history
- On revisions, rewrite the full plan cleanly — do not append or annotate
- One action per step, using file paths as anchors (e.g.,
src/auth.ts:42) - Use short action steps, not long explanations
Subagent-First Research (v0.5.2)
Previously, vague prompts triggered Glob, Grep, WebSearch, and other search tools directly in the main context, burning main-model tokens. Now those tools run through Task/Explore subagents on Haiku, using a separate context window. The main context only handles git commands, single-file reads of user-named files, synthesis, and the final question to the user.
Maintenance (v0.5.0 & v0.5.1)
- Marketplace renamed from
claude-code-marketplacetoseverity1-marketplace - Hook command uses
python3 || pythonfor Windows compatibility CLAUDE.mduses auto-memory format
Install
claude plugin marketplace add severity1/severity1-marketplace
claude plugin install prompt-improver@severity1-marketplace
Repository
github.com/severity1/claude-code-prompt-improver
📖 Read the full source: r/ClaudeAI
👀 See Also

Zot Chrome Operator: Let Your Terminal AI Agent Drive the Browser via Side Panel
A Chrome extension + local bridge that lets zot, a terminal-based coding AI, control browser tabs through a `browser_action` tool. Install in two commands, no zot changes required.

RouteLLM Setup for Cost-Effective AI Task Routing
A Reddit user shares a Docker Compose configuration that combines Ollama's local Qwen3.5:4b model with GitHub Copilot via OpenWire, using RouteLLM to route complex tasks to GPT-4o while handling simpler tasks locally.

ClawHost Open-Source OpenClaw One-Click Deploy Hits 200+ GitHub Stars
ClawHost, an open-source tool for one-click OpenClaw installation with full server access and control, has reached 200+ GitHub stars. The project addresses issues with unstable commercial wrappers by providing a free, self-hostable solution.

Dev-Card: A Claude Code Skill That Generates Developer Identity Cards from Git History
Dev-Card is a Claude Code skill that analyzes git repositories to generate shareable Developer Identity Cards, assigning one of 11 developer archetypes based on commit timing, language breakdown, commit message patterns, and commit size distribution.