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

ANE Optimization Through Phone-Steered AI Experiments Shows Kernel Fusion Benefits
A developer ran 55 experiments on Apple Neural Engine optimization, steering the process from their phone using Claude for brainstorming. Key improvements included fusing 3 ANE kernels into 1 mega-kernel, reducing validation loss from 3.75 to 2.49 and step time from 176ms to 96ms.
LTM: A JSON Protocol for Portable Agent Memory Across Models and Machines
LTM is a JSON protocol (Core Memory Packet) plus CLI/server for persisting agent context—dead ends, constraints, next steps—across models, editors, and machines. Packets are 2-5 KB, redact secrets, and support MCP.

Parallel Coding Agents with tmux and Markdown Specs
Manuel Schipper describes a system for running 4-8 parallel coding agents using tmux, Markdown files, bash aliases, and six slash commands. The setup uses Feature Design (FD) Markdown specs tracked through an 8-stage lifecycle.

TeamOut AI Agent for Company Retreat Planning
TeamOut has launched an AI agent that plans company events through conversation, handling venue sourcing, vendor coordination, flight cost estimation, itinerary building, and project management. The system uses multiple LLMs and specialized tools to manage planning as a stateful coordination problem.