-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "ai-template",
"version": "0.0.1",
"license": "UNLICENSED",
"packageManager": "npm@11.5.2",
"type": "module",
"devDependencies": {
"picomatch": "^4.0.3",
"prettier": "^3.6.2"
},
"scripts": {
"lint:fix": "echo \"TODO: implement linting\"",
"// -- 🤖 Agent Scripts": "--",
"format:markdown": "prettier --write \"agents/**/*.md\"",
"memory:validate": "node agents/scripts/validate-memory-bank.mjs",
"phase:check": "npm run lint:fix && node agents/scripts/check-code-quality.mjs",
"agent:finalize": "npm run format:markdown && npm run memory:validate && npm run phase:check",
"spec:validate": "node agents/scripts/spec-validate.mjs --root agents/specs --registry agents/contracts/registry.yaml --allow-empty",
"spec:merge": "node agents/scripts/spec-merge.mjs",
"spec:finalize": "npm run spec:validate && npm run memory:validate"
}
}