@codacy/verity-cli 0.28.0 → 0.28.1-experimental.4da2503
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/README.md +11 -1
- package/bin/verity.js +6562 -3308
- package/data/skills/verity-analyze/SKILL.md +2 -1
- package/data/skills/verity-setup/SKILL.md +30 -19
- package/package.json +1 -5
package/README.md
CHANGED
|
@@ -57,7 +57,17 @@ No re-setup needed: your token, Standard, and run history all carry over.
|
|
|
57
57
|
| `verity status --history` | Show recent run history with findings summary |
|
|
58
58
|
| `verity run <run-id>` | Show findings for a specific past run; `--json` for machine-readable output |
|
|
59
59
|
| **Auth & Config** | |
|
|
60
|
-
| `verity
|
|
60
|
+
| `verity login` | Log in once with GitHub — grants access to every repository you can write to |
|
|
61
|
+
| `verity login --force` | Re-authenticate and refresh your grants (also how stale grants heal) |
|
|
62
|
+
| `verity auth register` | Register a single project (per-repo token; superseded by `verity login`) |
|
|
63
|
+
| `verity token create --name <name>` | Mint a service token for CI (`--expires <days>` optional) |
|
|
64
|
+
| `verity token list` | List this repository's tokens (ids and metadata only) |
|
|
65
|
+
| `verity token revoke <id>` | Revoke a token by id |
|
|
66
|
+
| `verity sessions list` | List your logins — device, last use, expiry (logins expire after 90 days) |
|
|
67
|
+
| `verity sessions revoke <id>` | Revoke one login by session id |
|
|
68
|
+
| `verity logout` | Sign out on this machine |
|
|
69
|
+
| `verity logout --others` | Sign out every OTHER machine (e.g. a lost laptop) |
|
|
70
|
+
| `verity logout --all` | Sign out everywhere, including here |
|
|
61
71
|
| `verity hooks install` | Wire Claude Code hooks |
|
|
62
72
|
| `verity standard push` | Upload project Standard |
|
|
63
73
|
| **Knowledge** | |
|