Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
project-setup
// Set up new Claude Code projects with CLAUDE.md, slash commands, and proper structure
$ git log --oneline --stat
stars:84
forks:37
updated:2025년 12월 6일 06:33
SKILL.md
// Set up new Claude Code projects with CLAUDE.md, slash commands, and proper structure
| 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