ワンクリックで
scaffold
Scaffold a new project from the fullstack or Rust CLI boilerplate. Use when starting a new codebase.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Scaffold a new project from the fullstack or Rust CLI boilerplate. Use when starting a new codebase.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Commit current work, push, open a pull request, wait for CI to pass, then merge.
Commit current work, push, and open a pull request against main.
Switch to main branch, pull latest changes, and optionally begin work on a task.
Manually test your work against the locally running app by making real API or HTTP requests.
Comprehensive analysis of testing strategy and coverage across the codebase. Evaluates all test types and identifies gaps.
Reviews test coverage and testing strategy for recent code changes. Use before creating PRs to ensure changes are well-tested.
| name | scaffold |
| description | Scaffold a new project from the fullstack or Rust CLI boilerplate. Use when starting a new codebase. |
| user_invocable | true |
Scaffold a new project using my standard boilerplates.
Located at assets/fullstack/.
Stack:
Located at assets/rust-cli/.
Stack:
Ask what kind of project (if not specified):
backend/ from fullstackfrontend/ from fullstackCopy the boilerplate: Copy the appropriate files from assets/ to the project root
Customize:
For Full-Stack:
package.json, pyproject.toml, README.mddocker-compose.yml service names if neededFor Rust CLI:
Cargo.toml, README.md[[bin]] in Cargo.toml)config.rs (defaults to mycli)Initialize:
For Full-Stack:
git init (if not already a repo)just db-migrate "initial"For Rust CLI:
git init (if not already a repo)cargo build to verify setupVerify it works:
For Full-Stack:
just setup to build and start servicesFor Rust CLI:
just check (fmt + clippy + test)cargo run -- --help to see CLI helpcargo run -- example to test example subcommand