vigiles 14.11.0 → 14.12.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/.claude-plugin/marketplace.json +4 -0
- package/README.md +3 -1
- package/dist/audit-report.template.html +16 -16
- package/dist/audit-score.js +25 -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.d.ts +1 -6
- package/dist/core/generate-types.js +7 -271
- package/dist/core/hook-block-ineffective.d.ts +0 -11
- package/dist/core/hook-block-ineffective.js +21 -2
- package/dist/core/linter-adapter.d.ts +77 -0
- package/dist/core/linter-adapter.js +3 -0
- package/dist/core/linters.d.ts +92 -4
- package/dist/core/linters.js +1159 -254
- 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 +9 -1
- package/dist/core/spec.js +25 -0
- 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/skills/linter-docs/SKILL.md +7 -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:
|
|
@@ -240,7 +242,7 @@ Targets Claude Code and Codex out of the box, or [your own harness](docs/authori
|
|
|
240
242
|
- **Isn't this just a markdown linter?** No — it checks whether your instruction file is _true_ (every path/script/symbol/rule exists and is enabled), then tests and measures your harness. A style linter can't do any of that.
|
|
241
243
|
- **Does anything leave my machine?** No. `audit` and `lint` read your local repo — no upload, no account, no server. (`eval` is the only step that calls a model, on your own Claude subscription; the browser demo only reads a public repo you name via GitHub's API.)
|
|
242
244
|
- **What do I have to change to adopt it?** Almost nothing. Plain markdown works with zero new files, rules run in your existing linter, and the agent edits the specs for you. The typed spec is opt-in, only for structural checks a linter can't express — like TS's `strict` ([why?](docs/faq.md#why-are-the-strongest-guarantees-opt-in-not-the-default)).
|
|
243
|
-
- **Non-JS repo?** `npx vigiles lint` verifies your CLAUDE.md or AGENTS.md with no install (Ruff/Clippy/
|
|
245
|
+
- **Non-JS repo?** `npx vigiles lint` verifies your CLAUDE.md or AGENTS.md with no install (Ruff/Clippy/golangci-lint/detekt/… too — 11 linters across Python, Rust, Go, Kotlin, Java, Ruby, CSS).
|
|
244
246
|
|
|
245
247
|
**[Full FAQ →](docs/faq.md)**
|
|
246
248
|
|