veriskit 0.5.1 → 0.6.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/CHANGELOG.md +6 -0
- package/README.md +21 -0
- package/bin/veris +1 -1
- package/dist/cli.d.ts +9 -0
- package/dist/cli.js +2982 -0
- package/dist/index.d.ts +190 -0
- package/dist/index.js +1100 -2620
- package/package.json +14 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0 — 2026-07-14
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- `veriskit-mcp`, a Model Context Protocol server exposing VerisKit over stdio with seven tools (doctor, scan, plan, log, evidence_verify, verify, affected), publishable to the MCP registry. The `veriskit` CLI keeps its two runtime dependencies; the MCP SDK lives only in `veriskit-mcp`.
|
|
7
|
+
- `veriskit` now has a programmatic API (`verifyProject`, `affectedProject`, and the core detect/graph/history/evidence functions), so it can be used as a library.
|
|
8
|
+
|
|
3
9
|
## 0.5.1 — 2026-07-13
|
|
4
10
|
|
|
5
11
|
### Changed
|
package/README.md
CHANGED
|
@@ -271,6 +271,27 @@ veris badge # writes .veris/badge.json
|
|
|
271
271
|

|
|
272
272
|
```
|
|
273
273
|
|
|
274
|
+
## Use with AI agents (MCP)
|
|
275
|
+
|
|
276
|
+
VerisKit ships an MCP server, `veriskit-mcp`, so an agent can verify a change
|
|
277
|
+
and read evidence as tool calls. It exposes seven tools: `veris_doctor`,
|
|
278
|
+
`veris_scan`, `veris_plan`, `veris_log`, and `veris_evidence_verify` (read-only),
|
|
279
|
+
plus `veris_verify` and `veris_affected`, which run the project's test tooling.
|
|
280
|
+
|
|
281
|
+
The `veriskit` CLI keeps its two runtime dependencies; the MCP server is a
|
|
282
|
+
separate package that uses the official MCP SDK. Point your MCP client at it:
|
|
283
|
+
|
|
284
|
+
```json
|
|
285
|
+
{
|
|
286
|
+
"mcpServers": {
|
|
287
|
+
"veriskit": { "command": "npx", "args": ["-y", "veriskit-mcp"] }
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
Every tool returns the honest three-state verdict; `veris_verify` and
|
|
293
|
+
`veris_affected` execute your test runners and write evidence under `.veris/`.
|
|
294
|
+
|
|
274
295
|
## Browser tests
|
|
275
296
|
|
|
276
297
|
VerisKit can run your Playwright suite as part of the verdict. It is opt-in, so
|
package/bin/veris
CHANGED