Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
35d03ec
fix: build release binaries before packaging smoke tests in CI
TrueNine Apr 24, 2026
211066d
refactor: extract shared code to sdk, fix local test framework bugs
TrueNine Apr 25, 2026
e771664
chore: release 2026.10425.10151
TrueNine Apr 25, 2026
6994354
fix: missing std::fs import in MCP packaging smoke test, cargo fmt
TrueNine Apr 25, 2026
661bb37
fix: merge main into dev, accept formatting
TrueNine Apr 25, 2026
35b4678
fix: improve Missing compiled prompt error with file path and add reg…
TrueNine Apr 25, 2026
17efc57
refactor: rename FastCommand to SlashCommand and update related struc…
TrueNine Apr 27, 2026
07db0b6
refactor: apply code review fixes (7/10 → hardened)
TrueNine Apr 29, 2026
3c14c01
fix(transformer): require basename to contain '.' before simplifying …
SAY-5 Apr 30, 2026
84e639e
test(transformer): add regression coverage for issue 249
TrueNine Apr 30, 2026
ba28a19
test(cleanup): cover issue 250 slash normalization
TrueNine Apr 30, 2026
679e083
test(cleanup): cover issue 251 bang glob detection
TrueNine Apr 30, 2026
a8c5d4a
cleanup(cleanup): drop unused _include_reserved_workspace_content_roo…
SAY-5 Apr 30, 2026
c4cd977
test(localized_reader): cover issue 253 grouping behavior
TrueNine Apr 30, 2026
d69f2ec
refactor(repositories): hoist assert_no_residual_module_syntax to pro…
SAY-5 Apr 30, 2026
37b7ecf
docs(prompt_artifact): attribute helper hoist to issue 254
TrueNine Apr 30, 2026
20d5826
refactor(repositories): hoist detect_project_name_conflicts to series…
SAY-5 Apr 30, 2026
2a63b1e
docs(series_conflict): attribute helper hoist to issue 255
TrueNine Apr 30, 2026
d5ed899
chore(deps): bump the cargo-workspace group with 4 updates
dependabot[bot] Apr 27, 2026
372e1aa
style: cargo fmt fixes across workspace
TrueNine Apr 30, 2026
55f1433
chore: remove accidentally committed temp files
TrueNine Apr 30, 2026
57c4d2e
perf(logger/sink): drop per-log String clone
SAY-5 Apr 29, 2026
d42ac74
cleanup(localized_reader): drop unused `seen` HashSet
SAY-5 Apr 29, 2026
d3fb826
fix(path_blocking): close TOCTOU between exists() and symlink_metadata()
SAY-5 Apr 29, 2026
b4dde5e
fix(cleanup): log WalkDir entry errors instead of silently skipping
SAY-5 Apr 29, 2026
57d352c
fix(dependency_resolver): map JSON parse errors to InvalidInput variant
SAY-5 Apr 29, 2026
2a7e724
fix(config): surface parent-mkdir failure before write_config attempt
SAY-5 Apr 29, 2026
d8d765f
refactor(project_prompt): replace is_some/is_none + unwrap with let-S…
SAY-5 Apr 29, 2026
fb1efbb
fix(git_discovery): collect all nested modules subtrees, not just the…
SAY-5 Apr 29, 2026
c7967f1
fix(logger): bound flush() wait with timeout to prevent caller deadlo…
SAY-5 Apr 30, 2026
0e82c05
fix(mcp): route assemble-npm output to stderr to keep stdout protocol…
SAY-5 Apr 30, 2026
a42dee9
style: cargo fmt fixes
TrueNine Apr 30, 2026
642d012
chore: remove integrate-tests directories and update references
TrueNine Apr 30, 2026
8cfe571
docs(technical-details): add testing strategy and cross-platform desi…
TrueNine Apr 30, 2026
b08636d
feat: enhance skill management with category support
TrueNine May 1, 2026
b9e7810
refactor: consolidate resolve_effective_home_dir into shared module t…
TrueNine May 1, 2026
b3d9919
fix: ensure log level flags are mutually exclusive to prevent conflicts
TrueNine May 1, 2026
b4c7125
docs: update README and SECURITY.md for improved clarity on asset man…
TrueNine May 2, 2026
5051696
feat: implement clearSavedTimer for managing timeout references and a…
TrueNine May 2, 2026
37e4538
feat: enhance package assembly process to report copy errors and hand…
TrueNine May 2, 2026
951e0c4
style: format assertions and binary metadata checks for improved read…
TrueNine May 2, 2026
8ac7a21
feat: enhance output plans to support child memory prompts and global…
TrueNine May 2, 2026
87b723e
feat: update cleanup logic to handle child memory prompts in build_cl…
TrueNine May 2, 2026
f380081
Refactor local tests for rules, opencode, and trae with isolated fixt…
TrueNine May 2, 2026
bc7e436
feat: add new dependencies for testing and enhance error reporting in…
TrueNine May 2, 2026
7986e3e
chore: bump version to 2026.10502.118
TrueNine May 3, 2026
4f1cc74
Merge main (cargo fmt fix) into dev
TrueNine May 3, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: cargo run -p xtask -- build

- name: Rust unit tests
run: cargo test --workspace --exclude tnmsg --exclude tnmsc-integrate-tests --exclude tnmsc-local-tests --exclude tnmsm-integrate-tests --lib --bins
run: cargo test --workspace --exclude tnmsg --exclude tnmsc-local-tests --lib --bins

packaging-smoke:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
Expand All @@ -93,10 +93,10 @@ jobs:
run: cargo build --release -p tnmsc -p tnmsm

- name: CLI packaging smoke
run: cargo test -p tnmsc-integrate-tests packaging_smoke_covers_release_binary_and_global_install -- --exact --nocapture
run: cargo test -p tnmsc-local-tests packaging_smoke_covers_release_binary_and_global_install -- --exact --nocapture

- name: MCP packaging smoke
run: cargo test -p tnmsm-integrate-tests packaging_smoke_covers_release_binary_and_global_install -- --exact --nocapture
run: cargo test -p tnmsm-local-tests packaging_smoke_covers_release_binary_and_global_install -- --exact --nocapture

gui-smoke:
needs: changes
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ cli/npm/**/*.node
cli/npm/**/bin/
cli/npm/**/tnmsc
cli/npm/**/tnmsc.exe
cli/integrate-tests/.tmp/
libraries/**/dist/*.node
**/target/
!**/Cargo.lock
Expand Down
Loading
Loading