@standardagents/code 0.13.8 → 0.13.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardagents/code",
3
- "version": "0.13.8",
3
+ "version": "0.13.10",
4
4
  "description": "Standard Code — a terminal coding agent whose LLM loop runs on a Standard Agents instance while its tools execute on your machine via this CLI.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -22,18 +22,22 @@
22
22
  "scripts": {
23
23
  "start": "tsx src/index.ts",
24
24
  "code": "tsx src/index.ts",
25
+ "tui:rust": "pnpm --filter @standardagents/code-network build && cargo run -p standardcode-tui",
25
26
  "build": "pnpm --filter @standardagents/code-network build && tsup",
26
27
  "release": "node scripts/release.mjs",
27
28
  "release:next": "node scripts/release.mjs --tag=next",
28
29
  "release:dev": "node scripts/release.mjs --tag=dev",
29
30
  "markdown:sync": "node scripts/sync-progressive-markdown-runtime.mjs",
30
31
  "markdown:check": "node scripts/sync-progressive-markdown-runtime.mjs --check",
32
+ "activity:sync": "node scripts/sync-tool-activity-runtime.mjs",
33
+ "activity:check": "node scripts/sync-tool-activity-runtime.mjs --check",
31
34
  "version:check": "node scripts/check-version-lockstep.mjs",
32
35
  "typecheck": "tsc --noEmit",
33
- "test": "pnpm version:check && pnpm typecheck && node scripts/run-tests.mjs"
36
+ "test": "pnpm version:check && pnpm typecheck && node scripts/run-tests.mjs && cargo test --workspace",
37
+ "check:rust": "cargo fmt --all --check && cargo clippy --workspace --all-targets -- -D warnings"
34
38
  },
35
39
  "dependencies": {
36
- "@standardagents/code-network": "0.13.8"
40
+ "@standardagents/code-network": "0.13.10"
37
41
  },
38
42
  "devDependencies": {
39
43
  "@clack/prompts": "^1.6.0",