๐ŸŽฏ

init

๐ŸŽฏSkill

from del-taiseiozaki/claude-code-orchestra

VibeIndex|
What it does

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

๐Ÿ“ฆ

Part of

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

init

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

Analyze project structure and update AGENTS.md with detected tech stack, commands, and configurations.

Overview

# Initialize Project Configuration

Analyze this project and update only the project-specific sections of AGENTS.md.

Important

  • Do NOT modify the "Extensions" section and below in existing AGENTS.md
  • Only update the top project-specific sections

Steps

1. Project Analysis

Find these files to identify the tech stack:

  • package.json โ†’ Node.js/TypeScript project
  • pyproject.toml / setup.py / requirements.txt โ†’ Python project
  • Cargo.toml โ†’ Rust project
  • go.mod โ†’ Go project
  • Makefile / Dockerfile โ†’ Build/deploy config
  • .github/workflows/ โ†’ CI/CD config

Also detect:

  • npm scripts / poe tasks / make targets โ†’ Common commands
  • Major libraries/frameworks

2. Ask User

Use AskUserQuestion tool to ask:

  1. Project overview: What does this project do? (1-2 sentences)
  2. Code language: English or Japanese for comments/variable names?
  3. Additional rules: Any other coding conventions to follow?

3. Partial Update of AGENTS.md

Use Edit tool to update only the top section (up to first ---) with this format:

```markdown

# Project Overview

{User's answer}

Language Settings

  • Thinking/Reasoning: English
  • Code: {Based on analysis - English or Japanese}
  • User Communication: Japanese

Tech Stack

  • Language: {Detected language}
  • Package Manager: {Detected tools}
  • Dev Tools: {Detected tools}
  • Main Libraries: {Detected libraries}

```

4. Update Common Commands

Update the ## Common Commands section with detected commands:

```markdown

Common Commands

```bash

# Detected commands (example)

{npm run dev / poe test / make build etc.}

```

```

5. Check Unnecessary Rules

Check rules in .claude/rules/ and suggest removing unnecessary ones:

  • Non-Python project โ†’ dev-environment.md (uv/ruff/ty) may not be needed
  • No-test project โ†’ testing.md may not be needed

6. Report Completion

Report to user (in Japanese):

  • Detected tech stack
  • Updated sections
  • Recommended rules to remove (if any)

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.

๐ŸŽฏ
startproject๐ŸŽฏSkill

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

๐ŸŽฏ
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 ...

๐ŸŽฏ
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.