@buildinternet/releases 0.13.0 → 0.14.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 +142 -0
- package/package.json +11 -7
package/README.md
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
# Releases CLI
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@buildinternet/releases)
|
|
4
|
+
[](https://github.com/buildinternet/releases-cli/actions/workflows/release.yml)
|
|
5
|
+
[](https://github.com/buildinternet/releases-cli/actions/workflows/test.yml)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
|
|
8
|
+
Changelog registry for AI agents and developers. A lean HTTP client for [releases.sh](https://releases.sh) — search and browse release notes from GitHub, RSS/Atom/JSON feeds, and product changelog pages without any local infrastructure.
|
|
9
|
+
|
|
10
|
+
The CLI talks to the hosted registry at `api.releases.sh`. Reader commands work out of the box with no configuration.
|
|
11
|
+
|
|
12
|
+
> **Admin access is currently closed beta.** `releases admin …` commands require an API key, and API keys are not self-serve yet — the hosted registry doesn't expose a public signup flow for them. If you'd like early access, open an issue and we'll get in touch. Everything below the install section assumes reader-only use unless stated otherwise.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
### Homebrew (macOS / Linux)
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
brew install buildinternet/tap/releases
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### npm
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm install -g @buildinternet/releases
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or run without installing:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx @buildinternet/releases search "react"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Shell installer
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
curl -fsSL https://releases.sh/install | bash
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Downloads the matching platform binary from npm. Respects `RELEASED_INSTALL_DIR` (default: `/usr/local/bin`).
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
releases search "authentication"
|
|
46
|
+
releases latest next-js
|
|
47
|
+
releases list --category ai
|
|
48
|
+
releases show vercel # org, product, or source
|
|
49
|
+
releases org overview vercel # full AI-generated overview for an org
|
|
50
|
+
releases stats
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Every reader command supports `--json` for machine-readable output. `org show` includes a short overview preview (with a stale warning when more than 30 days old); `org overview <slug>` prints the full body.
|
|
54
|
+
|
|
55
|
+
### MCP
|
|
56
|
+
|
|
57
|
+
Point Claude Code (or any MCP-compatible agent) at the hosted MCP server:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npx mcp-remote https://mcp.releases.sh/mcp
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Or run a local stdio bridge that proxies the same tools to `api.releases.sh`:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
releases admin mcp serve
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Claude Code plugin
|
|
70
|
+
|
|
71
|
+
Install from the marketplace manifest in this repo:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
/plugin marketplace add buildinternet/releases-cli
|
|
75
|
+
/plugin install releases@releases
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Or point at a local clone for development:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
claude --plugin-dir plugins/claude/releases
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
The plugin bundles:
|
|
85
|
+
|
|
86
|
+
- **Hosted MCP connection** to `mcp.releases.sh` — search, lookup, and changelog slicing tools.
|
|
87
|
+
- **Auto-trigger skills**:
|
|
88
|
+
- `releases-mcp` — activates on user questions about releases, changelogs, or breaking changes ("what's new in Next.js 15?").
|
|
89
|
+
- `releases-cli` — activates when a user mentions or runs the `releases` CLI.
|
|
90
|
+
- `finding-changelogs`, `managing-sources`, `parsing-changelogs`, `analyzing-releases`, `classify-media-relevance`, `seeding-playbooks` — operator playbooks for onboarding and maintaining sources (admin access required to act on them — see the callout at the top of this README).
|
|
91
|
+
- **Agents** — `discovery` (finds and onboards sources) and `worker` (executes fetches).
|
|
92
|
+
- **Commands** — `/releases <product> [query]` for manual lookups.
|
|
93
|
+
|
|
94
|
+
> Claude Code plugins install atomically — there is no Claude Code–native flow for grabbing a single skill without the rest of the plugin. See the next section for an agent-neutral install path.
|
|
95
|
+
|
|
96
|
+
### Standalone skills (any agent)
|
|
97
|
+
|
|
98
|
+
The bundled skills are also available as a standalone package. Install them into any Claude Code / Codex / Cursor / OpenCode workspace using the [`skills`](https://github.com/vercel-labs/skills) CLI, which reads the top-level `skills/` directory of this repo:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
npx skills add buildinternet/releases-cli
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Use this when you only want the skill behavior (auto-triggering on release/CLI questions) without also registering the hosted MCP connection, agents, and `/releases` command that the plugin provides.
|
|
105
|
+
|
|
106
|
+
## Environment
|
|
107
|
+
|
|
108
|
+
Nothing is required for reader access. For admin operations (closed beta — see above):
|
|
109
|
+
|
|
110
|
+
- `RELEASED_API_KEY` — Bearer token for write endpoints. Required for any `releases admin …` command that mutates state. Keys are not self-serve right now.
|
|
111
|
+
- `RELEASED_API_URL` — Override the default `https://api.releases.sh` endpoint (useful for staging).
|
|
112
|
+
- `RELEASED_TELEMETRY_DISABLED=1` — Opt out of anonymous usage pings. `DO_NOT_TRACK=1` is also honored.
|
|
113
|
+
|
|
114
|
+
Copy `.env.example` to `.env` to configure these locally.
|
|
115
|
+
|
|
116
|
+
## Development
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
bun install
|
|
120
|
+
bun src/index.ts search "next" # run from source
|
|
121
|
+
bun run build # compile binary to dist/releases
|
|
122
|
+
bun run typecheck # tsc --noEmit
|
|
123
|
+
bun test # unit tests
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
The project is a Bun workspace. The three shared packages (`@buildinternet/releases-core`, `-lib`, `-skills`) are published from this repo alongside the CLI.
|
|
127
|
+
|
|
128
|
+
### Releasing
|
|
129
|
+
|
|
130
|
+
Changesets handle versioning:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
bun run changeset # write a bump entry for your PR
|
|
134
|
+
bun run changeset:version # apply pending bumps (runs in CI)
|
|
135
|
+
bun run changeset:publish # publish to npm (runs in CI)
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
The eight `@buildinternet/releases*` packages (5 binaries + 3 shared libraries) live in a fixed group so they bump together.
|
|
139
|
+
|
|
140
|
+
## License
|
|
141
|
+
|
|
142
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Changelog indexer and registry for AI agents and developers",
|
|
5
5
|
"bin": {
|
|
6
6
|
"releases": "bin/releases"
|
|
7
7
|
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"prepack": "cp ../../README.md ./README.md"
|
|
10
|
+
},
|
|
8
11
|
"files": [
|
|
9
|
-
"bin/releases"
|
|
12
|
+
"bin/releases",
|
|
13
|
+
"README.md"
|
|
10
14
|
],
|
|
11
15
|
"optionalDependencies": {
|
|
12
|
-
"@buildinternet/releases-darwin-arm64": "0.
|
|
13
|
-
"@buildinternet/releases-darwin-x64": "0.
|
|
14
|
-
"@buildinternet/releases-linux-x64": "0.
|
|
15
|
-
"@buildinternet/releases-linux-arm64": "0.
|
|
16
|
+
"@buildinternet/releases-darwin-arm64": "0.14.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.14.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.14.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.14.0"
|
|
16
20
|
},
|
|
17
21
|
"keywords": [
|
|
18
22
|
"changelog",
|
|
@@ -21,7 +25,7 @@
|
|
|
21
25
|
"ai"
|
|
22
26
|
],
|
|
23
27
|
"homepage": "https://releases.sh",
|
|
24
|
-
"license": "
|
|
28
|
+
"license": "MIT",
|
|
25
29
|
"engines": {
|
|
26
30
|
"node": ">=18"
|
|
27
31
|
}
|