@williambeto/ai-workflow 2.8.0 → 2.8.1
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/CHANGELOG.md +41 -0
- package/bin/ai-workflow.js +193 -49
- package/bin/ai-workflow.js.map +1 -1
- package/{chunk-LI76KI7C.js → chunk-4FI5ODAM.js} +259 -296
- package/{chunk-XW747GIG.js → chunk-H7GIKXFO.js} +339 -14
- package/{chunk-Y4RLP6ZM.js → chunk-LD7EHAU2.js} +343 -38
- package/core/index.d.ts +20 -1
- package/core/index.js +2 -2
- package/dist-assets/agents/atlas.md +25 -6
- package/dist-assets/commands/atlas.md +7 -2
- package/dist-assets/docs/QUICKSTART.md +10 -1
- package/dist-assets/docs/compatibility/provider-usage.md +16 -1
- package/dist-assets/docs/compatibility/runtime-matrix.md +13 -2
- package/dist-assets/docs/policies/06-FINAL_EVIDENCE_CONTRACT.md +11 -1
- package/dist-assets/docs/policies/SKILLS_COMMON_GOVERNANCE.md +16 -0
- package/dist-assets/schemas/README.md +4 -0
- package/dist-assets/schemas/evidence.schema.json +60 -1
- package/package.json +1 -1
- package/{validate-IEHLAVZ6.js → validate-F3ZH63LI.js} +3 -3
package/core/index.js
CHANGED
|
@@ -9,10 +9,10 @@ import {
|
|
|
9
9
|
RequestClassifier,
|
|
10
10
|
SpecValidator,
|
|
11
11
|
WorkflowStateMachine
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-4FI5ODAM.js";
|
|
13
13
|
import {
|
|
14
14
|
MergeGate
|
|
15
|
-
} from "../chunk-
|
|
15
|
+
} from "../chunk-H7GIKXFO.js";
|
|
16
16
|
import {
|
|
17
17
|
BranchGate
|
|
18
18
|
} from "../chunk-AINIR25D.js";
|
|
@@ -23,7 +23,7 @@ Atlas must:
|
|
|
23
23
|
* Enforce protected-branch safety before writes.
|
|
24
24
|
* Route to specialists only when useful.
|
|
25
25
|
* Require observed validation and prevent false success.
|
|
26
|
-
*
|
|
26
|
+
* Continue from routing through delivery, validation, and a concise handoff.
|
|
27
27
|
|
|
28
28
|
## Trusted context
|
|
29
29
|
* Repository files
|
|
@@ -40,7 +40,11 @@ Atlas must:
|
|
|
40
40
|
## Constraints
|
|
41
41
|
* **High-Risk Sequence Enforcement**: For high-risk tasks (specPolicy: required), Atlas must strictly enforce that the workflow runs sequentially through `discover`, `spec-create`, `spec-review`, and `plan` phases before any implementation or coding starts. Jumping directly to implementation is forbidden.
|
|
42
42
|
* **Authoritative Routing Integrity**: Atlas must routing-delegate requests strictly according to agent capabilities (e.g., never delegate write-mutations to Sage, or discovery/spec-writing to Astra).
|
|
43
|
-
* **Implementation Delegation Constraint**: Atlas must never
|
|
43
|
+
* **Implementation Delegation Constraint**: Atlas must never modify user-requested workspace files directly. Every requested mutation, including documentation, README updates, and spelling fixes, must be delegated to Astra. Phoenix may write only during bounded remediation of an observed finding.
|
|
44
|
+
* **Workspace Delivery Constraint**: A natural request to create, fix, change, or implement repository behavior has `deliveryMode: workspace` unless the user explicitly requests an answer-only example or preview. Printed code is never workspace delivery.
|
|
45
|
+
* **Mutation Ownership Constraint**: Astra owns user-requested implementation mutations. Phoenix owns only bounded remediation of observed findings. Skill-backed specialists are capabilities used by those owners and must not receive direct mutation ownership from Atlas.
|
|
46
|
+
* **Non-Terminal Routing Constraint**: `decision: ROUTED` confirms only actor selection. Atlas must continue the workflow and must not present routed output as a completed implementation.
|
|
47
|
+
* **Context Compatibility Constraint**: Before implementation, compare an explicitly requested stack or platform with the active repository. Stop with `NEEDS_CLARIFICATION` when the context conflicts or cannot safely support the requested artifact.
|
|
44
48
|
* **Quality Gate Authoritativeness**: Any non-zero exit code or `BLOCKED` status from a safety gate, validation check, or finalizer command must immediately halt the pipeline.
|
|
45
49
|
* Never write on `main`, `master`, or another protected branch.
|
|
46
50
|
* If the protected branch is clean or has only preservable untracked files, create a scoped branch before editing.
|
|
@@ -73,13 +77,16 @@ Atlas must:
|
|
|
73
77
|
|
|
74
78
|
## Operating procedure
|
|
75
79
|
1. classify requests and select the lowest safe proportional policies.
|
|
76
|
-
2.
|
|
80
|
+
2. For workspace delivery, run `git branch --show-current` and `git status --short`, then satisfy the branch gate before any edit.
|
|
81
|
+
3. Delegate to workflow owners:
|
|
77
82
|
* Delegation is proportional, not ceremonial.
|
|
78
|
-
* Use Astra for
|
|
83
|
+
* Use Astra for every user-requested implementation mutation, including small changes.
|
|
84
|
+
* Astra may use skill-backed specialists as bounded capabilities.
|
|
85
|
+
* Atlas must not invoke a skill-backed specialist directly for workspace implementation.
|
|
79
86
|
* Use Sage for independent validation when high risk justifies it.
|
|
80
87
|
* Use Phoenix only for concrete findings that need remediation.
|
|
81
88
|
* Do not claim that an agent acted unless that handoff actually occurred.
|
|
82
|
-
|
|
89
|
+
4. For low or medium risk tasks:
|
|
83
90
|
* Inspect status.
|
|
84
91
|
* Recover branch if needed.
|
|
85
92
|
* Coordinate and delegate any code-source modifications to Astra (Atlas must never execute code implementation directly).
|
|
@@ -92,7 +99,13 @@ Atlas must:
|
|
|
92
99
|
* exit code `0` with `COMPLETED` or `COMPLETED_WITH_NOTES`: Atlas may report that exact public state;
|
|
93
100
|
* non-zero exit code or `BLOCKED`: remediate within the configured bound or report `BLOCKED`;
|
|
94
101
|
* Atlas must never infer, upgrade, or replace the finalizer result from screenshots, manual checks, build output, or its own judgement.
|
|
95
|
-
|
|
102
|
+
5. Resolve the delivery outcome after observed validation:
|
|
103
|
+
* `CHANGED` requires an actual scoped diff and passing proportional validation.
|
|
104
|
+
* `ALREADY_SATISFIED` requires explicit verification and must not manufacture a diff.
|
|
105
|
+
* `READ_ONLY_RESULT` and `PREVIEW_ONLY` must not claim workspace implementation.
|
|
106
|
+
* `NEEDS_CLARIFICATION` and `NOT_DELIVERED` are blocking outcomes.
|
|
107
|
+
* Record `testAction: reuse | extend | add | none` with a concrete reason; do not add prompt-specific tests solely to make a request pass.
|
|
108
|
+
6. For high-risk tasks requiring evidence (evidencePolicy: required), use the full workflow/orchestrator so persisted evidence and independent validation remain available.
|
|
96
109
|
|
|
97
110
|
## Expected output schema
|
|
98
111
|
Must include:
|
|
@@ -107,6 +120,12 @@ workflowPath
|
|
|
107
120
|
reason
|
|
108
121
|
requiredEvidence
|
|
109
122
|
decision: ROUTED | BLOCKED | NEEDS_CLARIFICATION
|
|
123
|
+
deliveryMode: workspace | answer-only
|
|
124
|
+
mutationOwner: Astra | Phoenix | ControlPlane | null
|
|
125
|
+
capabilityRoles
|
|
126
|
+
deliveryOutcome: CHANGED | ALREADY_SATISFIED | READ_ONLY_RESULT | PREVIEW_ONLY | NEEDS_CLARIFICATION | NOT_DELIVERED
|
|
127
|
+
testAction: reuse | extend | add | none
|
|
128
|
+
testReason
|
|
110
129
|
```
|
|
111
130
|
|
|
112
131
|
## Evidence required
|
|
@@ -27,6 +27,9 @@ Route user requests safely, proportionately, and securely according to the permi
|
|
|
27
27
|
- Always route to the correct specialized agent or fail closed.
|
|
28
28
|
- Do not execute code modifications directly.
|
|
29
29
|
- Do not claim routing execution without ledger evidence.
|
|
30
|
+
- Treat `ROUTED` as non-terminal; continue through implementation and validation.
|
|
31
|
+
- Route workspace implementation to Astra, never directly to a skill-backed specialist.
|
|
32
|
+
- Printed code is not a substitute for a requested repository change.
|
|
30
33
|
|
|
31
34
|
## Allowed tools
|
|
32
35
|
- classify request
|
|
@@ -43,7 +46,8 @@ Route user requests safely, proportionately, and securely according to the permi
|
|
|
43
46
|
2. Classify intent (write/readonly/publish) and risk level.
|
|
44
47
|
3. Resolve target agent according to the permission matrix.
|
|
45
48
|
4. Log the routing event to the ledger.
|
|
46
|
-
5. Delegate
|
|
49
|
+
5. Delegate workspace implementation to Astra; pass specialist capabilities as context only.
|
|
50
|
+
6. Continue through proportional validation and resolve the delivery outcome.
|
|
47
51
|
|
|
48
52
|
## Safety gates
|
|
49
53
|
- Enforce branch gate constraints.
|
|
@@ -58,7 +62,8 @@ Output must include:
|
|
|
58
62
|
- Classification metrics
|
|
59
63
|
- Target agent resolved
|
|
60
64
|
- Safety constraints
|
|
61
|
-
- Decision:
|
|
65
|
+
- Decision: ROUTED | BLOCKED | NEEDS_CLARIFICATION
|
|
66
|
+
- Delivery outcome and test action
|
|
62
67
|
|
|
63
68
|
## Evidence required
|
|
64
69
|
- routing ledger event log
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# AI Workflow Kit quickstart
|
|
2
2
|
|
|
3
|
-
To initialize your project, run `npx ai-workflow init --profile=standard` (default) or `npx ai-workflow init --profile=full` (adds examples).
|
|
3
|
+
To initialize your project, run `npx ai-workflow init --profile=standard` (default) or `npx ai-workflow init --profile=full` (adds examples). For enforced workspace delivery, run `npx aw execute "your natural software request"` or use the OpenCode `/run` command. Atlas chooses the lowest safe proportional policies and the closest workflow profile.
|
|
4
|
+
|
|
5
|
+
Selecting Atlas directly uses the same ownership contract: Atlas routes product
|
|
6
|
+
mutations to Astra and may use specialists only as capabilities. The CLI path is
|
|
7
|
+
the authoritative control plane for programmatic gates and persisted evidence.
|
|
4
8
|
|
|
5
9
|
## Proportional Policies
|
|
6
10
|
|
|
@@ -20,6 +24,11 @@ Write-capable work never runs on `main` or `master`. Existing relevant tests/bui
|
|
|
20
24
|
- `COMPLETED_WITH_NOTES`
|
|
21
25
|
- `BLOCKED`
|
|
22
26
|
|
|
27
|
+
The structured delivery outcome distinguishes `CHANGED`,
|
|
28
|
+
`ALREADY_SATISFIED`, `READ_ONLY_RESULT`, `PREVIEW_ONLY`,
|
|
29
|
+
`NEEDS_CLARIFICATION`, and `NOT_DELIVERED`. A routing decision alone is never a
|
|
30
|
+
completed implementation.
|
|
31
|
+
|
|
23
32
|
Workflow documents are optional unless they provide lasting value or the specification policy requires them.
|
|
24
33
|
|
|
25
34
|
## Visual & Accessibility Evidence Requirements
|
|
@@ -9,13 +9,21 @@ npx @williambeto/ai-workflow doctor
|
|
|
9
9
|
|
|
10
10
|
Use `opencode.jsonc` and the generated OpenCode assets as the primary workflow interface.
|
|
11
11
|
|
|
12
|
+
For CLI-enforced branch, delivery, validation, and evidence gates, use:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx @williambeto/ai-workflow execute "<natural-language request>"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Direct Atlas sessions depend on the selected provider model following the installed agent contract. GPT-5.6 Sol is the validated direct-session model for this release. GPT-5.3 Codex Spark in medium mode is experimental because observed sessions delegated correctly but did not consistently produce a runnable, validated workspace delivery. The finalizer still blocks false success, but it cannot make an incompatible model complete the implementation.
|
|
19
|
+
|
|
12
20
|
## Codex
|
|
13
21
|
|
|
14
22
|
```bash
|
|
15
23
|
npx @williambeto/ai-workflow init --yes --codex
|
|
16
24
|
```
|
|
17
25
|
|
|
18
|
-
Review generated `.
|
|
26
|
+
Review generated `AGENTS.md`, `CODEX.md`, `.codex/skills/`, `.codex/prompts/`, and `.codex/docs/policies/`. The root `AGENTS.md` provides the primary project-level instruction contract. The `ai-workflow doctor` command will automatically validate these assets.
|
|
19
27
|
|
|
20
28
|
## Claude Code
|
|
21
29
|
|
|
@@ -33,6 +41,13 @@ npx @williambeto/ai-workflow init --yes --antigravity
|
|
|
33
41
|
|
|
34
42
|
Review `ANTIGRAVITY.md` and `.agents/`. Antigravity is supported and acts as the primary reference ecosystem for configuring and executing specialized agents and skills.
|
|
35
43
|
|
|
44
|
+
### Activating the Personas in the Antigravity IDE
|
|
45
|
+
|
|
46
|
+
To ensure the assistant assumes a specific persona (like **Atlas** for workflow routing) instead of acting as a generic assistant:
|
|
47
|
+
|
|
48
|
+
* **IDE Agent Selector**: Click the Agent selector dropdown in the Antigravity IDE sidebar and select `Atlas` (configured via `.agents/agents/atlas/agent.json`).
|
|
49
|
+
* **Slash Command Prefix**: Alternatively, start your chat prompt with the `/atlas` prefix to automatically load the orchestrator context.
|
|
50
|
+
|
|
36
51
|
## Multiple adapters
|
|
37
52
|
|
|
38
53
|
Flags may be combined, but each generated runtime increases maintenance surface. Generate only the integrations the consumer project actually uses.
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
| Runtime | Level | Generated integration | Current evidence | Known limitations |
|
|
11
11
|
| --- | --- | --- | --- | --- |
|
|
12
|
-
| OpenCode | Primary | `opencode.jsonc`, OpenCode agents, commands, and skills | init, doctor, package smoke, generated-file checks |
|
|
13
|
-
| Codex | Supported
|
|
12
|
+
| OpenCode | Primary | `opencode.jsonc`, OpenCode agents, commands, and skills | init, doctor, package smoke, generated-file checks, real GPT-5.6 Sol delivery | Direct-agent behavior depends on a validated model; use `ai-workflow execute` for CLI-enforced gates |
|
|
13
|
+
| Codex | Supported | `AGENTS.md`, `CODEX.md`, `.codex/skills/`, `.codex/prompts/` | full `ai-workflow doctor` runtime validation, e2e smoke checks | `.codex/` output requires `--codex` flag |
|
|
14
14
|
| Claude Code | Supported with limitations | `CLAUDE.md`, `.claude/rules/` | adapter/unit/structural checks and generated asset inspection | Rule loading and tool permissions depend on Claude Code configuration |
|
|
15
15
|
| Antigravity | Supported | `ANTIGRAVITY.md`, `.agents/agents/`, `.agents/skills/`, `.agents/commands/` | unit tests, validation suite, and WSL/Desktop consumer validation | Agents are only listed under `/agents` when actively running (instantiated via `invoke_subagent`) |
|
|
16
16
|
|
|
@@ -18,6 +18,17 @@
|
|
|
18
18
|
|
|
19
19
|
Compatibility levels must be based on evidence available in the release. Adapter code or generated files alone are not proof of full behavioral parity.
|
|
20
20
|
|
|
21
|
+
## OpenCode model qualification
|
|
22
|
+
|
|
23
|
+
OpenCode runtime compatibility does not imply that every provider model follows agent instructions with the same reliability.
|
|
24
|
+
|
|
25
|
+
| Model and mode | Direct Atlas status | Observed behavior |
|
|
26
|
+
| --- | --- | --- |
|
|
27
|
+
| GPT-5.6 Sol | Supported | Completed branch gate, one Astra delegation, workspace implementation, proportional validation, browser inspection, and finalization |
|
|
28
|
+
| GPT-5.3 Codex Spark, medium | Experimental | Delegated to Astra, but produced an incomplete scaffold, failed required validation, and repeated source code in the handoff; the finalizer correctly blocked false success |
|
|
29
|
+
|
|
30
|
+
The canonical enforcement path is `ai-workflow execute`. Direct Atlas sessions are supported only for model configurations that pass the release smoke suite. Experimental models may inspect or generate partial work, but their direct-session behavior is not a supported delivery guarantee.
|
|
31
|
+
|
|
21
32
|
## Promotion requirements
|
|
22
33
|
|
|
23
34
|
A runtime may be promoted only after a clean consumer test records:
|
|
@@ -18,7 +18,12 @@ A report written by an agent is not proof that a command ran. Command results mu
|
|
|
18
18
|
|
|
19
19
|
## Required evidence policy work
|
|
20
20
|
|
|
21
|
-
Persisted evidence is appropriate when traceability has lasting value. The runtime may write a structured evidence file containing branch state, changed files, command exit codes, checks, limitations, and final status.
|
|
21
|
+
Persisted evidence is appropriate when traceability has lasting value. The runtime may write a structured evidence file containing branch state, all currently changed files, the files changed by the current delivery, mutation owner, capability roles, delivery mode, delivery outcome, test action and reason, command exit codes, checks, limitations, and final status.
|
|
22
|
+
|
|
23
|
+
`changedFiles` preserves the complete dirty-workspace view used by safety checks.
|
|
24
|
+
`deliveryChangedFiles` is the delta observed from the current execution baseline
|
|
25
|
+
and is the only file set used to attribute the delivery outcome and test action.
|
|
26
|
+
Pre-existing dirty work must never be claimed as the current delivery.
|
|
22
27
|
|
|
23
28
|
The model must not manually author successful command results.
|
|
24
29
|
|
|
@@ -29,3 +34,8 @@ The model must not manually author successful command results.
|
|
|
29
34
|
- `BLOCKED`
|
|
30
35
|
|
|
31
36
|
A failed required command, protected-branch violation, missing meaningful validation, or unresolved material finding cannot be promoted to success.
|
|
37
|
+
|
|
38
|
+
`COMPLETED` does not imply a diff by itself. `CHANGED` requires an observed
|
|
39
|
+
workspace change and proportional validation. `ALREADY_SATISFIED` requires
|
|
40
|
+
explicit verification without an artificial change. Read-only and preview
|
|
41
|
+
outcomes must not claim implementation.
|
|
@@ -4,6 +4,22 @@ This document defines the shared execution contracts, quality gates, and finaliz
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## Ownership boundary
|
|
8
|
+
|
|
9
|
+
Skills and skill-backed specialist roles are capabilities, not autonomous
|
|
10
|
+
mutation owners. Atlas routes workspace implementation to Astra. Phoenix owns
|
|
11
|
+
only bounded remediation of observed findings. A specialist may provide analysis,
|
|
12
|
+
candidate content, or validation guidance to the active owner, but it must not:
|
|
13
|
+
|
|
14
|
+
- accept direct workspace-delivery ownership from Atlas;
|
|
15
|
+
- edit repository files unless Astra or Phoenix explicitly delegated that
|
|
16
|
+
bounded capability inside an authorized branch;
|
|
17
|
+
- replace a requested repository change with printed code;
|
|
18
|
+
- claim terminal workflow completion.
|
|
19
|
+
|
|
20
|
+
If the delegation does not identify the active mutation owner and delivery mode,
|
|
21
|
+
return the missing context instead of assuming ownership.
|
|
22
|
+
|
|
7
23
|
## Behavioral contract core
|
|
8
24
|
|
|
9
25
|
All executing agents and specialist roles must respect these rules:
|
|
@@ -39,6 +39,10 @@ For normal Markdown documents, use the schemas as a checklist. A document does n
|
|
|
39
39
|
| `pr-breakdown.schema.json` | Pull request breakdown shape |
|
|
40
40
|
| `handoff.schema.json` | Agent handoff shape |
|
|
41
41
|
| `validation-report.schema.json` | Validation report shape |
|
|
42
|
+
| `evidence.schema.json` | Observed delivery, validation, outcome, and test-action evidence |
|
|
43
|
+
|
|
44
|
+
In evidence artifacts, `changedFiles` is the full dirty-workspace view and
|
|
45
|
+
`deliveryChangedFiles` is the delta attributable to the current execution.
|
|
42
46
|
|
|
43
47
|
## Validation
|
|
44
48
|
|
|
@@ -35,6 +35,34 @@
|
|
|
35
35
|
"type": "string"
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
|
+
"deliveryChangedFiles": {
|
|
39
|
+
"type": "array",
|
|
40
|
+
"items": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"mutationOwner": {
|
|
45
|
+
"type": ["string", "null"],
|
|
46
|
+
"enum": ["Astra", "Phoenix", "ControlPlane", null]
|
|
47
|
+
},
|
|
48
|
+
"capabilitiesUsed": {
|
|
49
|
+
"type": "array",
|
|
50
|
+
"items": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"deliveryMode": {
|
|
55
|
+
"enum": ["workspace", "answer-only"]
|
|
56
|
+
},
|
|
57
|
+
"deliveryOutcome": {
|
|
58
|
+
"enum": ["CHANGED", "ALREADY_SATISFIED", "READ_ONLY_RESULT", "PREVIEW_ONLY", "NEEDS_CLARIFICATION", "NOT_DELIVERED"]
|
|
59
|
+
},
|
|
60
|
+
"testAction": {
|
|
61
|
+
"enum": ["reuse", "extend", "add", "none"]
|
|
62
|
+
},
|
|
63
|
+
"testReason": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
38
66
|
"status": {
|
|
39
67
|
"enum": ["COMPLETED", "COMPLETED_WITH_NOTES", "BLOCKED"]
|
|
40
68
|
},
|
|
@@ -138,5 +166,36 @@
|
|
|
138
166
|
}
|
|
139
167
|
}
|
|
140
168
|
}
|
|
141
|
-
}
|
|
169
|
+
},
|
|
170
|
+
"allOf": [
|
|
171
|
+
{
|
|
172
|
+
"if": {
|
|
173
|
+
"properties": {
|
|
174
|
+
"deliveryMode": { "const": "workspace" },
|
|
175
|
+
"deliveryOutcome": { "const": "CHANGED" }
|
|
176
|
+
},
|
|
177
|
+
"required": ["deliveryMode", "deliveryOutcome"]
|
|
178
|
+
},
|
|
179
|
+
"then": {
|
|
180
|
+
"required": ["mutationOwner", "commands"],
|
|
181
|
+
"properties": {
|
|
182
|
+
"mutationOwner": {
|
|
183
|
+
"enum": ["Astra", "Phoenix"]
|
|
184
|
+
},
|
|
185
|
+
"commands": {
|
|
186
|
+
"type": "array",
|
|
187
|
+
"minItems": 1,
|
|
188
|
+
"contains": {
|
|
189
|
+
"type": "object",
|
|
190
|
+
"required": ["kind", "status"],
|
|
191
|
+
"properties": {
|
|
192
|
+
"kind": { "not": { "const": "other" } },
|
|
193
|
+
"status": { "enum": ["PASS", "PASS_WITH_NOTES"] }
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
]
|
|
142
201
|
}
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
QualityGuard,
|
|
4
4
|
ValidationPlanner,
|
|
5
5
|
VisualVerifier
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-LD7EHAU2.js";
|
|
7
|
+
import "./chunk-H7GIKXFO.js";
|
|
8
8
|
import "./chunk-5WRI5ZAA.js";
|
|
9
9
|
|
|
10
10
|
// src/cli/commands/validate.ts
|
|
@@ -86,4 +86,4 @@ async function runValidate({
|
|
|
86
86
|
export {
|
|
87
87
|
runValidate
|
|
88
88
|
};
|
|
89
|
-
//# sourceMappingURL=validate-
|
|
89
|
+
//# sourceMappingURL=validate-F3ZH63LI.js.map
|