🎯

startproject

🎯Skill

from del-taiseiozaki/claude-code-orchestra

VibeIndex|
What it does

Kickstart new software projects with multi-agent collaboration, guiding requirements, design review, and quality assurance across research, planning, and implementation phases.

📦

Part of

del-taiseiozaki/claude-code-orchestra(13 items)

startproject

Installation

git cloneClone repository
git clone --depth 1 https://github.com/DeL-TaiseiOzaki/claude-code-orchestra.git .starter && cp -r .starter/.claude .starter/.codex .starter/.gemini .starter/CLAUDE.md . && rm -rf .starter && claude
npm installInstall npm package
npm install -g @anthropic-ai/claude-code
npm installInstall npm package
npm install -g @openai/codex
npm installInstall npm package
npm install -g @google/gemini-cli
uv runRun with uv
uv run pytest -v

+ 1 more commands

📖 Extracted from docs: del-taiseiozaki/claude-code-orchestra
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

|

Overview

# Start Project

マルチエージェント協調でプロジェクトを開始する。

Overview

このスキルは3つのエージェント(Claude, Codex, Gemini)を協調させ、プロジェクト開始から実装後レビューまでをカバーする。

Workflow

```

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)

```

---

Phase 1: Gemini Research (Background)

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)

```

---

Phase 2: Requirements Gathering (Claude)

ユーザーに質問して要件を明確化。

Ask in Japanese:

  1. 目的: 何を達成したいですか?
  2. スコープ: 含めるもの・除外するものは?
  3. 技術的要件: 特定のライブラリ、制約は?
  4. 成功基準: 完了の判断基準は?

Draft implementation plan based on Gemini research + user answers.

---

Phase 3: Codex Design Review (Background)

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

```

---

Phase 4: Task Creation (Claude)

サブエージェントの要約を統合し、タスクリストを作成。

Use TodoWrite to create tasks:

```python

{

"content": "Implement {specific feature}",

"activeForm": "Implementing {specific feature}",

"status": "pending"

}

```

---

Phase 5: CLAUDE.md Update (IMPORTANT)

プロジェクト固有の情報を CLAUDE.md に追記する。

Add to CLAUDE.md:

```markdown

---

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.

---

Phase 6: Multi-Session Review (Post-Implementation)

実装完了後、別セッションでレビューを実施。

Option A: New Claude Session

  1. Start new Claude Code session
  2. Run: git diff main...HEAD to see all changes
  3. Ask Claude to review the implementation

Option B: Codex Review (via Subagent)

```

Task 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

```

Why Multi-Session Review?

  • Fresh perspective: New session has no bias from implementation
  • Different context: Can focus purely on review, not implementation details
  • Codex strength: Deep analysis without context pollution

---

User Confirmation

Present final plan to user (in Japanese):

```markdown

プロジェクト計画: {feature}

調査結果 (Gemini)

{Key findings - 3-5 bullet points}

設計方針 (Codex レビュー済み)

{Approach with refinements}

タスクリスト ({N}個)

{Task list}

リスクと注意点

{From Codex analysis}

次のステップ

  1. この計画で進めてよろしいですか?
  2. 実装完了後、別セッションでレビューを行います

---

この計画で進めてよろしいですか?

```

---

Output Files

| File | Purpose |

|------|---------|

| .claude/docs/research/{feature}.md | Gemini research output |

| CLAUDE.md | Updated with project context |

| Task list (internal) | Progress tracking |

---

Tips

  • All Codex/Gemini work through subagents to preserve main context
  • Update CLAUDE.md to persist context across sessions
  • Use multi-session review for better quality assurance
  • Ctrl+T: Toggle task list visibility

More from this repository10

🎯
update-lib-docs🎯Skill

Automatically updates library documentation in .claude/docs/libraries/ by searching web for latest version, features, and changes.

🎯
design-tracker🎯Skill

Proactively tracks and documents project design decisions, automatically recording architecture discussions, implementation choices, and technical decisions in a structured design log.

🎯
research-lib🎯Skill

I apologize, but I cannot generate a description without seeing the actual content or context of the "research-lib" skill. Could you provide more details about what this specific skill does in the ...

🎯
init🎯Skill

Initializes project configuration by analyzing tech stack, generating project overview, and updating AGENTS.md with detected settings and commands.

🎯
tdd🎯Skill

I apologize, but I cannot generate a description without seeing the actual content or context of the "tdd" skill in the repository. Could you provide more details about what the skill does, its pur...

🎯
simplify🎯Skill

Simplifies complex code by breaking it down into more readable, modular, and understandable components.

🎯
gemini-system🎯Skill

Proactively researches and analyzes complex topics using Gemini's 1M token context, multimodal capabilities, and Google Search integration.

🎯
plan🎯Skill

Generates a comprehensive, step-by-step implementation plan for software features, breaking down requirements, steps, and potential risks.

🎯
update-design🎯Skill

Explicitly updates the project's DESIGN.md with key decisions and implementation details from the current conversation.

🎯
context-loader🎯Skill

Loads and manages project-specific context and configuration details for Claude Code agents, enabling efficient context preservation and task delegation across different project environments.