@dharma-ai-labs/agent-fabric 0.2.4 → 0.2.6

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/dist/index.js +1 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ import { AgentFabricClient as AgentFabricApiClient } from '@dharma-ai-labs/agent
16
16
  import { getActiveSkillBundleAuthorization, getExpiredSkillBundleAuthorizationForReplacement, getLegacySkillBundleIdForUpgrade, installSkillBundle, rollbackUnconfirmedSkillBundle, verifySkillBundle } from '@dharma-ai-labs/agent-fabric-skill-manager';
17
17
  import { executeTask, FileActionExecutionJournal, FileTaskReceiptStore, providerInstructionsForTask, } from '@dharma-ai-labs/agent-fabric-task-runner';
18
18
  import { CLI_USAGE } from './usage.js';
19
- const VERSION = '0.2.4';
19
+ const VERSION = '0.2.6';
20
20
  const USAGE = CLI_USAGE;
21
21
  const execFileAsync = promisify(execFile);
22
22
  export function parseCliOptions(args) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dharma-ai-labs/agent-fabric",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Local-first CLI for connecting coding agents to Dharma evaluation, orchestration, and signed Skill delivery",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/dharma-ai-labs/dharma-agent-fabric/tree/main/packages/cli#readme",
@@ -33,14 +33,14 @@
33
33
  "test": "node --test dist/*.test.js"
34
34
  },
35
35
  "dependencies": {
36
- "@dharma-ai-labs/agent-fabric-contracts": "0.1.6",
36
+ "@dharma-ai-labs/agent-fabric-contracts": "0.1.7",
37
37
  "@dharma-ai-labs/agent-fabric-evidence-reduction": "0.2.1",
38
38
  "@dharma-ai-labs/agent-fabric-local-vault": "0.1.9",
39
39
  "@dharma-ai-labs/agent-fabric-policy": "0.1.4",
40
40
  "@dharma-ai-labs/agent-fabric-provider-adapters": "0.1.8",
41
- "@dharma-ai-labs/agent-fabric-relay-client": "0.2.4",
41
+ "@dharma-ai-labs/agent-fabric-relay-client": "0.2.5",
42
42
  "@dharma-ai-labs/agent-fabric-sdk": "0.1.6",
43
43
  "@dharma-ai-labs/agent-fabric-skill-manager": "0.2.1",
44
- "@dharma-ai-labs/agent-fabric-task-runner": "0.1.7"
44
+ "@dharma-ai-labs/agent-fabric-task-runner": "0.1.8"
45
45
  }
46
46
  }