@originoneai/agent-work-runtime 0.2.0 → 0.3.1

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/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Persistent work state and minimal context for long-running AI agents.
4
4
 
5
- AWR 0.2.0 installs the native Rust `awr` CLI and `awr-mcp` stdio server.
5
+ AWR 0.3.1 installs the native Rust `awr` CLI and `awr-mcp` stdio server.
6
6
  Context compilation runs locally without an AI model call.
7
7
 
8
8
  ```sh
9
- npm install -g @originoneai/agent-work-runtime@0.2.0
9
+ npm install -g @originoneai/agent-work-runtime@0.3.1
10
10
  awr --version
11
11
  awr --help
12
12
  awr-mcp --help
@@ -15,14 +15,14 @@ awr-mcp --help
15
15
  Without a global installation, select the command explicitly:
16
16
 
17
17
  ```sh
18
- npx --package=@originoneai/agent-work-runtime@0.2.0 awr --help
19
- npx --package=@originoneai/agent-work-runtime@0.2.0 awr-mcp --project /absolute/project
18
+ npx --package=@originoneai/agent-work-runtime@0.3.1 awr --help
19
+ npx --package=@originoneai/agent-work-runtime@0.3.1 awr-mcp --project /absolute/project
20
20
  ```
21
21
 
22
22
  The project must be initialized before starting its MCP server. Follow the
23
23
  [project documentation](https://github.com/originoneai/agent-work-runtime).
24
24
 
25
- The distribution targets macOS 15+ arm64, Linux x64 with glibc 2.39+ (Ubuntu 24.04
25
+ The distribution targets macOS 15+ arm64 and Intel x64, Linux x64 with glibc 2.39+ (Ubuntu 24.04
26
26
  baseline), and Windows x64. Node.js 22.14+ is required for the npm launcher. Git is
27
27
  required for Git-bound work branch operations. SQLite is included in the binaries.
28
28
  Installation requires access to the npm registry; no Rust compiler or install-time
package/bin/launcher.cjs CHANGED
@@ -6,6 +6,7 @@ const path = require('node:path');
6
6
  exports.run = function run(command) {
7
7
  const targets = {
8
8
  'darwin-arm64': 'darwin-arm64',
9
+ 'darwin-x64': 'darwin-x64',
9
10
  'linux-x64': 'linux-x64-gnu',
10
11
  'win32-x64': 'win32-x64',
11
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@originoneai/agent-work-runtime",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "Persistent work state and minimal context for long-running AI agents",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -24,8 +24,9 @@
24
24
  "tag": "latest"
25
25
  },
26
26
  "optionalDependencies": {
27
- "@originoneai/agent-work-runtime-darwin-arm64": "0.2.0",
28
- "@originoneai/agent-work-runtime-linux-x64-gnu": "0.2.0",
29
- "@originoneai/agent-work-runtime-win32-x64": "0.2.0"
27
+ "@originoneai/agent-work-runtime-darwin-arm64": "0.3.1",
28
+ "@originoneai/agent-work-runtime-darwin-x64": "0.3.1",
29
+ "@originoneai/agent-work-runtime-linux-x64-gnu": "0.3.1",
30
+ "@originoneai/agent-work-runtime-win32-x64": "0.3.1"
30
31
  }
31
32
  }