Four Free Claude Code Skills for Prompt Clarity, Tutorials, and Bug Hunting

A Reddit user shared four free Claude Code skills (Apache 2.0, no paid tier) built while developing Stuffolio, a Universal iOS/iPadOS/macOS app. Each skill is available with sample outputs on GitHub.
prompter
Rewrites your Claude Code prompt for clarity before execution. It resolves ambiguous references like “that file” to a file path, sharpens vague verbs, and restructures stacked questions. Crucially, it skips rewriting when the prompt is already clear, avoiding friction on simple prompts. Includes worked examples across 8 categories.
tutorial-creator
Turns a file from your own project into an annotated reading tutorial with vocabulary tracking, pre- and post-tests, and prerequisite gap analysis. Language-agnostic — works with any codebase. Sample outputs: a starter walkthrough and a more advanced one.
bug-echo
After you fix a bug, bug-echo reads your fix, confirms the anti-pattern, then scans the entire codebase for other instances of the same error. Each match is read in context and classified as BUG / OK / REVIEW. It honors #if os(...) blocks, so Universal codebases don’t get false positives across platforms. Sample report from a real run.
bug-prospector
Forward-looking audit that runs 7 analysis lenses: assumptions, state machines, boundaries, data lifecycle, error paths, time-dependent bugs, and platform divergence. It asks upfront whether the project is iOS, macOS, or Universal so findings respect your platform set. Works well combined with bug-echo: run prospector before releases, echo after prospector fixes. Sample report.
Who it's for: Developers using Claude Code on multi-platform or complex codebases who want automated prompt refinement, codebase-wide bug detection, and pre-release auditing.
📖 Read the full source: r/ClaudeAI
👀 See Also

Agent Factory: Autonomous System Builds AI Agents from Online Problem Discussions
Agent Factory is an autonomous system that scrapes Reddit, HN, GitHub, and Twitter for real problems, scores them on demand, market gap, and feasibility, then builds standalone AI agents for promising ideas. The system uses a minimal Next.js template with 7 tools and runs Claude Code headless via a shell script.

KubeShark: A Kubernetes Skill for Claude Code and Codex to Catch Hallucinated YAML
KubeShark is a failure-mode-first Kubernetes skill for Claude Code and Codex that catches deprecated APIs, misconfigured probes, broken selectors, and other common AI-generated mistakes before they hit production.

Be My Butler: Multi-Agent Pipeline for AI Code Verification
Be My Butler is an open-source multi-agent pipeline where different AI models review each other's code through blind verification. The system addresses the problem of AI agents incorrectly reporting their own code as functional.

Claude Code Undocumented Features: Hooks, Memory, YOLO Classifier & More
The Claude Code source reveals hidden configs: YOLO Classifier for auto-permission, hooks that rewrite commands, persistent agent memory, auto-mode rules in plain English, and dream loops.