@buildinternet/releases-skills 0.67.3 → 0.69.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
|
@@ -251,6 +251,19 @@ releases admin org delete vercel --hard --yes # permanent purge + FK
|
|
|
251
251
|
|
|
252
252
|
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.
|
|
253
253
|
|
|
254
|
+
### Stub-tier orgs
|
|
255
|
+
|
|
256
|
+
A stub org carries identity + declared release locations but no sources (buildinternet/releases#1947):
|
|
257
|
+
|
|
258
|
+
```bash
|
|
259
|
+
releases admin org create-stub "Example" --domain example.com --location '{"url":"https://example.com/changelog"}'
|
|
260
|
+
releases admin org create-stub "Example" --from-file locations.json # locations array or full body JSON
|
|
261
|
+
releases admin org create-stub-from-domain example.com --dry-run # from /.well-known/releases.json
|
|
262
|
+
releases admin org promote example --dry-run # materialize locations → sources, tier → tracked
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
`--location` is repeatable and takes one JSON locator per flag (`url` / `feed` / `github` / `appstore` / `file`, plus optional `title` / `canonical`). `promote` is idempotent — an already-tracked org is a no-op.
|
|
266
|
+
|
|
254
267
|
`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.
|
|
255
268
|
|
|
256
269
|
## Products
|