vigiles 14.10.3 → 14.12.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/.claude-plugin/marketplace.json +4 -0
- package/README.md +2 -0
- package/dist/audit-report.template.html +22 -22
- package/dist/audit-score.js +51 -4
- package/dist/cli.js +214 -51
- package/dist/core/adopt.js +43 -12
- package/dist/core/compile.js +13 -11
- package/dist/core/generate-types.js +144 -21
- package/dist/core/hook-block-ineffective.d.ts +0 -11
- package/dist/core/hook-block-ineffective.js +21 -2
- package/dist/core/linters.d.ts +79 -3
- package/dist/core/linters.js +417 -4
- package/dist/core/markdown.d.ts +13 -0
- package/dist/core/markdown.js +52 -0
- package/dist/core/refs.js +3 -7
- package/dist/core/skill-resources.js +76 -39
- package/dist/core/spec.d.ts +1 -1
- package/dist/core/types.d.ts +10 -0
- package/dist/core/validate.d.ts +17 -0
- package/dist/core/validate.js +58 -1
- package/dist/leaderboard.js +32 -1
- package/dist/plugin-loader.js +50 -3
- package/dist/scan-core.d.ts +29 -1
- package/dist/scan-core.js +84 -5
- package/dist/scan-files.js +57 -12
- package/dist/scan.d.ts +10 -0
- package/dist/scan.js +26 -5
- package/dist/segment.js +5 -8
- package/dist/setup-plan.d.ts +50 -2
- package/dist/setup-plan.js +101 -6
- package/dist/share-link.d.ts +37 -0
- package/dist/share-link.js +55 -0
- package/dist/test-coverage.js +5 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -212,6 +212,8 @@ npx vigiles init # sets up the typed spec for structural rules (non-destructiv
|
|
|
212
212
|
# ~/.claude/, not your repo). On Codex, skills install globally too.
|
|
213
213
|
```
|
|
214
214
|
|
|
215
|
+
**Already have a harness, or a non-JS repo?** `npx vigiles init --ci-only` sets up just the CI integrity gate — nothing installed, zero conflict. **[When to use gate vs full →](docs/agent-setup.md#non-interactive-setup-agents--ci)**
|
|
216
|
+
|
|
215
217
|
Interactive in a terminal, non-interactive for agents/CI (or `--yes`). **Works with Claude Code and Codex** — vigiles verifies `CLAUDE.md` and `AGENTS.md` the same way. **[Codex setup →](docs/harnesses.md)**
|
|
216
218
|
|
|
217
219
|
**Adoption is smooth: one command, then your agent does the rest.** `init` installs the **skills and hooks**, so a plain-English ask does the work — no specs to hand-write, no hooks to wire:
|