init
1
总安装量
1
周安装量
#44113
全站排名
安装命令
npx skills add https://github.com/del-taiseiozaki/claude-code-orchestra --skill init
Agent 安装分布
claude-code
1
Skill 文档
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 projectpyproject.toml/setup.py/requirements.txtâ Python projectCargo.tomlâ Rust projectgo.modâ Go projectMakefile/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:
- Project overview: What does this project do? (1-2 sentences)
- Code language: English or Japanese for comments/variable names?
- 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:
# 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:
## 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)