@originoneai/agent-work-runtime 0.3.3 → 0.4.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.
- package/README.md +4 -4
- package/package.json +5 -5
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.
|
|
5
|
+
AWR 0.4.0 installs the native Rust `awr` CLI and `awr-mcp` server for stdio and shared Streamable HTTP.
|
|
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.
|
|
9
|
+
npm install -g @originoneai/agent-work-runtime@0.4.0
|
|
10
10
|
awr --version
|
|
11
11
|
awr --help
|
|
12
12
|
awr-mcp --help
|
|
@@ -15,8 +15,8 @@ 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.
|
|
19
|
-
npx --package=@originoneai/agent-work-runtime@0.
|
|
18
|
+
npx --package=@originoneai/agent-work-runtime@0.4.0 awr --help
|
|
19
|
+
npx --package=@originoneai/agent-work-runtime@0.4.0 awr-mcp --project /absolute/project
|
|
20
20
|
```
|
|
21
21
|
|
|
22
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.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Persistent work state and minimal context for long-running AI agents",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"tag": "latest"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@originoneai/agent-work-runtime-darwin-arm64": "0.
|
|
28
|
-
"@originoneai/agent-work-runtime-darwin-x64": "0.
|
|
29
|
-
"@originoneai/agent-work-runtime-linux-x64-gnu": "0.
|
|
30
|
-
"@originoneai/agent-work-runtime-win32-x64": "0.
|
|
27
|
+
"@originoneai/agent-work-runtime-darwin-arm64": "0.4.0",
|
|
28
|
+
"@originoneai/agent-work-runtime-darwin-x64": "0.4.0",
|
|
29
|
+
"@originoneai/agent-work-runtime-linux-x64-gnu": "0.4.0",
|
|
30
|
+
"@originoneai/agent-work-runtime-win32-x64": "0.4.0"
|
|
31
31
|
}
|
|
32
32
|
}
|