@dharma-ai-labs/agent-fabric-skill-manager 0.1.0 → 0.1.2
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 +8 -4
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# `@dharma-ai-labs/agent-fabric-skill-manager`
|
|
2
|
+
|
|
3
|
+
Verification and atomic installation of immutable, signed Agent Fabric Skill
|
|
4
|
+
bundles. It binds bundles to hashes and signatures, records installation
|
|
5
|
+
receipts, switches active versions only after verification, and preserves a
|
|
6
|
+
rollback ancestor.
|
|
7
|
+
|
|
8
|
+
- [Skill supply chain](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/07-skill-supply-chain.md)
|
|
9
|
+
- [Evaluation and remediation](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/08-evaluation-remediation-and-failure-atlas.md)
|
|
10
|
+
- [Source](https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/skill-manager)
|
|
11
|
+
- [Dharma AI](https://www.dharma-ai.io)
|
|
12
|
+
|
|
13
|
+
Licensed under MIT.
|
package/package.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dharma-ai-labs/agent-fabric-skill-manager",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Signed Skill bundle verification, activation, receipts, and rollback for Dharma Agent Fabric",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/skill-manager#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/skill-manager" },
|
|
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.
|
|
17
|
+
"@dharma-ai-labs/agent-fabric-contracts": "0.1.2",
|
|
18
|
+
"@dharma-ai-labs/agent-fabric-policy": "0.1.4"
|
|
15
19
|
}
|
|
16
20
|
}
|