@buildinternet/releases-skills 0.59.0 → 0.60.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.59.0",
3
+ "version": "0.60.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",
@@ -130,7 +130,7 @@ Key fields in output:
130
130
 
131
131
  ## Checking Existing Sources
132
132
 
133
- Search with a domain or company name query to check what sources already exist. CLI: `releases list --query <text> --json`. Typed tool: `list_sources` with query param. Use as a starting point when you don't know where a company's changelogs live.
133
+ Search with a domain or company name query to check what sources already exist. CLI: `releases list --query <text> --json`. Typed tool: `list_catalog` (filter `kind: "source"`). Use as a starting point when you don't know where a company's changelogs live.
134
134
 
135
135
  ## Pre-checks (automated)
136
136
 
@@ -13,7 +13,7 @@ Operations can be performed via CLI commands or typed MCP/agent tools. Use which
13
13
 
14
14
  | Operation | CLI | Typed tool |
15
15
  |-----------|-----|------------|
16
- | List sources | `releases list [slug] --json [--org <org>] [--query <text>] [--has-feed] [--category <c>] [--compact] [--limit <n>] [--page <n>]` | `list_catalog` (filter `kind: "source"` to exclude products); `list_sources` is a deprecated alias |
16
+ | List sources | `releases list [slug] --json [--org <org>] [--query <text>] [--has-feed] [--category <c>] [--compact] [--limit <n>] [--page <n>]` | `list_catalog` (filter `kind: "source"` to exclude products) |
17
17
  | Add source | `releases admin source create <name> --url <url> [--type <type>] [--org <org>] [--feed-url <url>] [--primary]` | `manage_source` action "add" with name, url, type, organization, feed_url, **is_primary** (type auto-detected if omitted; only pass is_primary=true when the source is the org's primary changelog — see "Primary Sources") |
18
18
  | Add App Store source | `releases admin source create-appstore <url-or-id> [--platform ios\|macos] [--org <slug>] [--product <slug>] [--storefront <code>]` | _(no typed tool yet — CLI only)_ |
19
19
  | Add video source | `releases admin source create-video <channel-or-playlist-url> --org <slug> [--product <slug>]` | _(no typed tool yet — CLI only)_ |
@@ -21,7 +21,7 @@ Operations can be performed via CLI commands or typed MCP/agent tools. Use which
21
21
  | Remove source | `releases admin source delete <slug> [--ignore --reason <reason>]` | `manage_source` action "remove" with identifier |
22
22
  | Fetch releases | `releases admin source fetch <slug> [--dry-run] [--max <n>]` | `manage_source` action "fetch" with identifier |
23
23
  | Get latest releases | `releases tail [slug] --json [--org <org>]` | `get_latest_releases` with source, organization, limit params |
24
- | Search releases | `releases search <query> --json` | `search` with `type: ["releases"]`; `search_releases` is a deprecated alias |
24
+ | Search releases | `releases search <query> --json` | `search` with `type: ["releases"]` |
25
25
  | Evaluate URL | `releases admin discovery evaluate <url> --json` | `evaluate_url` with url param |
26
26
  | Add org | `releases admin org create <name> [--domain <d>] [--description <t>] [--category <c>] [--tags <t1,t2>]` | `manage_org` action "add" with name, domain, description, category, tags |
27
27
  | Edit org | `releases admin org update <slug> [--category <c>]` | `manage_org` action "edit" with identifier, category |