paqad-ai 0.2.3 → 0.3.0
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/README.md +4 -1
- package/dist/cli/index.js +3039 -735
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +772 -1
- package/dist/index.js +5370 -2953
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/runtime/base/skills/spec-quality-review/SKILL.md +56 -0
- package/runtime/base/skills/spec-quality-review/agents/openai.yaml +4 -0
- package/runtime/base/skills/spec-quality-review/references/spec-defect-checklist.md +8 -0
- package/runtime/capabilities/coding/stacks/go-web/rules/architecture.md +7 -0
- package/runtime/capabilities/coding/stacks/go-web/rules/documentation/guide.md +6 -0
- package/runtime/capabilities/coding/stacks/go-web/rules/environment.md +6 -0
- package/runtime/capabilities/coding/stacks/go-web/rules/foundation/guide.md +6 -0
- package/runtime/capabilities/coding/stacks/go-web/rules/performance/guide.md +7 -0
- package/runtime/capabilities/coding/stacks/go-web/rules/security/guide.md +7 -0
- package/runtime/capabilities/coding/stacks/rust-web/rules/architecture.md +7 -0
- package/runtime/capabilities/coding/stacks/rust-web/rules/documentation/guide.md +6 -0
- package/runtime/capabilities/coding/stacks/rust-web/rules/environment.md +6 -0
- package/runtime/capabilities/coding/stacks/rust-web/rules/foundation/guide.md +6 -0
- package/runtime/capabilities/coding/stacks/rust-web/rules/performance/guide.md +7 -0
- package/runtime/capabilities/coding/stacks/rust-web/rules/security/guide.md +7 -0
package/README.md
CHANGED
|
@@ -390,11 +390,14 @@ Spec verification and test-evidence tooling.
|
|
|
390
390
|
```bash
|
|
391
391
|
paqad-ai compliance extract --spec docs/features/spec-compliance-verification.md
|
|
392
392
|
paqad-ai compliance check
|
|
393
|
+
paqad-ai compliance review docs/features/spec-compliance-verification.md
|
|
393
394
|
paqad-ai compliance skeleton --out tests/compliance-skeletons
|
|
394
395
|
paqad-ai compliance doctor
|
|
396
|
+
paqad-ai compliance boundary
|
|
397
|
+
paqad-ai compliance patterns
|
|
395
398
|
```
|
|
396
399
|
|
|
397
|
-
Use it to persist an obligation index, check tests for explicit `@obligation` evidence, generate failing Vitest skeletons,
|
|
400
|
+
Use it to persist an obligation index, run spec-quality review, check tests for explicit `@obligation` evidence, generate failing Vitest skeletons, validate index/report health, and run boundary/pattern gap tooling before CI or review.
|
|
398
401
|
|
|
399
402
|
### `paqad-ai refresh`
|
|
400
403
|
|