@buildinternet/releases 0.31.0 → 0.33.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 +4 -22
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -62,6 +62,8 @@ Every command that takes an org / product / source / release identifier accepts
|
|
|
62
62
|
|
|
63
63
|
Every reader command supports `--json` for machine-readable output. List commands emit a `{ items, pagination }` envelope — parse with `jq '.items[]'`, and check `.pagination.hasMore` before assuming you've seen every row. Nested `metadata` fields are returned as parsed objects (no `fromjson` needed). `org get` includes a short overview preview (with a stale warning when more than 30 days old); `org overview <identifier>` prints the full body.
|
|
64
64
|
|
|
65
|
+
Tabular reader commands fit themselves to the terminal width when stdout is a TTY (column truncation with `…`) and switch to bare TSV when piped — no headers, no color, no truncation — so `releases org list | cut -f2` works without parsing ANSI. `COLUMNS=<n>` overrides the detected width. For complete, parseable output prefer `--json`.
|
|
66
|
+
|
|
65
67
|
### MCP
|
|
66
68
|
|
|
67
69
|
Point Claude Code (or any MCP-compatible agent) at the hosted MCP server:
|
|
@@ -123,29 +125,9 @@ Nothing is required for reader access. For admin operations (closed beta — see
|
|
|
123
125
|
|
|
124
126
|
Copy `.env.example` to `.env` to configure these locally.
|
|
125
127
|
|
|
126
|
-
##
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
bun install
|
|
130
|
-
bun src/index.ts search "next" # run from source
|
|
131
|
-
bun run build # compile binary to dist/releases
|
|
132
|
-
bun run typecheck # tsc --noEmit
|
|
133
|
-
bun test # unit tests
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
The project is a Bun workspace. Two shared packages (`@buildinternet/releases-lib`, `@buildinternet/releases-skills`) are published from this repo alongside the CLI. `@buildinternet/releases-core` is published from the private monorepo and consumed here as a regular npm dependency.
|
|
137
|
-
|
|
138
|
-
### Releasing
|
|
139
|
-
|
|
140
|
-
Changesets handle versioning:
|
|
141
|
-
|
|
142
|
-
```bash
|
|
143
|
-
bun run changeset # write a bump entry for your PR
|
|
144
|
-
bun run changeset:version # apply pending bumps (runs in CI)
|
|
145
|
-
bun run changeset:publish # publish to npm (runs in CI)
|
|
146
|
-
```
|
|
128
|
+
## Contributing
|
|
147
129
|
|
|
148
|
-
|
|
130
|
+
Build, test, and release instructions live in [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
149
131
|
|
|
150
132
|
## Exit codes
|
|
151
133
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
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.33.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.33.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.33.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.33.0",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.33.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|