- docs/workflow/: INDEX, ISSUE-FORMAT, WORKFLOW, AGENT-PROMPTS - .issues/: INDEX, example issue - .hooks/: issue-linter.js (pre-commit validator) - package.json with setup script - README.md See docs/workflow/INDEX.md to get started.
15 lines
381 B
JSON
15 lines
381 B
JSON
{
|
|
"name": "workflow-template",
|
|
"version": "1.0.0",
|
|
"description": "Standard issue-based workflow template for teams",
|
|
"private": true,
|
|
"scripts": {
|
|
"setup": "node .hooks/issue-linter.js --setup",
|
|
"validate:issues": "node .hooks/issue-linter.js",
|
|
"test": "echo \"Add your test commands here\""
|
|
},
|
|
"devDependencies": {
|
|
"pre-commit-hook": "^3.0.0"
|
|
}
|
|
}
|