cc-dev-agent

Claude Code 개발 워크플로우 최적화. Context Engineering, Sub-agents, TDD, 개발 후 검증 워크플로우 제공. 트리거: CC 프로젝트 시작, CLAUDE.md/spec.md 작성, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams 병렬 개발 요청 시.

643 stars

Best use case

cc-dev-agent is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Claude Code 개발 워크플로우 최적화. Context Engineering, Sub-agents, TDD, 개발 후 검증 워크플로우 제공. 트리거: CC 프로젝트 시작, CLAUDE.md/spec.md 작성, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams 병렬 개발 요청 시.

Teams using cc-dev-agent should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/cc-dev-agent/SKILL.md --create-dirs "https://raw.githubusercontent.com/sangrokjung/claude-forge/main/skills/cc-dev-agent/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/cc-dev-agent/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How cc-dev-agent Compares

Feature / Agentcc-dev-agentStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Claude Code 개발 워크플로우 최적화. Context Engineering, Sub-agents, TDD, 개발 후 검증 워크플로우 제공. 트리거: CC 프로젝트 시작, CLAUDE.md/spec.md 작성, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams 병렬 개발 요청 시.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Claude Code Agent

Claude Code를 활용한 Spec-Driven 개발 워크플로우 및 Context Engineering 가이드.

## 핵심 원칙

1. **Context Engineering**: 제한된 컨텍스트 윈도우에서 토큰 유용성 최적화
2. **Spec-Driven**: 코드 전에 스펙(spec.md) 먼저 → 반복 수정 8배 감소
3. **TDD Loop**: Red(테스트) → Green(구현) → Refactor
4. **Sub-agents 활용**: Explore, Plan 에이전트로 작업 분산
5. **작성-검증 분리**: `/clear` 후 새 눈으로 검증 (Boris 원칙)

---

## 병렬 개발 (Agent Teams v6)

> Git Worktree 기반 병렬 개발은 레거시. Agent Teams가 팀 생성/정리를 자동 처리.

### 전제조건

- `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS`를 `1`로 설정
- 설정 위치: `~/.claude/settings.json`의 `env` 또는 셸 환경변수

### 사용법

```bash
/orchestrate --type feature   # 기능 구현
/orchestrate --type bugfix    # 버그 수정
/orchestrate --type refactor  # 리팩토링
```

→ **상세 가이드**: `references/sub-agents.md`

---

## 개발 완료 후 워크플로우 (Boris 방식)

> "Give Claude a way to verify its work. If Claude has that feedback loop, it will 2-3x the quality."

### 핵심 플로우

```
/orchestrate (선택) → 개발 → /handoff-verify
→ /commit-push-pr --merge
→ /web-checklist → /sync-docs
```

### 단계별 역할

| 단계 | 명령어 | 이유 |
|------|--------|------|
| 1 | `/orchestrate` (선택) | Agent Teams 병렬 개발 |
| 2 | 개발 | 기능 구현 |
| 3 | `/handoff-verify` | 의도 문서화 + fresh context 자동 검증 (v6 통합) |
| 4 | `/commit-push-pr --merge` | 커밋 & PR & 머지 |
| 5 | `/web-checklist` | 웹 테스트 체크리스트 |
| 6 | `/sync-docs` | 문서 동기화 |

→ **상세 가이드**: `references/post-dev-workflow.md`

---

## Context Engineering

| 명령어 | 용도 | 사용 시점 |
|--------|------|-----------|
| `/clear` | 컨텍스트 완전 초기화 | 새 Task, 에러 루프 탈출, **검증 전** |
| `/compact` | 대화 요약 압축 | 60% 도달 시 |
| `/context` | 현재 사용량 확인 | 복잡한 작업 중 수시 체크 |

→ **상세 가이드**: `references/context-engineering.md`

---

## Sub-agents

| 유형 | 용도 |
|------|------|
| `Explore` | 빠른 코드베이스 검색 (Read-only) |
| `Plan` | 구현 계획 설계 |

**병렬 처리**: 최대 10개 동시 실행

→ **상세 가이드**: `references/sub-agents.md`

---

## 개발 5단계

```
Phase 1: 초기화 → CLAUDE.md 생성
Phase 2: 기획 → spec.md, prompt_plan.md 작성
Phase 3: 구현 → TDD Loop 반복 (핵심)
Phase 4: 검증 → 스펙 대조, 코드 리뷰
Phase 5: 배포 → 보안 검토, 최종 점검
```

### Think 키워드

| 키워드 | 용도 |
|--------|------|
| `think` | 단순 버그 |
| `think hard` | 다중 파일, 원인 불명 |
| `ultrathink` | 아키텍처, 설계 결함 |

→ **상세 사용법**: `references/troubleshooting.md`

---

## Quick Reference

### 필수 .gitignore (병렬 개발 충돌 방지)

```gitignore
.claude/context/
.claude/settings.json
.claude/settings.local.json
.claude/handoff.md
CLAUDE.local.md
```

### 참조 문서

| 파일 | 용도 |
|------|------|
| `references/post-dev-workflow.md` | 개발 완료 후 워크플로우 상세 |
| `references/sub-agents.md` | 서브에이전트 + Agent Teams |
| `references/prompts.md` | 복사용 프롬프트 |
| `references/context-engineering.md` | 컨텍스트 엔지니어링 심화 |
| `references/playwright-agents.md` | Playwright 테스트 에이전트 |
| `references/templates.md` | MD 파일 템플릿 |
| `references/troubleshooting.md` | 에러 해결 + Think 키워드 상세 |

Related Skills

verify-implementation

643
from sangrokjung/claude-forge

프로젝트의 모든 verify 스킬을 실행하여 통합 패턴 검증 보고서를 생성합니다. 기능 구현 후, PR 전, 코드 리뷰 시 사용.

verification-engine

643
from sangrokjung/claude-forge

통합 검증 엔진 - 서브에이전트 기반 fresh-context 검증 루프 (v6)

using-superpowers

643
from sangrokjung/claude-forge

Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions

team-orchestrator

643
from sangrokjung/claude-forge

Agent Teams 오케스트레이션 엔진 - 팀 구성, 작업 분배, 의존성 관리, 결과 집계

strategic-compact

643
from sangrokjung/claude-forge

Suggests manual context compaction at logical intervals to preserve context through task phases rather than arbitrary auto-compaction.

skill-factory

643
from sangrokjung/claude-forge

Analyze session work and automatically convert reusable patterns into Claude Code skills. Use when: "세션을 스킬로", "스킬 만들어", "이거 스킬로", "skill factory", "이 작업 자동화해", "스킬 추출", "make this a skill", "extract skill", "convert to skill", "스킬 팩토리", "자동 스킬 생성". Differs from skill-creator (archived) and manage-skills (drift detection): this skill actively analyzes sessions, checks for duplicates, and creates skills via Agent Teams.

session-wrap

643
from sangrokjung/claude-forge

세션 종료 전 자동 정리 스킬. 4개 병렬 subagent가 문서 업데이트, 반복 패턴, 학습 포인트, 후속 작업을 동시 탐지하고, 1개 검증 subagent가 중복 제거 후 사용자에게 선택지를 제시한다. 트리거: /session-wrap, 세션 마무리, 세션 정리, 작업 마무리

security-pipeline

643
from sangrokjung/claude-forge

보안 파이프라인 - CWE Top 25 + STRIDE 자동 검증

prompts-chat

643
from sangrokjung/claude-forge

스킬/프롬프트 탐색 및 검색 통합 스킬. 사용자가 스킬 설치, 프롬프트 검색, 프롬프트 개선을 요청할 때 활성화.

manage-skills

643
from sangrokjung/claude-forge

세션 변경사항을 분석하여 검증 스킬 누락을 탐지합니다. 기존 스킬을 동적으로 탐색하고, 새 스킬을 생성하거나 기존 스킬을 업데이트한 뒤 프로젝트 CLAUDE.md를 관리합니다.

frontend-code-review

643
from sangrokjung/claude-forge

Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules.

eval-harness

643
from sangrokjung/claude-forge

Formal evaluation framework for Claude Code sessions implementing eval-driven development (EDD) principles