@originoneai/agent-work-runtime 0.3.2 → 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 +13 -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
|
|
@@ -30,3 +30,12 @@ build is needed on a supported platform. Keep npm optional dependencies enabled.
|
|
|
30
30
|
|
|
31
31
|
The platform package contains the binaries, source identity, checksums and
|
|
32
32
|
third-party license notices. The core program is licensed under Apache-2.0.
|
|
33
|
+
|
|
34
|
+
A single shared service can manage multiple initialized projects and clients:
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
awr-mcp --registry /etc/awr/service.toml --listen 127.0.0.1:8080
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Configure project registrations and client credentials using the
|
|
41
|
+
[shared MCP service guide](https://github.com/originoneai/agent-work-runtime/blob/main/docs/reference/mcp-service.md).
|
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
|
}
|