@jigyasudham/veto 1.2.0 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +10 -4
  2. package/dist/cli.js +21 -18
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # veto
2
2
 
3
- > **50 agents. 34 tools. 3 AIs. Self-learning. Zero extra cost.**
3
+ > **50 agents. 41 tools. 3 AIs. Self-learning. Zero extra cost.**
4
4
 
5
- An MCP server that runs locally on your machine, plugs into Claude Code, Codex CLI, and Gemini CLI using your existing subscriptions — giving every AI a council of specialist agents, persistent cross-platform memory, a self-learning router, reactive file watching, sequential agent pipelines, and the ability to say no to bad decisions.
5
+ An MCP server that runs locally on your machine, plugs into Claude Code, Codex CLI, and Gemini CLI using your existing subscriptions — giving every AI a council of specialist agents, persistent cross-platform memory, a self-learning router, live usage tracking, CI/CD pipeline gates, live documentation fetching, and the ability to say no to bad decisions.
6
6
 
7
7
  ---
8
8
 
@@ -116,7 +116,7 @@ VS Code uses `"servers"` with `"type": "stdio"`:
116
116
 
117
117
  ---
118
118
 
119
- ## MCP Tools (34)
119
+ ## MCP Tools (41)
120
120
 
121
121
  | Category | Tools |
122
122
  |---|---|
@@ -130,6 +130,9 @@ VS Code uses `"servers"` with `"type": "stdio"`:
130
130
  | **Memory** | `veto_memory_store` · `veto_memory_search` · `veto_memory_delete` · `veto_project_map_update` · `veto_project_map_get` · `veto_pattern_store` · `veto_patterns_list` · `veto_memory_export` · `veto_memory_import` |
131
131
  | **Learning** | `veto_record_outcome` · `veto_learning_stats` · `veto_learning_apply` |
132
132
  | **Handoff** | `veto_handoff` · `veto_continue` · `veto_platform_setup` |
133
+ | **Intelligence** | `veto_docs_fetch` · `veto_context_status` · `veto_task_parse` |
134
+ | **Observability** | `veto_usage_status` · `veto_audit_log` · `veto_health` |
135
+ | **CI/CD** | `veto_ci_gate` |
133
136
  | **Plugins** | `veto_plugins` |
134
137
 
135
138
  ## MCP Resources
@@ -171,7 +174,7 @@ npx @jigyasudham/veto help # Same help output, no install needed
171
174
  npx @jigyasudham/veto status # Check status from any machine
172
175
  ```
173
176
 
174
- `veto help` shows all CLI commands, all 34 MCP tool names, MCP Resources, and MCP Prompts — the full reference in one place.
177
+ `veto help` shows all CLI commands, all 41 MCP tool names, MCP Resources, and MCP Prompts — the full reference in one place.
175
178
 
176
179
  ---
177
180
 
@@ -346,6 +349,9 @@ Machine B → veto_memory_import → veto_session_restore
346
349
  | 10 — Watch, Workflow, Explain, Plugins | ✅ Complete | v0.10.0 |
347
350
  | 11 — Smarter Council + Predictive Routing + Auto Project Map | ✅ Complete | v0.11.0 |
348
351
  | 12 — CLI Subcommands + Diff Review | ✅ Complete | v1.0.0 |
352
+ | 13 — Developer Intelligence + Auto Docs | ✅ Complete | v1.1.0 |
353
+ | 14 — Observability + Usage Stats + Audit Log | ✅ Complete | v1.2.0 |
354
+ | 15 — CI/CD Pipeline Gates | ✅ Complete | v1.2.0 |
349
355
 
350
356
  ---
351
357
 
package/dist/cli.js CHANGED
@@ -5,7 +5,7 @@ process.removeAllListeners('warning');
5
5
  import { mkdirSync, existsSync, readFileSync, writeFileSync, readdirSync, statSync } from 'node:fs';
6
6
  import { join, dirname, extname, resolve } from 'node:path';
7
7
  import { homedir } from 'node:os';
8
- const VERSION = '1.0.0';
8
+ const VERSION = '1.2.0';
9
9
  const VETO_DIR = join(homedir(), '.veto');
10
10
  const HOME = homedir();
11
11
  const c = {
@@ -25,7 +25,7 @@ function printBanner() {
25
25
  console.log(c.bold(c.cyan(' ╚████╔╝ ███████╗ ██║ ╚██████╔╝')));
26
26
  console.log(c.bold(c.cyan(' ╚═══╝ ╚══════╝ ╚═╝ ╚═════╝')));
27
27
  console.log('');
28
- console.log(c.dim(` 50 agents. 33 tools. 3 AIs. Self-learning. Zero extra cost.`));
28
+ console.log(c.dim(` 50 agents. 41 tools. 3 AIs. Self-learning. Zero extra cost.`));
29
29
  console.log(c.dim(` v${VERSION}`));
30
30
  console.log('');
31
31
  }
@@ -333,7 +333,7 @@ async function patternsCommand() {
333
333
  }
334
334
  function helpCommand() {
335
335
  console.log('');
336
- console.log(c.bold(c.cyan(' veto')) + c.dim(` v${VERSION}`) + c.dim(' — 50 agents. 34 tools. 3 AIs. Self-learning. Zero extra cost.'));
336
+ console.log(c.bold(c.cyan(' veto')) + c.dim(` v${VERSION}`) + c.dim(' — 50 agents. 41 tools. 3 AIs. Self-learning. Zero extra cost.'));
337
337
  console.log('');
338
338
  console.log(c.bold(' CLI Commands'));
339
339
  console.log(c.dim(' ─────────────────────────────────────────────────────'));
@@ -344,22 +344,25 @@ function helpCommand() {
344
344
  console.log(` ${c.cyan('veto patterns')} ${c.dim('[prefix]')} List learned agent/routing patterns`);
345
345
  console.log(` ${c.cyan('veto help')} Show this help`);
346
346
  console.log('');
347
- console.log(c.bold(' MCP Tools (34)'));
347
+ console.log(c.bold(' MCP Tools (41)'));
348
348
  console.log(c.dim(' ─────────────────────────────────────────────────────'));
349
- console.log(` ${c.dim('Session')} veto_status · veto_session_save · veto_session_restore · veto_sessions_list`);
350
- console.log(` ${c.dim('Router')} veto_route_task · veto_rate_status`);
351
- console.log(` ${c.dim('Council')} veto_council_debate`);
352
- console.log(` ${c.dim('Agents')} veto_agent_plan · veto_execute_parallel · veto_explain`);
353
- console.log(` ${c.dim('Review')} veto_code_review · veto_security_scan · veto_secrets_scan · veto_diff_review`);
354
- console.log(` ${c.dim('Pipeline')} veto_workflow`);
355
- console.log(` ${c.dim('Watch')} veto_watch · veto_watch_poll · veto_watch_stop`);
356
- console.log(` ${c.dim('Memory')} veto_memory_store · veto_memory_search · veto_memory_delete`);
357
- console.log(` veto_project_map_update · veto_project_map_get`);
358
- console.log(` veto_pattern_store · veto_patterns_list`);
359
- console.log(` veto_memory_export · veto_memory_import`);
360
- console.log(` ${c.dim('Learning')} veto_record_outcome · veto_learning_stats · veto_learning_apply`);
361
- console.log(` ${c.dim('Handoff')} veto_handoff · veto_continue · veto_platform_setup`);
362
- console.log(` ${c.dim('Plugins')} veto_plugins`);
349
+ console.log(` ${c.dim('Session')} veto_status · veto_session_save · veto_session_restore · veto_sessions_list`);
350
+ console.log(` ${c.dim('Router')} veto_route_task · veto_rate_status`);
351
+ console.log(` ${c.dim('Council')} veto_council_debate`);
352
+ console.log(` ${c.dim('Agents')} veto_agent_plan · veto_execute_parallel · veto_explain`);
353
+ console.log(` ${c.dim('Review')} veto_code_review · veto_security_scan · veto_secrets_scan · veto_diff_review`);
354
+ console.log(` ${c.dim('Pipeline')} veto_workflow`);
355
+ console.log(` ${c.dim('Watch')} veto_watch · veto_watch_poll · veto_watch_stop`);
356
+ console.log(` ${c.dim('Memory')} veto_memory_store · veto_memory_search · veto_memory_delete`);
357
+ console.log(` veto_project_map_update · veto_project_map_get`);
358
+ console.log(` veto_pattern_store · veto_patterns_list`);
359
+ console.log(` veto_memory_export · veto_memory_import`);
360
+ console.log(` ${c.dim('Learning')} veto_record_outcome · veto_learning_stats · veto_learning_apply`);
361
+ console.log(` ${c.dim('Handoff')} veto_handoff · veto_continue · veto_platform_setup`);
362
+ console.log(` ${c.dim('Intelligence')} veto_docs_fetch · veto_context_status · veto_task_parse`);
363
+ console.log(` ${c.dim('Observability')} veto_usage_status · veto_audit_log · veto_health`);
364
+ console.log(` ${c.dim('CI/CD')} veto_ci_gate`);
365
+ console.log(` ${c.dim('Plugins')} veto_plugins`);
363
366
  console.log('');
364
367
  console.log(c.bold(' MCP Resources'));
365
368
  console.log(c.dim(' ─────────────────────────────────────────────────────'));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jigyasudham/veto",
3
- "version": "1.2.0",
4
- "description": "50 agents. 34 tools. 3 AIs. Self-learning. Zero extra cost.",
3
+ "version": "1.2.1",
4
+ "description": "50 agents. 41 tools. 3 AIs. Self-learning. Zero extra cost.",
5
5
  "keywords": [
6
6
  "mcp",
7
7
  "ai",