@dharma-ai-labs/agent-fabric-secure-store 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 +11 -0
- package/package.json +6 -2
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# `@dharma-ai-labs/agent-fabric-secure-store`
|
|
2
|
+
|
|
3
|
+
Fail-closed operating-system credential storage for Agent Fabric device and
|
|
4
|
+
vault secrets. It targets Windows Credential Manager, macOS Keychain, and Linux
|
|
5
|
+
Secret Service rather than plaintext repository or dotfile credentials.
|
|
6
|
+
|
|
7
|
+
- [Security boundary](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/10-security-privacy-and-threat-model.md)
|
|
8
|
+
- [Source](https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/secure-store)
|
|
9
|
+
- [Dharma AI](https://www.dharma-ai.io)
|
|
10
|
+
|
|
11
|
+
Licensed under MIT.
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dharma-ai-labs/agent-fabric-secure-store",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Fail-closed OS credential storage abstraction for Dharma Agent Fabric",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/secure-store#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/secure-store" },
|
|
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
|
}
|