Skip to content

Commit 97ad142

Browse files
committed
release(v2.1.1): add veris-core bin alias for npx compatibility
npx veris-core resolves bin by package name. Previously the package exposed only 'veris' and 'veris-mcp', so 'npx veris-core .' failed with 'could not determine executable to run'. Adding 'veris-core' as a bin alias (pointing to dist/cli.js) makes every README command work directly. Sync version bump across package.json, skill.json, mcp-server.json, src/cli.ts.
1 parent 3dc3b39 commit 97ad142

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

mcp-server.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://modelcontextprotocol.io/schemas/server/v1.json",
33
"name": "veris",
44
"displayName": "Veris",
5-
"version": "2.1.0",
5+
"version": "2.1.1",
66
"description": "Behavioral Verification Infrastructure — MCP-native verification intelligence layer. 17 tools for workflow grouping, drift detection, counterfactual reasoning, adversarial probe generation, and confidence modeling.",
77
"license": "MIT",
88
"homepage": "https://github.com/vighriday/Veris",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "veris-core",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Veris — Behavioral Verification Infrastructure. MCP-native verification intelligence layer for autonomous coding agents.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"bin": {
88
"veris": "dist/cli.js",
9+
"veris-core": "dist/cli.js",
910
"veris-mcp": "dist/mcp-index.js"
1011
},
1112
"files": [

skill.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://skills.sh/schema/v1.json",
33
"name": "veris",
44
"displayName": "Veris — Behavioral Verification Infrastructure",
5-
"version": "2.1.0",
5+
"version": "2.1.1",
66
"description": "MCP-native verification intelligence for autonomous coding agents. Builds a behavioral graph of any TypeScript/JavaScript repo, clusters nodes into semantic workflows (Authentication, Billing, Checkout, Caching, Queue, etc.), runs real git-worktree diffs, scores blast radius and dependency fragility with explanations, detects behavioral drift across runs, generates concrete adversarial probes (concurrency, retry storms, replay, idempotency, cache stampede), and produces an interactive single-file dashboard plus 17 MCP tools. Local-first. Zero cloud. MIT.",
77
"license": "MIT",
88
"homepage": "https://github.com/vighriday/Veris",

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface CliArgs {
3030
command: 'analyze' | 'init' | 'help' | 'doctor' | 'schema' | 'mcp' | 'version';
3131
}
3232

33-
const VERIS_VERSION = '2.1.0';
33+
const VERIS_VERSION = '2.1.1';
3434

3535
function parseArgs(argv: string[]): CliArgs {
3636
const args = argv.slice(2);

src/mcp-index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env node
12
import { VerisMcpServer } from './mcp/McpServer';
23

34
const server = new VerisMcpServer();

0 commit comments

Comments
 (0)