@andespindola/brainlink 0.1.0-beta.2 → 0.1.0-beta.4
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/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/docs/RELEASE.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.2
|
|
4
|
+
|
|
5
|
+
- Added MCP installation guidance for direct server configuration and local client stores.
|
|
6
|
+
- Documented MCP vault allowlisting with `BRAINLINK_ALLOWED_VAULTS`.
|
|
7
|
+
- Aligned the documented MCP tool list with the current server tools.
|
|
8
|
+
- Updated release documentation for the beta package line.
|
|
9
|
+
|
|
10
|
+
## 0.1.0-beta.0
|
|
11
|
+
|
|
12
|
+
- Promoted the package to the beta prerelease channel.
|
|
13
|
+
- Added built-in MCP stdio server distribution through `brainlink-mcp`.
|
|
14
|
+
- Added agent namespaces, auto-indexing on writes and file ingestion flows.
|
|
15
|
+
- Added S3-compatible bucket vault support and weighted graph relationships.
|
|
16
|
+
|
|
3
17
|
## 0.1.0-alpha.0
|
|
4
18
|
|
|
5
19
|
- Added local-first Markdown vault indexing.
|
package/README.md
CHANGED
|
@@ -860,7 +860,7 @@ Detailed notes:
|
|
|
860
860
|
|
|
861
861
|
## Beta Scope
|
|
862
862
|
|
|
863
|
-
`0.1.0-beta
|
|
863
|
+
The `0.1.0-beta` line is intended to stabilize the local-first memory loop:
|
|
864
864
|
|
|
865
865
|
- Markdown as durable memory.
|
|
866
866
|
- SQLite FTS plus local embeddings and semantic buckets as rebuildable retrieval index.
|
package/docs/RELEASE.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Brainlink releases are built from the CLI package. Do not publish until the package name, npm account and version are confirmed.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Beta Release Checklist
|
|
6
6
|
|
|
7
7
|
1. Confirm `package.json` name, version, repository, license and bin entries.
|
|
8
8
|
2. Run `npm install` from a clean checkout when dependencies changed.
|
|
@@ -51,9 +51,9 @@ The preferred path is the `Publish npm` GitHub Actions workflow:
|
|
|
51
51
|
- GitHub Release `published`: runs checks, pack smoke, then publishes to npm with provenance.
|
|
52
52
|
- Manual `workflow_dispatch`: runs a dry run by default. Disable `dry_run` only for an intentional manual publish.
|
|
53
53
|
- Manual `workflow_dispatch` accepts an optional `dist_tag` override. Use `latest` only when the default npm install command should resolve to that version.
|
|
54
|
-
- Prerelease versions publish under their prerelease dist-tag, for example `0.1.0-
|
|
54
|
+
- Prerelease versions publish under their prerelease dist-tag, for example `0.1.0-beta.1` publishes with `--tag beta`.
|
|
55
55
|
|
|
56
|
-
On `main`, the publish job checks npm before publishing. If the version already exists, it automatically bumps the package inside the runner to the next available version before checks, packing and publishing. For example, `0.1.0-
|
|
56
|
+
On `main`, the publish job checks npm before publishing. If the version already exists, it automatically bumps the package inside the runner to the next available version before checks, packing and publishing. For example, `0.1.0-beta.4` becomes `0.1.0-beta.5`.
|
|
57
57
|
|
|
58
58
|
The automatic bump is intentionally not pushed back to `main`. The branch stays protected, and npm remains the source of truth for the latest published package version.
|
|
59
59
|
|
package/package.json
CHANGED