@dharma-ai-labs/agent-fabric-task-runner 0.1.0 → 0.1.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 +13 -0
- package/package.json +9 -5
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# `@dharma-ai-labs/agent-fabric-task-runner`
|
|
2
|
+
|
|
3
|
+
Signed, leased, policy-bound execution for local Agent Fabric tasks. Tasks run
|
|
4
|
+
in relay-owned Git worktrees using registered command IDs and canonical
|
|
5
|
+
arguments under explicit path, network, Git, budget, and Skill-pin authority.
|
|
6
|
+
It is not a general remote shell.
|
|
7
|
+
|
|
8
|
+
- [Task execution boundary](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/06-task-execution-and-a2a.md)
|
|
9
|
+
- [Bidirectional protocol](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/05-bidirectional-protocol.md)
|
|
10
|
+
- [Source](https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/task-runner)
|
|
11
|
+
- [Dharma AI](https://www.dharma-ai.io)
|
|
12
|
+
|
|
13
|
+
Licensed under MIT.
|
package/package.json
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dharma-ai-labs/agent-fabric-task-runner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Signed, leased, policy-bound local task runner for Dharma Agent Fabric",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/task-runner#readme",
|
|
7
|
+
"bugs": { "url": "https://github.com/dharma-ai-labs/dharma-agent-fabric/issues" },
|
|
4
8
|
"type": "module",
|
|
5
9
|
"main": "dist/index.js",
|
|
6
10
|
"types": "dist/index.d.ts",
|
|
7
11
|
"repository": { "type": "git", "url": "git+https://github.com/dharma-ai-labs/dharma-agent-fabric.git", "directory": "packages/task-runner" },
|
|
8
12
|
"exports": { ".": "./dist/index.js" },
|
|
9
|
-
"files": ["dist"],
|
|
13
|
+
"files": ["dist", "README.md"],
|
|
10
14
|
"publishConfig": { "access": "public", "provenance": true },
|
|
11
15
|
"scripts": { "test": "node --test dist/*.test.js" },
|
|
12
16
|
"dependencies": {
|
|
13
|
-
"@dharma-ai-labs/agent-fabric-contracts": "0.1.
|
|
14
|
-
"@dharma-ai-labs/agent-fabric-policy": "0.1.
|
|
15
|
-
"@dharma-ai-labs/agent-fabric-provider-adapters": "0.1.
|
|
17
|
+
"@dharma-ai-labs/agent-fabric-contracts": "0.1.2",
|
|
18
|
+
"@dharma-ai-labs/agent-fabric-policy": "0.1.1",
|
|
19
|
+
"@dharma-ai-labs/agent-fabric-provider-adapters": "0.1.2"
|
|
16
20
|
}
|
|
17
21
|
}
|