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

Claude Code Limiter: Self-Hosted Rate Limiter for Shared Claude Code Subscriptions
claude-code-limiter is a self-hostable tool that adds per-user rate limits to shared Claude Code subscriptions, featuring per-model quotas, credit budgets, sliding 24h windows, time-of-day rules, and a real-time dashboard.

Slack Message Formatter: Fix Claude's Broken Markdown in Slack
A developer built a skill that converts Claude-generated Markdown to proper Slack formatting, solving issues where bold text shows as asterisks, links appear raw, and tables break. The tool offers both browser preview with rich HTML copy-paste and API webhook support.

iai-mcp: Local daemon gives Claude persistent memory across sessions with 99% recall
iai-mcp is an open-source local daemon that captures every Claude conversation, organizes it into three memory tiers, and feeds context back on new sessions. Achieves >99% verbatim recall, retrieval under 100ms, and session-start cost under 3,000 tokens.

ClawProxy: Self-Hosted AI Routing Proxy with Dashboard
ClawProxy is an open-source, self-hosted proxy that centralizes management of multiple AI API keys and models. It provides a unified endpoint, smart key rotation, provider fallback, and real-time logging via a React dashboard.