@buildinternet/releases-skills 0.62.1 → 0.64.0
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/package.json
CHANGED
|
@@ -62,6 +62,24 @@ Two commands built for agents specifically:
|
|
|
62
62
|
- There is **no** `summary` or `compare` command in this CLI, and **no** AI summarization tools on the hosted MCP (`summarize_changes` / `compare_products` do not exist). To summarize or compare, read each entity with `releases get` / `releases tail` (or `--json`) and synthesize the answer yourself.
|
|
63
63
|
- Don't reach for `admin` commands to do reads — every read above is keyless. `admin` is only for registry maintenance and requires a key (below).
|
|
64
64
|
|
|
65
|
+
## Signed-in user commands (`releases login`)
|
|
66
|
+
|
|
67
|
+
After `releases login` (device flow) or with a stored `relu_` key, you can manage your own account state — no admin key required:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
releases follow vercel # follow an org or product
|
|
71
|
+
releases following # list follows
|
|
72
|
+
releases feed # personalized release timeline
|
|
73
|
+
|
|
74
|
+
releases webhook list # your outbound webhook subscriptions
|
|
75
|
+
releases webhook add --scope follows --url https://your.app/hook
|
|
76
|
+
releases webhook add --org vercel --url https://your.app/hook
|
|
77
|
+
releases webhook test <id> # enqueue a signed test delivery
|
|
78
|
+
releases webhook verify --key … # local HMAC check (no auth)
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Org-scoped webhooks: up to 10 per account (`--org`, optional `--source`, `--product`, `--type feature|rollup`). Follows-scoped: one webhook that tracks your current follow graph (real-time sibling to `feed` + digest email); optional `--type` narrows delivery. `webhook edit` can update filters (`--clear-source`, `--clear-product`, `--clear-type`). Signing keys are shown once on `add` / `rotate-secret`. Operator/admin webhooks (`releases admin webhook …`) are a separate root-key surface.
|
|
82
|
+
|
|
65
83
|
## Admin surface (invite-only — reads never need it)
|
|
66
84
|
|
|
67
85
|
`releases admin <noun> <verb>` manages the registry (create/update sources, orgs, products; fetch; discovery; policies). It requires `RELEASES_API_KEY`, and **keys are not self-serve** — there's no public signup. Admin commands fail fast at startup without a key, so don't retry them unauthenticated, and don't fall back to them for read tasks. If a user asks how to get a key, tell them access is currently invite-only and point them at the project repo; don't invent a signup URL. Full operator reference: **[references/admin.md](references/admin.md)**.
|
|
@@ -264,8 +264,13 @@ releases admin product adopt nextjs --into vercel # convert an org into a prod
|
|
|
264
264
|
releases admin release get rel_abc123
|
|
265
265
|
releases admin release update rel_abc123 --title "Fixed title" --version "v2.0.1"
|
|
266
266
|
releases admin release delete rel_abc123
|
|
267
|
+
releases admin release delete rel_a rel_b rel_c # bulk hard-delete
|
|
268
|
+
releases admin release delete --file ids.txt # one rel_… per line (- for stdin)
|
|
267
269
|
releases admin release suppress rel_abc123 --reason "promotional content"
|
|
270
|
+
releases admin release suppress rel_a rel_b --reason "noise" # bulk suppress
|
|
271
|
+
releases admin release suppress --file ids.txt --reason spam
|
|
268
272
|
releases admin release unsuppress rel_abc123
|
|
273
|
+
releases admin release unsuppress rel_a rel_b # bulk unsuppress
|
|
269
274
|
```
|
|
270
275
|
|
|
271
276
|
Suppressed releases are hidden from all read paths (search, latest, stats, API) but preserved for audit.
|
|
@@ -159,6 +159,26 @@ releases submit https://acme.dev/changelog --dry-run --json # preview the payloa
|
|
|
159
159
|
|
|
160
160
|
`--note` carries extra context (product name, GitHub repo, feed quirks); `--contact` is an optional email to notify once it's reviewed. With no URL argument in an interactive terminal, `submit` prompts for the URL (and the optional note/contact); otherwise pass it inline or pipe via stdin. Index pages, changelogs, GitHub releases, and feed URLs are all ideal.
|
|
161
161
|
|
|
162
|
+
## Signed-in account commands (`releases login`)
|
|
163
|
+
|
|
164
|
+
These act on **your** account via `/v1/me/*` — sign in first (`releases login` or `RELEASES_API_KEY`):
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
releases follow vercel
|
|
168
|
+
releases following
|
|
169
|
+
releases feed
|
|
170
|
+
|
|
171
|
+
releases webhook list
|
|
172
|
+
releases webhook add --scope follows --url https://your.app/hook
|
|
173
|
+
releases webhook add --org vercel --url https://your.app/hook
|
|
174
|
+
releases webhook add --org vercel --product next-js --type feature --url https://your.app/hook
|
|
175
|
+
releases webhook edit <id> --type rollup
|
|
176
|
+
releases webhook test <id>
|
|
177
|
+
releases webhook verify --key <hex> --signature … --timestamp … --body-file -
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
`webhook verify` is local (no auth). Admin webhooks (`releases admin webhook …`) are a separate root-key operator surface.
|
|
181
|
+
|
|
162
182
|
## Agent self-discovery
|
|
163
183
|
|
|
164
184
|
```bash
|