ワンクリックで
lets-init
Initialize .planning/ directory and PROJECT.md with auto-detected project config
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Initialize .planning/ directory and PROJECT.md with auto-detected project config
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Get a second opinion from Codex CLI (OpenAI) on plans, code, or debugging. Use this skill when the user asks to review plans with Codex, get a code review from Codex, or wants a second perspective on a bug. Also use proactively: after finishing an implementation plan, after completing a feature implementation, or when stuck debugging after 2-3 failed attempts. Trigger on phrases like "ask codex", "get a second opinion", "review with codex", "send to codex", or "/codex".
Query Grok (xAI) with native X/Twitter search access. Use this skill whenever the user wants to fetch a specific tweet or X thread by URL, search X/Twitter for posts or discussions on a topic, check reactions or discourse on X, or any task where real-time X/Twitter data would be useful. Triggers on: X/Twitter URLs (x.com links, twitter.com links), "check X for", "what's the reaction on X/Twitter", "fetch this tweet", "search X for", "from:handle", or any request involving real-time social media content from X/Twitter. Also use when the user pastes an x.com or twitter.com URL and wants to know what it says.
Implement a plan from .planning/ phase by phase with subagents
Discuss and create a structured implementation plan in .planning/
Release a new version with tag, changelog, version bumps, and STATE.md update
| name | lets-init |
| description | Initialize .planning/ directory and PROJECT.md with auto-detected project config |
| argument-hint |
You are initializing a project for use with the lets-plan, lets-implement, and lets-release skills. Your goal is to auto-detect as much as possible from the codebase, confirm with the user, and write .planning/PROJECT.md.
Scan the project root for these signals:
package.json, pyproject.toml, go.mod, Cargo.toml, Gemfile, pom.xml, build.gradle, Makefile, etc.packages/, apps/, services/ directories.package.json, Makefile targets, pyproject.toml scripts, CI config (.github/workflows/, .gitlab-ci.yml). Identify lint, typecheck, test, and build commands.package.json, pyproject.toml, version.go, Cargo.toml).develop branch, and look at recent branch naming patterns.CLAUDE.md, AGENTS.md, README.md, .planning/ to avoid duplicating what's already documented.After confirmation, create .planning/PROJECT.md using this structure:
# Project Configuration
## Stack
- **Language:** e.g., TypeScript
- **Framework:** e.g., Next.js, FastAPI, Go stdlib
- **Package manager:** e.g., pnpm
- **Structure:** e.g., monorepo with packages/server, packages/web, packages/shared
## Quality Commands
- **Lint:** e.g., `pnpm biome check --write`
- **Typecheck:** e.g., `pnpm exec tsc --noEmit`
- **Test:** e.g., `pnpm test`
- **Build:** e.g., `pnpm build`
## Version Files
- `package.json`
- `packages/server/package.json`
## Git
- **Default branch:** main
- **Branch convention:** e.g., feature/*, fix/*, chore/*
## Release
- **Versioning:** semver
- **Changelog:** CHANGELOG.md
- **Deploy:** e.g., `ssh deploy@prod 'cd /app && git pull && pm2 restart all'`
## Notes
Any project-specific notes the user mentioned during init.
Omit sections where no information was found or provided. Don't include placeholder values like "TBD" — if it's unknown, leave the section out entirely.
.planning/PROJECT.md without asking./lets-plan is for.CLAUDE.md or AGENTS.md — reference those files instead.