@codacy/verity-cli 0.31.1-experimental.be74f71 → 0.31.2

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
@@ -5,6 +5,33 @@ All notable changes to Verity are documented here. This project follows
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ **Verity ships as a Claude Code plugin.** `/plugin marketplace add codacy/verity`
9
+ then `/plugin install verity@codacy` gives a working gate with nothing else to
10
+ install — the plugin carries the CLI as a pinned dependency, and Claude Code
11
+ installs and updates it for you.
12
+
13
+ ### 🔌 The plugin
14
+
15
+ - **Eight skills, namespaced** — `/verity:analyze`, `/verity:status`,
16
+ `/verity:learn`, `/verity:memory`, `/verity:reflect` are available to Claude
17
+ directly; `/verity:setup`, `/verity:insights` and `/verity:feedback` are yours
18
+ to invoke and are not offered to the model at all. The whole plugin adds about
19
+ 500 tokens to a session (`claude plugin details verity`).
20
+ - **All six hooks come from the plugin**, so nothing is written to your
21
+ `.claude/settings.json`.
22
+ - **One gate decision per turn.** A project carrying both the plugin and the
23
+ hooks `verity init` used to write no longer reviews each turn twice: when the
24
+ plugin is present it owns the hooks, and the settings.json copy stands down.
25
+ `verity init` detects the plugin and removes the duplicate wiring.
26
+
27
+ ### ⚙️ Git-moment gating moved into the project
28
+
29
+ `verity guard` now reads `.verity/config.json` instead of taking its moments from
30
+ which hook was wired, because a plugin's hooks are the same for everyone. **The
31
+ default gates nothing** — set it with `verity config git-moments commit,push`, or
32
+ answer the question in `verity init`. An explicit `--on` still wins, so existing
33
+ installs are untouched.
34
+
8
35
  **Setup is one command.** `verity init` and `/verity-setup` were two half-flows
9
36
  that overlapped — and the overlap was not harmless: init wired the Stop hook,
10
37
  then the skill reconciled the hooks to a selection it asked for afterwards,