@dharma-ai-labs/agent-fabric 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/README.md +36 -0
  2. package/package.json +14 -10
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # `@dharma-ai-labs/agent-fabric`
2
+
3
+ The public `dharma` CLI connects approved local coding-agent workspaces to the
4
+ Dharma Agent Fabric control plane. It enrolls an outbound-only signed device,
5
+ discovers provider capabilities, keeps full trajectories in an encrypted local
6
+ vault, syncs policy-qualified evidence, executes bounded signed tasks, and
7
+ installs signed Skill releases with receipts and rollback ancestry.
8
+
9
+ ## Start
10
+
11
+ Requires Node.js 22.20 or later.
12
+
13
+ ```bash
14
+ npx --yes @dharma-ai-labs/agent-fabric@latest onboard \
15
+ --hq-url https://www.dharma-ai.io \
16
+ --organization-id <organization-id> \
17
+ --policy-revision <dashboard-policy-revision> \
18
+ --workspace "$PWD"
19
+ ```
20
+
21
+ Current provider adapters are Codex, Claude Code, and Agy. Run
22
+ `dharma providers list` because evidence, task, continuation, Skill installation,
23
+ activation, and usage capabilities are reported independently.
24
+
25
+ Local metadata analysis is operational triage, not semantic Cognitive Integrity
26
+ evaluation. Nuanced scoring and remediation require approved, redacted evidence;
27
+ missing evidence must produce `insufficient_evidence`.
28
+
29
+ - [Dharma AI](https://www.dharma-ai.io)
30
+ - [Source and issue tracker](https://github.com/dharma-ai-labs/dharma-agent-fabric)
31
+ - [Customer onboarding guide](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/onboarding/customer-guide.md)
32
+ - [CLI command contract](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/22-cli-command-contract.md)
33
+ - [Security boundary](https://github.com/dharma-ai-labs/dharma-agent-fabric/blob/main/docs/10-security-privacy-and-threat-model.md)
34
+
35
+ Licensed under MIT. Do not report security vulnerabilities in a public issue;
36
+ use the private security-reporting channel in the GitHub repository.
package/package.json CHANGED
@@ -1,23 +1,27 @@
1
1
  {
2
2
  "name": "@dharma-ai-labs/agent-fabric",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
+ "description": "Local-first CLI for connecting coding agents to Dharma evaluation, orchestration, and signed Skill delivery",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/cli#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
  "bin": { "dharma": "dist/bin.js" },
8
12
  "engines": { "node": ">=22.20.0 <25.0.0", "npm": ">=10.9.3 <12.0.0" },
9
13
  "repository": { "type": "git", "url": "git+https://github.com/dharma-ai-labs/dharma-agent-fabric.git", "directory": "packages/cli" },
10
- "files": ["dist"],
14
+ "files": ["dist", "README.md"],
11
15
  "publishConfig": { "access": "public", "provenance": true },
12
16
  "scripts": { "test": "node --test dist/*.test.js" },
13
17
  "dependencies": {
14
- "@dharma-ai-labs/agent-fabric-contracts": "0.1.1",
15
- "@dharma-ai-labs/agent-fabric-evidence-reduction": "0.1.2",
16
- "@dharma-ai-labs/agent-fabric-local-vault": "0.1.3",
17
- "@dharma-ai-labs/agent-fabric-policy": "0.1.0",
18
- "@dharma-ai-labs/agent-fabric-provider-adapters": "0.1.1",
19
- "@dharma-ai-labs/agent-fabric-relay-client": "0.1.0",
20
- "@dharma-ai-labs/agent-fabric-skill-manager": "0.1.0",
21
- "@dharma-ai-labs/agent-fabric-task-runner": "0.1.0"
18
+ "@dharma-ai-labs/agent-fabric-contracts": "0.1.2",
19
+ "@dharma-ai-labs/agent-fabric-evidence-reduction": "0.1.3",
20
+ "@dharma-ai-labs/agent-fabric-local-vault": "0.1.4",
21
+ "@dharma-ai-labs/agent-fabric-policy": "0.1.1",
22
+ "@dharma-ai-labs/agent-fabric-provider-adapters": "0.1.2",
23
+ "@dharma-ai-labs/agent-fabric-relay-client": "0.1.1",
24
+ "@dharma-ai-labs/agent-fabric-skill-manager": "0.1.1",
25
+ "@dharma-ai-labs/agent-fabric-task-runner": "0.1.1"
22
26
  }
23
27
  }