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:
14
package.json
Normal file
14
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user