Open-Sourced Claude Code Skills: A /do Pipeline That Cut Follow-Ups by 80%

A developer who has been using Claude Code in production for several months just open-sourced 15 custom skills on GitHub. The project, my-claude-skills, evolved from getting “Claude writes code that works” to “Claude generates tickets that don’t require three follow-up requests for clarification.”
The /do Command Pipeline
The main entry point is the /do command. It executes a 5-step pipeline:
/todo → /dev → /verify-dev → /build → /test → pushEach step has its own feedback loop, limited to 3 cycles per phase. If /verify-dev detects a logical flaw, it automatically creates -fix-N tickets, sends them back to /dev, then verifies again. The same process handles compilation errors and failed functional tests. The result is either a green report or a clear failure status — never a half-failed push.
Measured Results
Based on over 2,000 commits from production tickets, the developer reports:
- 80% fewer follow-up requests compared to base Claude Code
- 60-65% better quality — common issues like “Claude forgot to handle X” or “this breaks the authentication flow” dropped significantly
- Review cycles cut in half
The developer emphasizes these aren’t bogus stats — they’re facts from real usage across 100+ freelance projects.
Who It’s For
Developers using Claude Code for production work who want to reduce ticket ping-pong and enforce quality gates before push.
📖 Read the full source: r/ClaudeAI
👀 See Also

ClamBot: AI Agent Runs LLM-Generated Code in WASM Sandbox for Security
ClamBot is an AI agent framework that executes all LLM-generated code in a WebAssembly sandbox using QuickJS in Wasmtime, eliminating the need for exec() or subprocess calls. It includes an approval gate for tool calls, persistent script caching as 'clams', and supports multiple LLM providers.

Open Source Rust MCP Server Gives Claude Full Email Management Capabilities
A developer built a Rust-based MCP server that provides Claude with 25 tools for comprehensive email management including IMAP search, SMTP sending, Microsoft Graph API support, and multi-account handling with OAuth2 authentication.

Solitaire: Open-Source Identity Layer for AI Agents Built with Claude Code
Solitaire is an open-source identity layer for AI agents that evolves through interaction rather than static configuration. It's been tested across 600+ production sessions and stores all data locally using SQLite + JSONL with no cloud dependencies.

Show HN: WUPHF — Karpathy-Style LLM Wiki with Markdown + Git as Source of Truth
WUPHF ships a wiki layer for AI agents using Markdown + Git for persistence, bleve (BM25) + SQLite for retrieval, with entity fact logs, wikilinks, and a daily lint cron. Runs locally with no vector DB dependency yet.