@buildinternet/releases 0.47.0 → 0.49.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/README.md +16 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -76,6 +76,7 @@ releases get vercel # org, product, or source
|
|
|
76
76
|
releases get org_abc123 # typed IDs are accepted
|
|
77
77
|
releases org overview vercel # full AI-generated overview for an org
|
|
78
78
|
releases stats
|
|
79
|
+
releases submit https://acme.dev/changelog # suggest a source for the registry
|
|
79
80
|
releases feedback "great tool, here's an idea…" # send feedback to the maintainers
|
|
80
81
|
```
|
|
81
82
|
|
|
@@ -103,6 +104,21 @@ releases feedback "draft" --dry-run --json # preview the payl
|
|
|
103
104
|
|
|
104
105
|
With no message argument in an interactive terminal, `feedback` prompts for the text (and an optional contact); otherwise pass it inline or pipe via stdin. `--type` accepts `bug`, `idea`, or `other`. Maintainers with admin access review submissions via `releases admin feedback list` (filter by `--type` / `--status`, `--include-archived`, paginate with `--cursor`) and triage them: `releases admin feedback triage <id> --status closed`, `releases admin feedback archive <id>` (`--undo` to restore), and `releases admin feedback delete <id>` (permanent — type the id to confirm, or pass `--yes`).
|
|
105
106
|
|
|
107
|
+
### Submit a source
|
|
108
|
+
|
|
109
|
+
Suggest a changelog or release-notes URL for the registry — the same review queue the [web submit form](https://releases.sh/submit) feeds. No API key or account required:
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
releases submit https://acme.dev/changelog # one-shot
|
|
113
|
+
releases submit acme.dev/changelog # scheme optional — https:// is assumed
|
|
114
|
+
releases submit # prompt for the URL (interactive)
|
|
115
|
+
echo "https://acme.dev/releases" | releases submit # pipe from stdin
|
|
116
|
+
releases submit https://acme.dev/changelog --note "GitHub: acme/acme" --contact you@example.com
|
|
117
|
+
releases submit https://acme.dev/changelog --dry-run --json # preview the payload, send nothing
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Index pages, changelogs, GitHub releases, and feed URLs are all ideal. `--note` carries extra context (product name, GitHub repo, feed quirks) and `--contact` is an optional email to notify once it's reviewed. With no URL argument in an interactive terminal, `submit` prompts for it (and the optional note/contact); otherwise pass it inline or pipe via stdin. Maintainers with admin access review the queue via `releases admin recommendations list` (filter by `--status` / `--type`, `--include-archived`, paginate with `--cursor`) and triage them: `releases admin recommendations triage <id> --status closed`, `releases admin recommendations archive <id>` (`--undo` to restore), and `releases admin recommendations delete <id>` (permanent — type the id to confirm, or pass `--yes`).
|
|
121
|
+
|
|
106
122
|
### MCP
|
|
107
123
|
|
|
108
124
|
Point Claude Code (or any MCP-compatible agent) at the hosted MCP server:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.0",
|
|
4
4
|
"description": "The changelog & release-notes registry for developers and AI agents",
|
|
5
5
|
"bin": {
|
|
6
6
|
"releases": "bin/releases"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@buildinternet/releases-darwin-arm64": "0.
|
|
17
|
-
"@buildinternet/releases-darwin-x64": "0.
|
|
18
|
-
"@buildinternet/releases-linux-x64": "0.
|
|
19
|
-
"@buildinternet/releases-linux-arm64": "0.
|
|
20
|
-
"@buildinternet/releases-windows-x64": "0.
|
|
16
|
+
"@buildinternet/releases-darwin-arm64": "0.49.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.49.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.49.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.49.0",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.49.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|