@buildinternet/releases 0.15.0 → 0.16.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 +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ releases org overview vercel # full AI-generated overview for an org
|
|
|
50
50
|
releases stats
|
|
51
51
|
```
|
|
52
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.
|
|
53
|
+
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 show` includes a short overview preview (with a stale warning when more than 30 days old); `org overview <slug>` prints the full body.
|
|
54
54
|
|
|
55
55
|
### MCP
|
|
56
56
|
|
|
@@ -123,7 +123,7 @@ bun run typecheck # tsc --noEmit
|
|
|
123
123
|
bun test # unit tests
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
-
The project is a Bun workspace.
|
|
126
|
+
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.
|
|
127
127
|
|
|
128
128
|
### Releasing
|
|
129
129
|
|
|
@@ -135,7 +135,7 @@ bun run changeset:version # apply pending bumps (runs in CI)
|
|
|
135
135
|
bun run changeset:publish # publish to npm (runs in CI)
|
|
136
136
|
```
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
Seven `@buildinternet/releases*` packages (5 binaries + `-lib` + `-skills`) live in a fixed group so they bump together. `@buildinternet/releases-core` is published independently from the monorepo.
|
|
139
139
|
|
|
140
140
|
## License
|
|
141
141
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Changelog indexer and registry for AI agents and developers",
|
|
5
5
|
"bin": {
|
|
6
6
|
"releases": "bin/releases"
|
|
@@ -13,10 +13,10 @@
|
|
|
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.
|
|
16
|
+
"@buildinternet/releases-darwin-arm64": "0.16.1",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.16.1",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.16.1",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.16.1"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"changelog",
|