Skip to content

Commit 2e24158

Browse files
committed
feat: generate taskbrief tasks from PRD
1 parent 03549c4 commit 2e24158

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/smoke-init.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ test -f smoke-app/README.md
7272
test -f smoke-app/package.json
7373
test -f smoke-app/docs/PRD.md
7474
test -f smoke-app/docs/TASKS.md
75+
test -f smoke-app/.github/dependabot.yml
76+
test -f smoke-app/.github/workflows/ci.yml
7577
grep -q "# smoke-app" smoke-app/README.md
7678
grep -q "Smoke Tester" smoke-app/package.json
7779
grep -q "This is a copied PRD" smoke-app/docs/PRD.md

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ const templateScaffolds: Record<TemplateKey, TemplateScaffold> = {
9090
{ source: 'templates/release/ROADMAP.template.md', destination: 'ROADMAP.md' },
9191
{ source: 'templates/github/pull_request_template.md', destination: '.github/pull_request_template.md' },
9292
{ source: 'templates/github/dependabot.yml', destination: '.github/dependabot.yml' },
93+
{ source: 'templates/github/workflows/ci.yml', destination: '.github/workflows/ci.yml' },
9394
{ source: 'templates/agents/AGENTS.template.md', destination: 'AGENTS.md' },
9495
{ source: 'templates/repo-docs/README.md', destination: 'docs/README.md' },
9596
{ source: 'templates/repo-validate/validate.sh', destination: 'scripts/validate.sh' }

templates/github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
required_files=(
2727
README.md
2828
LICENSE
29-
.editorconfig
30-
.gitignore
3129
)
3230
3331
for file in "${required_files[@]}"; do

0 commit comments

Comments
 (0)