Skip to content

Commit 2c104e2

Browse files
authored
Merge pull request #390 from TrueNine/dev
Release v2026.10503.119
2 parents 01076fe + 05e5a29 commit 2c104e2

27 files changed

Lines changed: 160 additions & 426 deletions

File tree

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ members = [
2727
]
2828

2929
[workspace.package]
30-
version = "2026.10502.118"
30+
version = "2026.10503.119"
3131
edition = "2024"
3232
rust-version = "1.88"
3333
license = "AGPL-3.0-only"

README.md

Lines changed: 0 additions & 71 deletions
This file was deleted.

SECURITY.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

cli/local-tests/tests/opencode_smoke.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ fn local_opencode_global_md_url_interpolation() {
281281
}
282282

283283
#[test]
284-
fn local_opencode_project_content_includes_workspace_memory() {
284+
fn local_opencode_global_memory_stays_out_of_project_agents_md() {
285285
let fixture = IsolatedOpencodeFixture::new();
286286

287287
fixture
@@ -295,12 +295,12 @@ fn local_opencode_project_content_includes_workspace_memory() {
295295
let global_content = fs::read_to_string(fixture.global_agents_path()).unwrap();
296296

297297
assert!(
298-
project_content.len() >= global_content.len(),
299-
"project .opencode/AGENTS.md should be at least as long as global content"
298+
global_content.contains("TrueNine"),
299+
"global ~/.config/opencode/AGENTS.md should contain global memory content"
300300
);
301301
assert!(
302-
project_content.contains("TrueNine"),
303-
"project .opencode/AGENTS.md should contain global memory content"
302+
!project_content.contains("TrueNine"),
303+
"project .opencode/AGENTS.md should not contain global memory content"
304304
);
305305
assert!(
306306
project_content.contains("Project root instructions"),

cli/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-darwin-arm64",
3-
"version": "2026.10502.118",
3+
"version": "2026.10503.119",
44
"description": "tnmsc native binary for macOS arm64",
55
"author": "TrueNine",
66
"license": "AGPL-3.0-only",

cli/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-darwin-x64",
3-
"version": "2026.10502.118",
3+
"version": "2026.10503.119",
44
"description": "tnmsc native binary for macOS x64",
55
"author": "TrueNine",
66
"license": "AGPL-3.0-only",

cli/npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-linux-arm64-gnu",
3-
"version": "2026.10502.118",
3+
"version": "2026.10503.119",
44
"description": "tnmsc native binary for Linux arm64 (glibc)",
55
"author": "TrueNine",
66
"license": "AGPL-3.0-only",

cli/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@truenine/memory-sync-cli-linux-x64-gnu",
3-
"version": "2026.10502.118",
3+
"version": "2026.10503.119",
44
"description": "tnmsc native binary for Linux x64 (glibc)",
55
"author": "TrueNine",
66
"license": "AGPL-3.0-only",

0 commit comments

Comments
 (0)