@originoneai/agent-work-runtime 0.1.0-dev → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -2,13 +2,11 @@
2
2
 
3
3
  Persistent work state and minimal context for long-running AI agents.
4
4
 
5
- This is a development preview, not the completed V1 release. The package installs
6
- the Rust `awr` CLI and `awr-mcp` stdio server; it does not invoke an AI model.
7
-
8
- After a release is published:
5
+ AWR 0.2.0 installs the native Rust `awr` CLI and `awr-mcp` stdio server.
6
+ Context compilation runs locally without an AI model call.
9
7
 
10
8
  ```sh
11
- npm install -g @originoneai/agent-work-runtime@next
9
+ npm install -g @originoneai/agent-work-runtime@0.2.0
12
10
  awr --version
13
11
  awr --help
14
12
  awr-mcp --help
@@ -17,8 +15,8 @@ awr-mcp --help
17
15
  Without a global installation, select the command explicitly:
18
16
 
19
17
  ```sh
20
- npx --package=@originoneai/agent-work-runtime@next awr --help
21
- npx --package=@originoneai/agent-work-runtime@next awr-mcp --project /absolute/project
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
22
20
  ```
23
21
 
24
22
  The project must be initialized before starting its MCP server. Follow the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@originoneai/agent-work-runtime",
3
- "version": "0.1.0-dev",
3
+ "version": "0.2.0",
4
4
  "description": "Persistent work state and minimal context for long-running AI agents",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -21,11 +21,11 @@
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "public",
24
- "tag": "next"
24
+ "tag": "latest"
25
25
  },
26
26
  "optionalDependencies": {
27
- "@originoneai/agent-work-runtime-darwin-arm64": "0.1.0-dev",
28
- "@originoneai/agent-work-runtime-linux-x64-gnu": "0.1.0-dev",
29
- "@originoneai/agent-work-runtime-win32-x64": "0.1.0-dev"
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"
30
30
  }
31
31
  }