Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions RELEASE_EVIDENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,36 @@ Latest implementation and adoption results are in the
[dogfood execution ledger](docs/DOGFOOD-EXECUTION.md). The dated snapshots below
remain historical evidence; internal pilot acceptance is separate from G0–G4.

## 0.4.1 shipment checks, 23 September 2026

A `repository_packet` follow-up from a model-free reading of the 0.4.0 cost
screen's recorded sessions
([results](docs/experiments/screen-pro-040-20260923/RESULTS.md)):

- A build over the byte cap now returns, instead of a bare error, each
requested TypeScript or JavaScript file's top-level declarations and class
methods with their line ranges, and no source text, so the caller can
request one block. It is still reported as an error.
- The text form prints the packet caveat in full on the first packet of a
session and a one-line reference after that. JSON output is unchanged.
- The server instructions and the documented project instruction say not to
re-read packet lines with other tools.

`@forgesworn/context` is unchanged apart from its version, kept in step with
the tools package.

Local Node 24.21.0 checks from `npm ci --ignore-scripts` passed 452 tests,
independent packed-package smoke, navigation stdio smoke, 22 scale tests and
the 10k postings probe. Both unchanged benchmark gates passed with
required-source recall 1.0: raw evidence 36.35x, navigation 360.81x (the
baseline is this repository's own source, so the figures move with it).

Measured benefit: none shown. The 0.4.0 cost screen on a DeepSeek V4 Pro
executor did not pass: 1.09 times plain tools' executor input and 1.22 times
Graphify's. These changes were found on the same locked tasks and have not
been measured on an executor. No token, subscription or cash saving is
claimed. Reconnect existing MCP servers after upgrading.

## 0.4.0 shipment checks, 23 September 2026

Local navigation gains two tools and loses most of the friction recorded in
Expand Down
4 changes: 2 additions & 2 deletions docs/GETTING-STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ matching core version:
mkdir context-install
cd context-install
npm init -y
npm install --ignore-scripts /absolute/path/to/forgesworn-context-0.4.0.tgz \
/absolute/path/to/forgesworn-context-tools-0.4.0.tgz
npm install --ignore-scripts /absolute/path/to/forgesworn-context-0.4.1.tgz \
/absolute/path/to/forgesworn-context-tools-0.4.1.tgz
```

For that installation, use
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/context-tools/THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Third-party notices

These notices accompany `@forgesworn/context-tools@0.4.0`. The package itself is
These notices accompany `@forgesworn/context-tools@0.4.1`. The package itself is
MIT licensed, Copyright (c) 2026 TheCryptoDonkey; see `LICENSE`.

Runtime dependencies are installed separately by the package manager, not
Expand All @@ -9,9 +9,9 @@ notices below cover direct runtime dependencies; retain the licence files
from transitive dependencies as well when redistributing an installation or
bundle. Dependency versions and source links refer to this release.

## @forgesworn/context@0.4.0
## @forgesworn/context@0.4.1

Declared licence: MIT. Source package: https://www.npmjs.com/package/@forgesworn/context/v/0.4.0
Declared licence: MIT. Source package: https://www.npmjs.com/package/@forgesworn/context/v/0.4.1

```text
MIT License
Expand Down
4 changes: 2 additions & 2 deletions packages/context-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@forgesworn/context-tools",
"version": "0.4.0",
"version": "0.4.1",
"description": "Local CLI and MCP tools for Z1P Core encrypted context",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -36,7 +36,7 @@
"test": "vitest run --config vitest.config.ts"
},
"dependencies": {
"@forgesworn/context": "0.4.0",
"@forgesworn/context": "0.4.1",
"@modelcontextprotocol/sdk": "1.30.0",
"@noble/hashes": "1.8.0",
"ignore": "7.0.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/context/THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Third-party notices

These notices accompany `@forgesworn/context@0.4.0`. The package itself is
These notices accompany `@forgesworn/context@0.4.1`. The package itself is
MIT licensed, Copyright (c) 2026 TheCryptoDonkey; see `LICENSE`.

Runtime dependencies are installed separately by the package manager, not
Expand Down
2 changes: 1 addition & 1 deletion packages/context/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@forgesworn/context",
"version": "0.4.0",
"version": "0.4.1",
"description": "Z1P Core portable signed and encrypted context collections",
"license": "MIT",
"type": "module",
Expand Down
Loading