ワンクリックで
greenfield-scaffolding
Bootstrap a new project's Hero workspace with stack-appropriate conventions, decisions, and initial specs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bootstrap a new project's Hero workspace with stack-appropriate conventions, decisions, and initial specs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Behavioral rules that make AI coding agents more reliable — verification, self-correction, and scope discipline.
Debugging guidance and structured report template for thorough bug investigation, evidence gathering, and root cause documentation.
Cold-audit a completed delivery — verify the spec was actually delivered, challenge performative claims, and produce a what-landed report.
Guidelines for generating self-contained HTML mockups that look professional and are easy to iterate on.
Shared implementation guidance for making minimal, correct, maintainable code changes that fit existing systems.
The doctrine for `/roadmap-review` — interactive triage of roadmap-shape drift, walked one item at a time, with paste-ready resolution phrasing for the active sizing lens.
| name | greenfield-scaffolding |
| description | Bootstrap a new project's Hero workspace with stack-appropriate conventions, decisions, and initial specs. |
| compatibility | opencode |
| metadata | {"audience":"any-agent","purpose":"project-onboarding"} |
After hero init on a new project, generate starter knowledge entries
tailored to the detected tech stack. This gives a fresh workspace immediate
value instead of being an empty folder.
hero init on a new project/scan detects a stack but no conventions exist yetRun hero scan to detect the tech stack (languages, frameworks, build tools)
Based on the detected stack, generate:
Conventions (write to .hero/knowledge/conventions/):
Decisions (write to .hero/knowledge/decisions/):
Initial specs (write to .hero/planning/features/):
Run hero index to make everything searchable
Run hero install project . --target <detected-tool> to wire up MCP
| Stack | Conventions generated |
|---|---|
| Go | error wrapping, table-driven tests, package naming |
| TypeScript/Node | ESM imports, async/await patterns, type strictness |
| Python | virtual env, type hints, pytest conventions |
| Java/Kotlin | package structure, dependency injection, Gradle/Maven |
| Rust | error handling (thiserror/anyhow), module structure |
| React | component patterns, state management, testing-library |