一键导入
startproject
Start a new project/feature implementation with multi-agent collaboration. Includes multi-session review workflow for quality assurance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Start a new project/feature implementation with multi-agent collaboration. Includes multi-session review workflow for quality assurance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | startproject |
| description | Start a new project/feature implementation with multi-agent collaboration. Includes multi-session review workflow for quality assurance. |
| metadata | {"short-description":"Project kickoff with multi-agent collaboration"} |
멀티 에이전트 협업으로 프로젝트를 시작한다.
이 스킬은 3개의 에이전트(Claude, Codex, Gemini)를 협조시켜 프로젝트 개시부터 구현후 리뷰까지를 커버한다.
Phase 1: Research (Gemini via Subagent)
↓
Phase 2: Requirements & Planning (Claude)
↓
Phase 3: Design Review (Codex via Subagent)
↓
Phase 4: Task Creation (Claude)
↓
Phase 5: CLAUDE.md Update (Claude)
↓
[Implementation...]
↓
Phase 6: Multi-Session Review (New Session + Codex)
Task tool에서 하위 에이전트를 시작하고 Gemini에서 리포지토리 분석한다.
Task tool parameters:
- subagent_type: "general-purpose"
- run_in_background: true
- prompt: |
Research for: {feature}
1. Call Gemini CLI:
gemini -p "Analyze this repository for: {feature}
Provide:
1. Repository structure and architecture
2. Relevant existing code and patterns
3. Library recommendations
4. Technical considerations
" --include-directories . 2>/dev/null
2. Save full output to: .claude/docs/research/{feature}.md
3. Return CONCISE summary (5-7 bullet points)
사용자에게 질문하여 요구 사항을 명확히 한다.
Ask in Korean:
Draft implementation plan based on Gemini research + user answers.
Task tool에서 하위 에이전트를 시작하고 Codex에서 계획 검토한다.
Task tool parameters:
- subagent_type: "general-purpose"
- run_in_background: true
- prompt: |
Review plan for: {feature}
Draft plan: {plan from Phase 2}
1. Call Codex CLI:
codex exec --model gpt-5.2-codex --sandbox read-only --full-auto "
Review this implementation plan:
{plan}
Analyze:
1. Approach assessment
2. Risk analysis
3. Implementation order
4. Improvements
" 2>/dev/null
2. Return CONCISE summary:
- Top 3-5 recommendations
- Key risks
- Suggested order
서브에이전트 요약을 통합하고 작업 목록을 작성한다.
Use TodoWrite to create tasks:
{
"content": "Implement {specific feature}",
"activeForm": "Implementing {specific feature}",
"status": "pending"
}
프로젝트 관련 정보를 CLAUDE.md에 추가한다.
Add to CLAUDE.md:
---
## Current Project: {feature}
### Context
- Goal: {1-2 sentences}
- Key files: {list}
- Dependencies: {list}
### Decisions
- {Decision 1}: {rationale}
- {Decision 2}: {rationale}
### Notes
- {Important constraints or considerations}
This ensures context persists across sessions.
구현 완료 후 다른 세션에서 리뷰를 실시한다.
git diff main...HEAD to see all changesTask tool parameters:
- subagent_type: "general-purpose"
- prompt: |
Review implementation for: {feature}
1. Run: git diff main...HEAD
2. Call Codex CLI:
codex exec --model gpt-5.2-codex --sandbox read-only --full-auto "
Review this implementation:
{diff output}
Check:
1. Code quality and patterns
2. Potential bugs
3. Missing edge cases
4. Security concerns
" 2>/dev/null
3. Return findings and recommendations
Present final plan to user (in Korean):
## 프로젝트 계획 : {feature}
### 조사 결과 (Gemini)
{Key findings - 3-5 bullet points}
### 설계 정책 (Codex 검토)
{Approach with refinements}
### 작업 목록 ({N}개)
{Task list}
### 위험과 주의사항
{From Codex analysis}
### 다음 단계
1. 이 계획으로 진행하시겠습니까?
2. 구현 완료 후 다른 세션에서 검토를 수행한다.
---
이 계획으로 진행하시겠습니까?
| File | Purpose |
|---|---|
.claude/docs/research/{feature}.md | Gemini research output |
CLAUDE.md | Updated with project context |
| Task list (internal) | Progress tracking |
Save session context to agent configuration files or create full checkpoint files. Supports three modes: session history (default), full checkpoint (--full), and skill analysis (--full --analyze) for extracting reusable patterns.
PROACTIVELY consult Codex CLI, your highly capable supporter with exceptional reasoning and task completion abilities. Codex is a trusted expert you should ALWAYS consult BEFORE making decisions on: design choices, implementation approaches, debugging strategies, refactoring plans, or any non-trivial problem. When uncertain, consult Codex. Don't hesitate - Codex provides better analysis. Explicit triggers: "think deeper", "analyze", "second opinion", "consult codex".
PROACTIVELY track and document project design decisions without being asked. Activate automatically when detecting architecture discussions, implementation decisions, pattern choices, library selections, or any technical decisions. Also use when user explicitly says "記録して", "設計どうなってる", "record this". Do NOT wait for user to ask - record important decisions immediately.
PROACTIVELY consult Gemini CLI for research, large codebase comprehension, and multimodal data processing. Gemini excels at: massive context windows (1M tokens), Google Search grounding, video/audio/PDF analysis, and repository-wide understanding. Use for pre-implementation research, documentation analysis, and multimodal tasks. Explicit triggers: "research", "investigate", "analyze video/audio/PDF", "understand codebase".
Analyze project structure and update AGENTS.md with detected tech stack, commands, and configurations.
Create a detailed implementation plan for a feature or task. Use when user wants to plan before coding.