@codacy/verity-cli 0.31.1-experimental.be74f71 → 0.31.1-experimental.f2f59c0
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 +69 -0
- package/README.md +26 -3
- package/bin/verity.js +1364 -107
- package/data/skills/verity-setup/SKILL.md +7 -0
- package/package.json +1 -1
|
@@ -46,6 +46,13 @@ answers, the hook wiring, and a `next` list. Branch on it:
|
|
|
46
46
|
to launch a second Claude Code session on top of this one.
|
|
47
47
|
- **`blocked` is true** → a required prerequisite is missing. Show the
|
|
48
48
|
`prerequisites[].remedy` lines and stop; nothing below can work.
|
|
49
|
+
- **`artifacts.standard` is true but `artifacts.analysisConfig` is false** → this
|
|
50
|
+
project adopted a Standard rather than synthesizing one (`verity init` can pull
|
|
51
|
+
the team's Standard straight from the service), and the only missing piece is
|
|
52
|
+
the analysis config. **Do Step 2 and Step 5 only**, then `verity config push`,
|
|
53
|
+
then stop. Do NOT re-synthesize the Standard: the team already agreed one, and
|
|
54
|
+
`verity standard push` auto-versions, so writing a new one lands as the version
|
|
55
|
+
everybody is then held to.
|
|
49
56
|
- **`artifacts.verityMd` is true and the user did not pass `--force`** → already
|
|
50
57
|
configured. Say "Already configured. Run `/verity-setup --force` to
|
|
51
58
|
reconfigure." and stop.
|
package/package.json
CHANGED