Open-source pipeline turns Claude Code workflow into reusable skills

A developer has open-sourced a pipeline that structures Claude Code workflows into reusable skills, based on 9 months of daily use building real features and fixing bugs. The project, called claude-code-pipeline, is available on GitHub.
Pipeline structure and approach
The pipeline adds structured checkpoints to the development process instead of going directly from idea to implementation. These checkpoints mirror what a small dev team would use:
- Functional documentation
- Technical documentation
- Complexity estimation
- Prioritization thinking
- QA reasoning
- Security checks
- Coding rules enforcement
Documentation is read at the beginning of skills and updated at the end to prevent Claude from losing context across iterations.
Two main entry points
The workflow centers around two meta-skills:
/new-feature - Starts from an idea and walks through:
- Scope clarification
- Architecture alignment
- Complexity estimation
- QA preparation
- Security thinking
- Implementation structure
This acts like a mini delivery pipeline before writing code begins.
/bug-fix - Takes a different approach:
- First reproduces the bug
- Then generates tests
- Then fixes it
This ensures fixes don't silently regress later.
Development insights
The developer noted after months of daily Claude Code use that:
- Explicit specs lead to better features
- Explicit QA results in fewer regressions
- Explicit structure produces cleaner diffs
- Explicit docs reduce context drift
The pipeline packages the workflow used in real teams into reusable skills. The project has no framework, no SaaS, and nothing to sell - it's the developer's first open-source project on GitHub.
📖 Read the full source: r/ClaudeAI
👀 See Also

srclight: Fully Local Code Indexing MCP Server with Ollama Embeddings
srclight is an MCP server for deep code indexing that runs 100% locally with no API keys or cloud calls. It uses tree-sitter AST parsing for 11 languages, SQLite FTS5 for keyword search, Ollama for embeddings, and GPU-accelerated cosine similarity via cupy.

Ink: A Deployment Platform Where Claude AI Agents Are the Primary Users
Ink (ml.ink) is a deployment platform designed for AI agents like Claude, featuring one tool call deployment, auto-detection of frameworks, and integrated services including compute, databases, DNS, secrets, domains, metrics, and logs.

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.

Open Source Dashboard Reveals Actual Claude Code Compute Costs
A developer reverse-engineered Claude Code's rate limit formula to build a local dashboard that shows real-time usage percentage, actual dollar costs, burn rate, peak hours, and which skills/hooks are firing. The tool revealed a $100/month plan consumed $13,286 in equivalent API compute in one month.