@buildinternet/releases-skills 0.63.0 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buildinternet/releases-skills",
3
- "version": "0.63.0",
3
+ "version": "0.64.0",
4
4
  "description": "Agent skills bundled with the Releases CLI. Markdown playbooks for changelog ingest, discovery, and analysis.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -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)**.
@@ -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