Agentic AI Atlasby a5c.ai
OverviewWikiGraphFor AgentsEdgesSearchWorkspace
/
GitHubDocsDiscord
i.2Wiki
Agentic AI Atlas · CC10X Methodology (Library)
library/cc10xa5c.ai
Search the atlas/
Wiki · linked records

Article and nearby pages

I.Current articlepp. 1 - 1
Aerospace Engineering Specialization (Library)AI Agents and Conversational AI Specialization (Library)Algorithms and Optimization Specialization (Library)Arts and Culture Specialization (Library)ATDD/TDD Methodology (Library)AutoMaker (Library)
II.Documented nodesrefs · 1
CC10X · Specialization
I.
Wiki article

library/cc10x

Reading · 3 min

CC10X Methodology (Library) reference

Intelligent workflow orchestration for Claude Code development. CC10X routes all development requests through a single entry point that detects intent and dispatches to specialized workflows with evidence-first validation, TDD enforcement, and persistent session memory.

Page nodewiki/library/cc10x.mdNearby pages · 111Documents · 1

Continue reading

Nearby pages in the same section.

Aerospace Engineering Specialization (Library)AI Agents and Conversational AI Specialization (Library)Algorithms and Optimization Specialization (Library)Arts and Culture Specialization (Library)ATDD/TDD Methodology (Library)AutoMaker (Library)Automotive Engineering Specialization (Library)Backend Development (Library)BDD/Specification by Example (Library)Bioinformatics and Genomics Specialization (Library)Biomedical Engineering Specialization (Library)BMAD Method (Library)Business Analysis and Consulting (Library)Business Strategy and Operations (Library)Business Strategy Specialization (Library)CCPM - Claude Code PM Methodology (Library)Chemical Engineering Specialization (Library)Civil Engineering Specialization (Library)ClaudeKit Methodology (Library)Cleanroom Software Engineering (Library)CLI and MCP Development Specialization (Library)Code Migration and Modernization Specialization (Library)COG Second Brain (Library)Common Utilities (Library)Computer Science Specialization (Library)Cryptography and Blockchain Development Specialization (Library)Customer Experience and Support Specialization (Library)Data Engineering, Analytics, and BI Specialization (Library)Data Science and Machine Learning Specialization (Library)Intelligence, Decision Support and Decision Making (Library)Desktop Product Development Specialization (Library)DevOps, SRE, and Platform Engineering Specialization (Library)Digital Marketing and Content Strategy Specialization (Library)Domain-Driven Design (DDD) Methodology (Library)Double Diamond Methodology (Library)Education and Learning Specialization (Library)Electrical Engineering Specialization (Library)Embedded Systems Engineering Specialization (Library)Entrepreneurship and Startup Processes (Library)Environmental Engineering Specialization (Library)Event Storming (Library)Everything Claude Code Methodology (Library)Example Mapping Methodology (Library)Extreme Programming (XP) (Library)Feature-Driven Development (FDD) (Library)Finance, Accounting, and Economics Specialization (Library)FPGA Programming and Hardware Description Specialization (Library)Game Product Development Specialization (Library)Gas Town Methodology (Library)GPU Programming and Parallel Computing (Library)GSD-Adapted Workflows for Babysitter SDK (Library)Healthcare and Medical Management Specialization (Library)Human Resources and People Operations Specialization (Library)Humanities and Anthropology Specialization (Library)Hypothesis-Driven Development (Library)Impact Mapping Methodology (Library)Industrial Engineering Specialization (Library)Jobs to Be Done (JTBD) Methodology (Library)Kanban (Library)Knowledge Management (Library)Legal and Compliance Specialization (Library)Logistics and Operations Specialization (Library)Maestro App Factory (Library)Marketing and Brand Management Specialization (Library)Materials Science Specialization (Library)Mathematics Specialization (Library)Mechanical Engineering Specialization (Library)Meta Specialization - Process, Skill, and Agent Creation (Library)Metaswarm Methodology (Library)Mobile Product Development Specialization (Library)Nanotechnology Specialization (Library)Network Programming and Protocols Specialization (Library)Enhanced Ontology-Driven Development (ODD) Methodology (Library)Operations Management Specialization (Library)Performance Optimization and Profiling Specialization (Library)Philosophy and Theology Specialization (Library)Physics Specialization (Library)Pilot Shell Methodology for Babysitter SDK (Library)Planning with Files (Library)Product Management and Product Strategy Specialization (Library)Production contract (Library)Programming Languages and Compilers Development Specialization (Library)Project Management and Leadership Specialization (Library)Public Relations and Communications Specialization (Library)QA, Testing, and Test Automation (Library)Quantum Computing Specialization (Library)Research Specialization (Library)Robotics and Simulation Engineering Specialization (Library)RPIKit Methodology (Library)Ruflo Methodology (Library)RUP (Rational Unified Process) (Library)Sales and Business Development Specialization (Library)Scientific Discovery and Problem Solving Specialization (Library)Scrum (Library)SDK, Platform, and Systems Development (Library)Security, Compliance, and Risk Management Specialization (Library)Security Research and Vulnerability Analysis Specialization (Library)Shape Up (Library)Social Sciences Specialization (Library)Software Architecture and Design Patterns Specialization (Library)Spec Kit Methodology (Library)Spiral Model (Library)Superpowers Extended Methodology (Library)Supply Chain Management Specialization (Library)Technical Documentation Specialization (Library)Travel (Curated-Dataset + SQL-Tool Pattern) (Library)UX/UI Design and User Experience Specialization (Library)V-Model Methodology (Library)Venture Capital and Investment Due Diligence Specialization (Library)Waterfall Methodology (Library)Web Product Development Specialization (Library)

Documented graph nodes

Records linked directly from this page’s Page node.

CC10X · Specialization

CC10X Methodology

Intelligent workflow orchestration for Claude Code development. CC10X routes all development requests through a single entry point that detects intent and dispatches to specialized workflows with evidence-first validation, TDD enforcement, and persistent session memory.

Core Principles

1. **Single Entry Point**: The cc10x-router handles all requests -- no manual skill selection 2. **Evidence-First**: All claims backed by logs, test results, or exit codes (zero = success) 3. **TDD Enforcement**: RED-GREEN-REFACTOR is mandatory during builds; tests are never skipped 4. **Memory Persistence**: Context survives across sessions via three memory surfaces 5. **Confidence Gating**: Issues reported must reach >=80% confidence; vague feedback rejected 6. **Parallel Execution**: Agents run simultaneously when possible (~30-50% faster)

Workflows

WorkflowTriggerAgent Chain
**BUILD**build, implement, create, make, write, addcomponent-builder -> [code-reviewer \
**DEBUG**debug, fix, error, bug, broken, troubleshootbug-investigator -> code-reviewer -> integration-verifier
**REVIEW**review, audit, check, analyze, assesscode-reviewer (multi-dimensional)
**PLAN**plan, design, architect, roadmap, strategyplanner (with github-researcher)

Process Files

FileProcess IDDescription
cc10x-router.jsmethodologies/cc10x/cc10x-routerSingle entry point: intent detection, workflow dispatch, contract validation, memory persistence
cc10x-build.jsmethodologies/cc10x/cc10x-buildBUILD workflow: TDD cycle, parallel review, integration verification
cc10x-debug.jsmethodologies/cc10x/cc10x-debugDEBUG workflow: log-first investigation, targeted fix, verification
cc10x-review.jsmethodologies/cc10x/cc10x-reviewREVIEW workflow: 4-dimension parallel analysis with confidence scoring
cc10x-plan.jsmethodologies/cc10x/cc10x-planPLAN workflow: research, brainstorming, plan creation with build continuity

Agents (8)

AgentRoleUsed In
cc10x-routerIntent detection and workflow orchestrationAll workflows
component-builderTDD feature developmentBUILD
bug-investigatorLog-first root cause analysisDEBUG
code-reviewerMulti-dimensional quality assessmentBUILD, DEBUG, REVIEW
silent-failure-hunterError handling gap detectionBUILD
integration-verifierEvidence-backed E2E validationBUILD, DEBUG
plannerComprehensive planning with researchPLAN
github-researcherGitHub repository and package researchPLAN, DEBUG

Skills (8)

SkillPurpose
session-memoryContext persistence across message compaction
verification-before-completionEvidence requirement enforcement
test-driven-developmentRED-GREEN-REFACTOR enforcement
code-generationMinimal, pattern-matching code output
debugging-patternsRoot cause analysis frameworks
code-review-patternsSecurity, quality, performance assessment
planning-patternsStructured planning methodology
architecture-patternsSystem and API design guidance

Memory System

Three files in .claude/cc10x/:

  • **activeContext.md** -- current focus, decisions, learnings, blockers
  • **patterns.md** -- project conventions, gotchas, architectural decisions
  • **progress.md** -- completed work, remaining tasks, verification results

Router Contract

Every agent output includes a machine-readable contract:

  • **STATUS**: PASS, FAIL, APPROVE, REJECT, NEEDS_REMEDIATION
  • **BLOCKING**: whether workflow can proceed
  • **REQUIRES_REMEDIATION**: whether REM-FIX task is needed
  • **Issue counts**: critical and high severity tallies
  • **Memory notes**: items to persist for future sessions

Plan-to-Build Continuity

Plans created by the PLAN workflow are saved to docs/plans/ and referenced in session memory. The BUILD workflow reads these plans during the requirements clarification phase, ensuring consistency between strategy and execution.

Attribution

Adapted from CC10X by Rom Iluz.

Trail

Wiki

Library

CC10X Methodology (Library)

Continue reading

Aerospace Engineering Specialization (Library)
AI Agents and Conversational AI Specialization (Library)
Algorithms and Optimization Specialization (Library)
Arts and Culture Specialization (Library)
ATDD/TDD Methodology (Library)
AutoMaker (Library)
Automotive Engineering Specialization (Library)
Backend Development (Library)

Page record

Open node ledger

wiki/library/cc10x.md

Documents

CC10X · Specialization