ワンクリックで
project-setup
Set up new Claude Code projects with CLAUDE.md, slash commands, and proper structure
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Set up new Claude Code projects with CLAUDE.md, slash commands, and proper structure
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | project-setup |
| description | Set up new Claude Code projects with CLAUDE.md, slash commands, and proper structure |
Activate this skill when:
Do NOT use for:
Analyze the target directory:
# Check for Node.js/TypeScript
ls package.json 2>/dev/null && echo "Node.js project"
# Check for Python
ls pyproject.toml requirements.txt setup.py 2>/dev/null && echo "Python project"
# Check for Go
ls go.mod 2>/dev/null && echo "Go project"
# Check for Rust
ls Cargo.toml 2>/dev/null && echo "Rust project"
If no config files exist, ask the user what type of project they want to create.
For new projects, ask:
For existing projects, extract from:
Use the appropriate template:
/templates/claude-md/react-typescript.md/templates/claude-md/python-api.md/templates/claude-md/fullstack.md/templates/claude-md/minimal.mdFill in all {{PLACEHOLDER}} values with actual project information.
Set up .claude/commands/ with useful commands:
Essential commands:
review.md - Code reviewtest-and-commit.md - Quality check and commitCopy from /templates/commands/ and customize.
Tell the user:
User says: "Set up a new React TypeScript project called my-app"
Actions:
my-app/ directorynpm create vite@latest . -- --template react-ts.claude/commands/ with review.md and test-and-commit.mdResult:
my-app/
├── CLAUDE.md
├── .claude/
│ └── commands/
│ ├── review.md
│ └── test-and-commit.md
├── src/
├── package.json
└── ...
User says: "Add Claude Code support to my Django project"
Actions:
After setup is complete:
/project:review or similar/templates/claude-md//templates/commands//docs/best-practices.md