@attalabs/vinaya 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -661
- package/README.md +1 -1
- package/aeg-root/contracts/archivist-tranche-archivist.md +92 -0
- package/aeg-root/contracts/brief-developer.md +140 -0
- package/aeg-root/contracts/developer-reviewer.md +106 -0
- package/aeg-root/contracts/planner-brief.md +130 -0
- package/aeg-root/contracts/reviewer-archivist.md +96 -0
- package/aeg-root/contracts/tranche-archivist-planner.md +116 -0
- package/aeg-root/coordination.md +293 -0
- package/aeg-root/enforcement.md +159 -0
- package/aeg-root/glossary.md +32 -0
- package/aeg-root/process.md +371 -0
- package/aeg-root/roles/archivist.md +167 -0
- package/aeg-root/roles/brief-author.md +108 -0
- package/aeg-root/roles/developer.md +429 -0
- package/aeg-root/roles/planner.md +285 -0
- package/aeg-root/roles/principal.md +107 -0
- package/aeg-root/roles/reviewer.md +130 -0
- package/aeg-root/roles/security.md +121 -0
- package/aeg-root/roles/tranche-archivist.md +257 -0
- package/aeg-root/skills/aeg/SKILL.md +90 -0
- package/aeg-root/skills/aeg-roles/SKILL.md +58 -0
- package/aeg-root/skills/brief-authoring/SKILL.md +497 -0
- package/aeg-root/state-machine.md +642 -0
- package/aeg-root/templates/brief-template.md +103 -0
- package/aeg-root/templates/issue-rationale-template.md +35 -0
- package/aeg-root/templates/pr-report-template.md +68 -0
- package/aeg-root/tranche-model.md +304 -0
- package/dist/checks/bin/check-branch-topology.js +2840 -0
- package/dist/checks/bin/check-brief-shape.js +2775 -0
- package/dist/checks/bin/check-closes-n.js +2824 -0
- package/dist/checks/bin/check-coherence.js +2922 -0
- package/dist/checks/bin/check-dead-branch-push.js +2799 -0
- package/dist/checks/bin/check-dispatch-readiness.js +2923 -0
- package/dist/checks/bin/check-doc-coverage-push.js +2818 -0
- package/dist/checks/bin/check-doc-coverage.js +2816 -0
- package/dist/checks/bin/check-first-push-dispatch.js +2888 -0
- package/dist/checks/bin/check-issue-assignment.js +2863 -0
- package/dist/checks/bin/check-no-disk-state.js +2811 -0
- package/dist/checks/bin/check-reader-resolvable-prose.js +2820 -0
- package/dist/checks/bin/check-registry-gates.js +2923 -0
- package/dist/checks/bin/check-review-gate.js +2826 -0
- package/dist/checks/bin/check-single-plan-pr.js +2810 -0
- package/dist/checks/bin/check-test-plan.js +2775 -0
- package/dist/index.js +1563 -446
- package/package.json +7 -4
- package/templates/custom-check.template.ts +1 -1
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@attalabs/vinaya",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Vinaya — Agentic Engineering Harness. Deterministic checks every AI coding agent must satisfy before merge.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
7
|
"author": "Daniel Estevez",
|
|
8
8
|
"bin": {
|
|
9
9
|
"vinaya": "./dist/index.js"
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
13
|
"templates",
|
|
14
|
+
"aeg-root",
|
|
14
15
|
"README.md"
|
|
15
16
|
],
|
|
16
17
|
"publishConfig": {
|
|
@@ -36,10 +37,12 @@
|
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
39
|
"build": "bun scripts/build.ts",
|
|
39
|
-
"
|
|
40
|
+
"bundle-doctrine": "bun scripts/bundle-doctrine.ts",
|
|
41
|
+
"prepack": "bun scripts/build.ts && bun scripts/bundle-doctrine.ts",
|
|
40
42
|
"test": "bun test",
|
|
41
43
|
"typecheck": "tsc --noEmit",
|
|
42
|
-
"lint": "biome check src tests scripts"
|
|
44
|
+
"lint": "biome check src tests scripts",
|
|
45
|
+
"verify-published-lifecycle": "bun scripts/verify-published-lifecycle.ts"
|
|
43
46
|
},
|
|
44
47
|
"dependencies": {
|
|
45
48
|
"gray-matter": "^4.0.3",
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* then exit 0 (pass) or 1 (findings). The RUNNER enforces the timeout —
|
|
7
7
|
* never sleep past it inside this file. This file is standalone (no import
|
|
8
8
|
* from the vinaya CLI's own source tree) because it lives in YOUR repo, not
|
|
9
|
-
* inside `@
|
|
9
|
+
* inside `@attalabs/vinaya`.
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
type CheckError = {
|