@codacy/verity-cli 0.33.0-experimental.cfc86e4 → 0.33.0-experimental.d60f544

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 CHANGED
@@ -64,6 +64,49 @@ installs are untouched.
64
64
  which is the ordinary case for someone whose first Verity install *is* the
65
65
  plugin.
66
66
 
67
+ ## [0.33.0] — 2026-09-16
68
+
69
+ **Knowledge that holds across your organization's repositories now reaches every
70
+ repository — the reviewer, the agent, and you.**
71
+
72
+ - **Org knowledge.** A repository's node can be tagged into its organization.
73
+ Reviews in the organization's other repositories are told the claims that
74
+ match the change, each with where it came from (a repository you can open is
75
+ named; one you cannot is counted). Nothing is copied: the source repository
76
+ keeps its own text, and every claim can be demoted for everyone in one step.
77
+
78
+ - **It fills itself.** Every six hours a pass judges each opted-in organization's
79
+ new nodes — promote, merge into an existing claim, contradict one, or keep it
80
+ local — and refuses anything that holds code, names a repository's internals,
81
+ or is too specific to travel. Each promotion records its source node, its
82
+ signal and its reason; every refusal is counted by reason on the run. An
83
+ organization is visited only once opted in, first as a dry run you can read.
84
+
85
+ - **Your agent gets it too.** `verity memory pull` (the session-start hook runs
86
+ it) now also mirrors the organization's claims outside every checkout, at
87
+ `~/.verity/orgs/<host>/<owner>/memory/`; a claim is injected into your prompt
88
+ only when it matches the task. `verity memory org` lists them;
89
+ `verity memory demote <id> --reason "…"` takes one down for the organization.
90
+
91
+ - **The dashboard shows the map.** All repositories › Knowledge: the claims, the
92
+ repositories they came from, who disagrees, what was promoted or demoted and
93
+ by whom, and how often each claim reached a review.
94
+
95
+ - **Agents over MCP.** Connect Claude Code, Cursor, Gemini CLI and the rest to
96
+ `<service>/functions/v1/mcp` with a token minted on Account › Agents:
97
+ `list_orgs`, `search_knowledge`, `knowledge_for_task`, and a way to push back
98
+ (`mark_claim_not_applicable`, `propose_claim_demotion`). Nothing over MCP
99
+ demotes; a person does that.
100
+
101
+ - **A timed agent review at commit and push.** Off by default; a Standard turns
102
+ it on with `process_constraints.git_moment_agent: push` or `commit_and_push`.
103
+ A quote-backed downgrade needs the quote; a finding only the agent raised
104
+ blocks only once verified.
105
+
106
+ - **Reflections record themselves.** The post-task reflection no longer stops to
107
+ ask. It is stored as `source: agent` — Verity thought this, nobody checked it —
108
+ and `--confirmed` marks the words a person authored.
109
+
67
110
  ## [0.32.6] — 2026-09-14
68
111
 
69
112
  **The knowledge base is no longer committed to git.**
package/bin/verity.js CHANGED
@@ -21851,7 +21851,7 @@ function channelSilence(input) {
21851
21851
  // src/lib/cli-version.ts
21852
21852
  function cliVersion() {
21853
21853
  try {
21854
- return true ? "0.33.0-experimental.cfc86e4" : "dev";
21854
+ return true ? "0.33.0-experimental.d60f544" : "dev";
21855
21855
  } catch {
21856
21856
  return "dev";
21857
21857
  }
@@ -28452,7 +28452,7 @@ function registerInitCommand(program2) {
28452
28452
  ...telemetryChoice ? { telemetry: telemetryChoice } : {},
28453
28453
  init: {
28454
28454
  completed_at: (/* @__PURE__ */ new Date()).toISOString(),
28455
- cli_version: true ? "0.33.0-experimental.cfc86e4" : "dev"
28455
+ cli_version: true ? "0.33.0-experimental.d60f544" : "dev"
28456
28456
  }
28457
28457
  });
28458
28458
  } catch (err) {
@@ -29367,8 +29367,8 @@ function registerTelemetryCommands(program2) {
29367
29367
  }
29368
29368
 
29369
29369
  // src/cli.ts
29370
- program.name("verity").description("CLI for Verity quality gate service").version("0.33.0-experimental.cfc86e4").option("--token <token>", "Override authentication token").option("--service-url <url>", "Override service URL").option("--verbose", "Log HTTP requests/responses to stderr").hook("preAction", async (_thisCommand, actionCommand) => {
29371
- installStderrLog(actionCommand.name(), process.argv.slice(2), "0.33.0-experimental.cfc86e4");
29370
+ program.name("verity").description("CLI for Verity quality gate service").version("0.33.0-experimental.d60f544").option("--token <token>", "Override authentication token").option("--service-url <url>", "Override service URL").option("--verbose", "Log HTTP requests/responses to stderr").hook("preAction", async (_thisCommand, actionCommand) => {
29371
+ installStderrLog(actionCommand.name(), process.argv.slice(2), "0.33.0-experimental.d60f544");
29372
29372
  setUserNamedServiceUrl(program.opts().serviceUrl);
29373
29373
  try {
29374
29374
  await foldLegacyLocalCredential();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codacy/verity-cli",
3
- "version": "0.33.0-experimental.cfc86e4",
3
+ "version": "0.33.0-experimental.d60f544",
4
4
  "description": "CLI for Verity quality gate service",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://verity.md",