with one click
init-project
Initialize a new project โ repo, structure, CI, and first commit
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Initialize a new project โ repo, structure, CI, and first commit
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | init-project |
| description | Initialize a new project โ repo, structure, CI, and first commit |
| user_invocable | true |
Set up a new project with progressive single-question flow. Each step has a sensible default โ user can just press Enter to accept.
Ask ONE question at a time. Show the default/recommendation in brackets. If the user provides no answer or says "ok/ๅฅฝ/ๅฏ/้ป่ฎค", use the default.
Ask: "Project name?" โ infer default from current directory name or user's earlier context.
Ask: "Language/framework? [recommended: TypeScript + Node.js]" Recommend based on:
Ask: "Public or private? [private]" Default: private
Do NOT ask a generic "any CI/CD requirements?" question. Instead:
The CI recommendation MUST be based on:
Show a one-line summary of all choices, ask "Go? [yes]"
Once confirmed:
gh repo create <name> --private/--public --clone && cd <name>.gitignore (use GitHub's template for the language)README.md with project name + one-line descriptiongit add -A
git commit -m "chore: initial project setup"
git push -u origin main
| Ecosystem | Linter | Test | Build | Extra |
|---|---|---|---|---|
| TypeScript/Node | eslint + prettier | vitest | tsc | โ |
| Python | ruff | pytest | โ | mypy type check |
| Rust | clippy | cargo test | cargo build | โ |
| Go | golangci-lint | go test | go build | โ |
| Next.js | eslint | vitest | next build | โ |
| React (Vite) | eslint + prettier | vitest | vite build | โ |
.gitignore and README.md.Write personal blog posts with the rhythm, structure, and voice of top-tier essayists (Paul Graham, Dan Luu, Henrik Karlsson, Ben Kuhn, etc.)
Add a new feature with design, TDD, and PR workflow
Audit a codebase for security vulnerabilities, code quality issues, and architecture concerns
Use when the user says "autopilot", "auto mode", "ๆฟๆๅ็ญ", or "่ชๅจๅ็ญ". Enables autonomous decision-making by answering Claude's own questions based on the user's personality profile.
Fix a bug with systematic debugging, TDD, and PR workflow
Create a git release โ tag, push, and create GitHub release