Back to articles
Sub Agent that executes Claude AI CLI requirements in a work-pipeline
How-ToTools

Sub Agent that executes Claude AI CLI requirements in a work-pipeline

via Dev.toUC Jung

TL;DR I built uctm (Universal Claude Task Manager) — an npm package that installs 6 specialized subagents into Claude Code. You type one request, and it automatically plans the work, builds the code, verifies it, and commits — all through structured XML messaging. npm install -g uctm cd your-project && uctm init claude # Type: [new-feature] Add user authentication with JWT # → Pipeline runs automatically GitHub: UCJung/uc-taskmanager-claude-agent npm: uctm The Problem Claude Code is powerful, but when you ask it to build something complex, it tries to do everything in one shot. For simple tasks, that works fine. But for anything with multiple files, dependencies between components, or the need for proper testing — things get messy. I wanted a system where: Complex tasks get broken down into manageable pieces Each piece gets built, tested, and committed individually Context doesn't explode as tasks pile up The whole thing runs with zero external dependencies The Architecture: 6 Agents,

Continue reading on Dev.to

Opens in a new tab

Read Full Article
2 views

Related Articles