@buildinternet/releases-skills 0.52.0 → 0.53.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
|
@@ -205,12 +205,12 @@ releases admin org update vercel --category developer-tools
|
|
|
205
205
|
releases admin org link vercel --platform github --handle vercel
|
|
206
206
|
releases admin org tag add vercel react serverless
|
|
207
207
|
releases admin org alias add anthropic claude.ai claude.com
|
|
208
|
-
releases admin org
|
|
208
|
+
releases admin source fetch --org vercel # fetch all of an org's active sources
|
|
209
209
|
releases admin org delete vercel # reversible tombstone soft-delete
|
|
210
210
|
releases admin org delete vercel --hard --yes # permanent purge + FK cascade
|
|
211
211
|
```
|
|
212
212
|
|
|
213
|
-
`org refresh`
|
|
213
|
+
There is no `org refresh` command. To refresh an org: fetch its sources with `releases admin source fetch --org <slug>` (see **Fetch** above), then regenerate the overview with the `overview` subcommands — `releases admin overview inputs <slug>` → generate the body → `releases admin overview update <slug>` (or `releases admin overview batch` for a server-side sweep). Overview generation is agent-driven; no single command does both.
|
|
214
214
|
|
|
215
215
|
`org delete` soft-deletes by default (a reversible tombstone). `--hard` purges the row and cascade-deletes every dependent source, release, fetch-log, changelog file/chunk, summary, media asset, and webhook subscription; it prompts for a slug typeback unless `--yes` is passed (required in non-TTY/scripted contexts). You can pass a slug or an `org_…` ID either way — the CLI resolves to the typed ID the destructive path requires.
|
|
216
216
|
|
|
@@ -223,6 +223,8 @@ releases admin product create "Next.js" --org vercel --url https://nextjs.org
|
|
|
223
223
|
releases admin product create "Stripe Node" --org stripe --kind sdk
|
|
224
224
|
releases admin product list vercel
|
|
225
225
|
releases admin product list openai --kind sdk # filter by taxonomy
|
|
226
|
+
releases admin product list # every product, all orgs (adds an Org column)
|
|
227
|
+
releases admin product list --kind sdk --json # cross-org kind audit (CLI↔MCP list_catalog parity)
|
|
226
228
|
releases admin product update nextjs --description "React framework for production"
|
|
227
229
|
releases admin product update stripe-node --kind sdk # classify
|
|
228
230
|
releases admin product update stripe-node --no-kind # clear
|