@dharma-ai-labs/agent-fabric 0.2.40 → 0.2.41
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/dist/index.js +1 -1
- package/dist/index.test.js +2 -2
- package/package.json +2 -2
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.
|
|
19
|
+
const VERSION = '0.2.41';
|
|
20
20
|
const USAGE = CLI_USAGE;
|
|
21
21
|
const execFileAsync = promisify(execFile);
|
|
22
22
|
const LOCAL_PROVIDER_IDS = ['codex', 'claude', 'agy', 'hermes'];
|
package/dist/index.test.js
CHANGED
|
@@ -1343,13 +1343,13 @@ test('relay probe opens an authenticated session without polling or leasing work
|
|
|
1343
1343
|
},
|
|
1344
1344
|
openSession: async (version) => {
|
|
1345
1345
|
sessions += 1;
|
|
1346
|
-
assert.equal(version, '0.2.
|
|
1346
|
+
assert.equal(version, '0.2.41');
|
|
1347
1347
|
return { ok: true };
|
|
1348
1348
|
},
|
|
1349
1349
|
}));
|
|
1350
1350
|
assert.equal(sessions, 1);
|
|
1351
1351
|
assert.deepEqual(result, {
|
|
1352
|
-
ok: true, connected: true, organizationId: 'org_test', deviceId: 'device_test', relayVersion: '0.2.
|
|
1352
|
+
ok: true, connected: true, organizationId: 'org_test', deviceId: 'device_test', relayVersion: '0.2.41',
|
|
1353
1353
|
});
|
|
1354
1354
|
});
|
|
1355
1355
|
test('relay probe fails closed when the server does not acknowledge the session', async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dharma-ai-labs/agent-fabric",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.41",
|
|
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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@dharma-ai-labs/agent-fabric-contracts": "0.1.10",
|
|
37
|
-
"@dharma-ai-labs/agent-fabric-evidence-reduction": "0.2.
|
|
37
|
+
"@dharma-ai-labs/agent-fabric-evidence-reduction": "0.2.11",
|
|
38
38
|
"@dharma-ai-labs/agent-fabric-local-vault": "0.1.14",
|
|
39
39
|
"@dharma-ai-labs/agent-fabric-policy": "0.1.4",
|
|
40
40
|
"@dharma-ai-labs/agent-fabric-provider-adapters": "0.1.16",
|