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

Query Your Jira Sprint Via Claude MCP: Instant Status, Unassigned Issues, and Blocked Items
A Reddit user connected Jira to Claude via MCP, then asked plain‑language questions about their sprint and got instant clean tables — no clicking through boards.

Zora: Offline-First AI Agent with Default-Deny Security and Local Memory
Zora is an AI agent that runs fully offline via Ollama by default, starts with zero access permissions, and maintains persistent memory across sessions. It addresses security and cost issues seen in other agents.

A System for Claude Code to Learn Your Project Over Time
A developer created a simple setup to help Claude Code retain context between sessions by adding a CLAUDE.md file, a docs folder with project conventions, and three prompts for bootstrapping, refining, and capturing patterns.

cc-session-utils: TUI Dashboard for Managing Claude Code Sessions and Costs
A developer built cc-session-utils, a terminal UI tool for managing Claude Code session files, tracking costs by model, cleaning orphaned sessions, and migrating data between projects. It requires Python 3.11+ and is built with Textual.