Initial workflow template

- 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.
This commit is contained in:
shokollm
2026-04-18 12:33:24 +00:00
parent 45c4cea7ae
commit 3f12cd1072
9 changed files with 1357 additions and 2 deletions

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"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"
}
}