workflow-template-seeder
22
总安装量
2
周安装量
#16496
全站排名
安装命令
npx skills add https://github.com/heyvhuang/ship-faster --skill workflow-template-seeder
Agent 安装分布
trae
1
cursor
1
kiro-cli
1
claude-code
1
antigravity
1
gemini-cli
1
Skill 文档
Workflow: Template Seeder (Skills â Templates)
Goal: Turn a short template spec into a runnable, documented template under templates/.
This workflow is skills-first:
- Use skills as the primary execution engine
- Treat templates as âfrozen outputsâ (examples + regression references), not the mainline product
Input (pass paths only)
repo_root: Ship Faster repository root (wheretemplates/lives)run_dir:runs/template-seeder/active/<run_id>/template_spec.md: One-page spec (what it is, target user, core pages, required integrations)
Output (persisted)
03-plans/template-plan.md05-final/template-summary.md- A new template directory:
templates/<NNN>-<slug>/containing:README.md(5âminute runnable).env.local.example(keys only)metadata.json
Workflow
0) Initialize
- Create
run_dir. - Determine:
<slug>from spec (kebab-case)<NNN>as the next available number undertemplates/(001, 002, â¦)
- Write
01-input/context.jsonfor this workflow:entry_type: idearepo_root: <path-to-new-template-dir>need_deploy: false(templates should not auto-deploy)- Enable only the integrations required by the spec (DB/billing/SEO)
1) Generate the template baseline (prefer clean + minimal)
Preferred path:
- Create a clean Next.js baseline in the new template directory, then run the same âShip Faster chainâ against it.
Execution order (recommended):
workflow-project-intake(optional if spec is already complete)workflow-ship-fasterwith the template directory asrepo_root- If any steps are skipped (e.g., no DB/billing), record why in
00-index.md/05-final/template-summary.md
2) Template hardening (shareable output)
Must do:
- Remove secrets; only keep env key names in
.env.local.example - Ensure
README.mdincludes:- Node version
- install + dev
- required env keys
- optional integrations notes
- Ensure
metadata.jsonis accurate and generic (no private branding unless intended)
3) Verification
At minimum (document results in 05-final/template-summary.md):
- install works
devstartsbuildsucceeds (if the template requires external credentials, document the minimal required keys)
Constraints
- Do not create a âkitchen sinkâ template.
- Avoid large refactors; prefer small, clean baselines that are easy to adapt.
- Never commit secrets.