@buildinternet/releases 0.37.0 → 0.38.1
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 +29 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -45,6 +45,23 @@ Downloads the matching platform binary from npm. Respects `RELEASED_INSTALL_DIR`
|
|
|
45
45
|
|
|
46
46
|
Every version publishes signed archives for each platform on the [Releases page](https://github.com/buildinternet/releases-cli/releases) — `releases-{darwin-arm64,darwin-x64,linux-arm64,linux-x64}.gz` and `releases-windows-x64.zip`, each with a matching `.sha256` and a top-level `checksums.txt`. Useful for air-gapped installs, version pinning, or platforms where npm and Homebrew aren't an option.
|
|
47
47
|
|
|
48
|
+
### Shell completion
|
|
49
|
+
|
|
50
|
+
Once the matching tap formula update rolls out, Homebrew will install bash, zsh, and fish completions automatically. Until then, and for all non-Homebrew install paths, run:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
releases completion install # auto-detects $SHELL
|
|
54
|
+
releases completion install zsh # or pick explicitly
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
`install` writes to the conventional location (`~/.zsh/completions/_releases`, `~/.local/share/bash-completion/completions/releases`, or `~/.config/fish/completions/releases.fish`) and prints any rc-file lines you may need to add. The bash and fish paths honor `$XDG_DATA_HOME` and `$XDG_CONFIG_HOME` respectively, so the file lands wherever those point if set. Pass `--path <file>` to override the destination. To pipe the script somewhere yourself:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
releases completion zsh > /path/to/_releases
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Set `RELEASES_NO_COMPLETION_HINT=1` to silence the first-run completion hint.
|
|
64
|
+
|
|
48
65
|
## Usage
|
|
49
66
|
|
|
50
67
|
```bash
|
|
@@ -107,13 +124,22 @@ The plugin bundles:
|
|
|
107
124
|
|
|
108
125
|
### Standalone skills (any agent)
|
|
109
126
|
|
|
110
|
-
The bundled skills are also available as a standalone package.
|
|
127
|
+
The bundled skills are also available as a standalone package. The fastest way to install them is via the CLI:
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
releases skills install # detected agent, current project
|
|
131
|
+
releases skills install --global # user-wide instead of project
|
|
132
|
+
releases skills install --agent cursor # override detection
|
|
133
|
+
releases skills install releases-mcp # just the user-facing lookup skill
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
This is a thin wrapper around the [`skills`](https://github.com/vercel-labs/skills) CLI from the open agent-skills ecosystem (`vercel-labs/skills`), which auto-detects ~50 supported agents (Claude Code, Codex, Cursor, OpenCode, Gemini CLI, Windsurf, GitHub Copilot, …) and writes to the right per-agent skills directory. If you'd rather skip the `releases` CLI entirely, the underlying command is:
|
|
111
137
|
|
|
112
138
|
```bash
|
|
113
139
|
npx skills add buildinternet/releases-cli
|
|
114
140
|
```
|
|
115
141
|
|
|
116
|
-
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.
|
|
142
|
+
Use this path 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. Skills are symlinked by default, so re-running `releases skills install` (or `npx skills update releases-cli`) refreshes everything atomically.
|
|
117
143
|
|
|
118
144
|
## Environment
|
|
119
145
|
|
|
@@ -122,6 +148,7 @@ Nothing is required for reader access. For admin operations (closed beta — see
|
|
|
122
148
|
- `RELEASED_API_KEY` — Bearer token for write endpoints. Required for any `releases admin …` command that mutates state. Keys are not self-serve right now.
|
|
123
149
|
- `RELEASED_API_URL` — Override the default `https://api.releases.sh` endpoint (useful for staging).
|
|
124
150
|
- `RELEASED_TELEMETRY_DISABLED=1` — Opt out of anonymous usage pings. `DO_NOT_TRACK=1` is also honored.
|
|
151
|
+
- `RELEASES_DISABLE_SKILL_UPDATE_CHECK=1` — Silence the "skills are behind, run `releases skills install`" stderr nag that fires (at most once per 24h) when the GitHub `skills/` tree has moved since your last install.
|
|
125
152
|
|
|
126
153
|
Copy `.env.example` to `.env` to configure these locally.
|
|
127
154
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.1",
|
|
4
4
|
"description": "Changelog indexer and registry for AI agents and developers",
|
|
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.38.1",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.38.1",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.38.1",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.38.1",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.38.1"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|