agentbnb 7.0.0-beta.1 → 7.0.0
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/{card-REW7BSWW.js → card-EX2EYGCZ.js} +1 -1
- package/dist/{chunk-PU7LXOQ3.js → chunk-3LWBH7P3.js} +72 -3
- package/dist/{chunk-2HSUPCBT.js → chunk-5AAFG2V2.js} +3 -3
- package/dist/{chunk-GO4FVRVN.js → chunk-5GME4KJZ.js} +5 -5
- package/dist/{chunk-VPQ44XKE.js → chunk-64AK4FJM.js} +2 -2
- package/dist/{chunk-K5FO42YF.js → chunk-7EF3HYVZ.js} +24 -1
- package/dist/{chunk-EAD4A4KG.js → chunk-ALX4WS3A.js} +2 -2
- package/dist/{chunk-ETGOKDFR.js → chunk-B2VJTKO5.js} +2 -2
- package/dist/{chunk-PGDBUUGR.js → chunk-C537SFHV.js} +5 -5
- package/dist/{chunk-F53QQIM2.js → chunk-CUONY5TO.js} +1 -1
- package/dist/{chunk-J2K5S5MX.js → chunk-D6RKW2XG.js} +67 -1
- package/dist/{chunk-APEG4QIN.js → chunk-E2OKP5CY.js} +4 -4
- package/dist/{chunk-FK2MDNTB.js → chunk-FTZTEHYG.js} +1 -1
- package/dist/{chunk-Y7T6IMM3.js → chunk-GKVTD4EZ.js} +1 -1
- package/dist/{chunk-VMH2YS2I.js → chunk-KF3TZHA5.js} +1 -1
- package/dist/{chunk-574W3HHE.js → chunk-LJM7FHPM.js} +1 -1
- package/dist/{chunk-KA2VIEGM.js → chunk-O2OYBAVR.js} +1 -1
- package/dist/{chunk-PSQHUZ7X.js → chunk-OH7BP5NP.js} +1 -1
- package/dist/{chunk-EHSHB7TY.js → chunk-SSK653A6.js} +67 -2
- package/dist/{chunk-BP3L2TET.js → chunk-TBJ3FZKZ.js} +2 -2
- package/dist/{chunk-3CIMVISQ.js → chunk-WVY2W7AA.js} +4 -0
- package/dist/{chunk-DUW6RX6I.js → chunk-X32NE6V4.js} +1 -1
- package/dist/{chunk-CWYPTQRQ.js → chunk-YHY7OG6S.js} +5 -5
- package/dist/{chunk-TW65F5EU.js → chunk-Z4MCGKTL.js} +6 -2
- package/dist/cli/index.js +44 -23
- package/dist/{client-HRYRJKSA.js → client-HKV3QWZ3.js} +3 -3
- package/dist/{conduct-JNYJCDHQ.js → conduct-W6XF6DJW.js} +13 -13
- package/dist/conduct-YB64OHI6.js +22 -0
- package/dist/{conductor-mode-2VVFMKVE.js → conductor-mode-2GSLHVN6.js} +3 -3
- package/dist/{conductor-mode-VGUU54QI.js → conductor-mode-AKREGDIU.js} +10 -10
- package/dist/{execute-MOXSSA3Q.js → execute-AYQWORVH.js} +6 -6
- package/dist/{execute-I4PKSNJM.js → execute-EPE6MZLT.js} +3 -3
- package/dist/index.d.ts +262 -10
- package/dist/index.js +438 -26
- package/dist/{process-guard-QCCBGILS.js → process-guard-GH5LRNWO.js} +1 -1
- package/dist/{publish-capability-TS6CNR5G.js → publish-capability-AH2HDW54.js} +3 -3
- package/dist/{request-E7TA7COA.js → request-HCCXSKAY.js} +12 -12
- package/dist/{serve-skill-HIOWYKRU.js → serve-skill-SZAQT5T5.js} +8 -8
- package/dist/{server-I63CXFX3.js → server-MHMAYXWZ.js} +11 -11
- package/dist/{service-coordinator-XBNT3SMU.js → service-coordinator-WGH6B2VT.js} +375 -48
- package/dist/skills/agentbnb/bootstrap.js +393 -58
- package/dist/{websocket-client-PFGVTXNE.js → websocket-client-4Z5P54RU.js} +1 -1
- package/dist/websocket-client-QOVARTRN.js +7 -0
- package/package.json +17 -11
- package/skills/agentbnb/bootstrap.test.ts +9 -0
- package/skills/agentbnb/bootstrap.ts +51 -26
- package/skills/agentbnb/install.sh +0 -0
- package/dist/conduct-KJUD2RTB.js +0 -22
- package/dist/websocket-client-5MH6QRJK.js +0 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RelayMessageSchema
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-SSK653A6.js";
|
|
4
4
|
|
|
5
5
|
// src/relay/websocket-client.ts
|
|
6
6
|
import WebSocket from "ws";
|
|
@@ -35,9 +35,12 @@ var RelayClient = class {
|
|
|
35
35
|
this.send({
|
|
36
36
|
type: "register",
|
|
37
37
|
owner: this.opts.owner,
|
|
38
|
+
...this.opts.agent_id ? { agent_id: this.opts.agent_id } : {},
|
|
39
|
+
...this.opts.server_id ? { server_id: this.opts.server_id } : {},
|
|
38
40
|
token: this.opts.token,
|
|
39
41
|
card: this.opts.card,
|
|
40
|
-
...this.opts.cards && this.opts.cards.length > 0 ? { cards: this.opts.cards } : {}
|
|
42
|
+
...this.opts.cards && this.opts.cards.length > 0 ? { cards: this.opts.cards } : {},
|
|
43
|
+
...this.opts.agents && this.opts.agents.length > 0 ? { agents: this.opts.agents } : {}
|
|
41
44
|
});
|
|
42
45
|
});
|
|
43
46
|
this.ws.on("message", (raw) => {
|
|
@@ -113,6 +116,7 @@ var RelayClient = class {
|
|
|
113
116
|
type: "relay_request",
|
|
114
117
|
id,
|
|
115
118
|
target_owner: opts.targetOwner,
|
|
119
|
+
...opts.targetAgentId ? { target_agent_id: opts.targetAgentId } : {},
|
|
116
120
|
card_id: opts.cardId,
|
|
117
121
|
skill_id: opts.skillId,
|
|
118
122
|
params: opts.params,
|
package/dist/cli/index.js
CHANGED
|
@@ -6,54 +6,57 @@ import {
|
|
|
6
6
|
detectOpenPorts,
|
|
7
7
|
discoverLocalAgents,
|
|
8
8
|
getPricingStats
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-FTZTEHYG.js";
|
|
10
10
|
import {
|
|
11
11
|
ensureIdentity
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-OH7BP5NP.js";
|
|
13
13
|
import {
|
|
14
14
|
releaseRequesterEscrow,
|
|
15
15
|
settleRequesterEscrow
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-X32NE6V4.js";
|
|
17
17
|
import {
|
|
18
18
|
createLedger
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-5AAFG2V2.js";
|
|
20
20
|
import {
|
|
21
21
|
parseSoulMd
|
|
22
|
-
} from "../chunk-
|
|
22
|
+
} from "../chunk-TBJ3FZKZ.js";
|
|
23
23
|
import {
|
|
24
24
|
AutoRequestor,
|
|
25
25
|
BudgetManager,
|
|
26
26
|
DEFAULT_BUDGET_CONFIG
|
|
27
|
-
} from "../chunk-
|
|
27
|
+
} from "../chunk-5GME4KJZ.js";
|
|
28
28
|
import {
|
|
29
29
|
fetchRemoteCards,
|
|
30
30
|
mergeResults
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-KF3TZHA5.js";
|
|
32
32
|
import {
|
|
33
33
|
DEFAULT_AUTONOMY_CONFIG
|
|
34
|
-
} from "../chunk-
|
|
34
|
+
} from "../chunk-GKVTD4EZ.js";
|
|
35
35
|
import {
|
|
36
36
|
filterCards,
|
|
37
37
|
searchCards
|
|
38
|
-
} from "../chunk-
|
|
38
|
+
} from "../chunk-LJM7FHPM.js";
|
|
39
39
|
import {
|
|
40
40
|
bootstrapAgent,
|
|
41
|
+
createAgentRecord,
|
|
41
42
|
getBalance,
|
|
42
43
|
getTransactions,
|
|
43
44
|
holdEscrow,
|
|
45
|
+
lookupAgent,
|
|
46
|
+
lookupAgentByOwner,
|
|
44
47
|
migrateOwner,
|
|
45
48
|
openCreditDb
|
|
46
|
-
} from "../chunk-
|
|
49
|
+
} from "../chunk-D6RKW2XG.js";
|
|
47
50
|
import "../chunk-NWIQJ2CL.js";
|
|
48
51
|
import {
|
|
49
52
|
requestCapability
|
|
50
|
-
} from "../chunk-
|
|
53
|
+
} from "../chunk-64AK4FJM.js";
|
|
51
54
|
import {
|
|
52
55
|
generateKeyPair,
|
|
53
56
|
loadKeyPair,
|
|
54
57
|
saveKeyPair,
|
|
55
58
|
signEscrowReceipt
|
|
56
|
-
} from "../chunk-
|
|
59
|
+
} from "../chunk-CUONY5TO.js";
|
|
57
60
|
import {
|
|
58
61
|
findPeer,
|
|
59
62
|
loadPeers,
|
|
@@ -71,12 +74,12 @@ import {
|
|
|
71
74
|
insertCard,
|
|
72
75
|
listCards,
|
|
73
76
|
openDatabase
|
|
74
|
-
} from "../chunk-
|
|
77
|
+
} from "../chunk-O2OYBAVR.js";
|
|
75
78
|
import {
|
|
76
79
|
AgentBnBError,
|
|
77
80
|
AnyCardSchema,
|
|
78
81
|
CapabilityCardV2Schema
|
|
79
|
-
} from "../chunk-
|
|
82
|
+
} from "../chunk-WVY2W7AA.js";
|
|
80
83
|
|
|
81
84
|
// src/cli/index.ts
|
|
82
85
|
import { Command } from "commander";
|
|
@@ -92,6 +95,7 @@ import { z } from "zod";
|
|
|
92
95
|
import { randomUUID } from "crypto";
|
|
93
96
|
var EscrowReceiptSchema = z.object({
|
|
94
97
|
requester_owner: z.string().min(1),
|
|
98
|
+
requester_agent_id: z.string().optional(),
|
|
95
99
|
requester_public_key: z.string().min(1),
|
|
96
100
|
amount: z.number().positive(),
|
|
97
101
|
card_id: z.string().min(1),
|
|
@@ -104,6 +108,7 @@ function createSignedEscrowReceipt(db, privateKey, publicKey, opts) {
|
|
|
104
108
|
const escrowId = holdEscrow(db, opts.owner, opts.amount, opts.cardId);
|
|
105
109
|
const receiptData = {
|
|
106
110
|
requester_owner: opts.owner,
|
|
111
|
+
...opts.agent_id ? { requester_agent_id: opts.agent_id } : {},
|
|
107
112
|
requester_public_key: publicKey.toString("hex"),
|
|
108
113
|
amount: opts.amount,
|
|
109
114
|
card_id: opts.cardId,
|
|
@@ -614,6 +619,22 @@ async function performInit(opts) {
|
|
|
614
619
|
console.log(`Migrated local credits: ${existingConfig.owner} \u2192 ${owner}`);
|
|
615
620
|
}
|
|
616
621
|
}
|
|
622
|
+
const existingAgent = lookupAgent(creditDb, identity.agent_id) ?? lookupAgentByOwner(creditDb, owner);
|
|
623
|
+
if (!existingAgent) {
|
|
624
|
+
try {
|
|
625
|
+
createAgentRecord(creditDb, {
|
|
626
|
+
agent_id: identity.agent_id,
|
|
627
|
+
display_name: config.display_name ?? owner,
|
|
628
|
+
public_key: identity.public_key,
|
|
629
|
+
legacy_owner: owner
|
|
630
|
+
});
|
|
631
|
+
} catch {
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
if (!config.agent_id || config.agent_id !== identity.agent_id) {
|
|
635
|
+
config.agent_id = identity.agent_id;
|
|
636
|
+
saveConfig(config);
|
|
637
|
+
}
|
|
617
638
|
bootstrapAgent(creditDb, owner, 100);
|
|
618
639
|
creditDb.close();
|
|
619
640
|
let registryBalance;
|
|
@@ -911,8 +932,8 @@ Skills: ${skills.skillCount} skill(s) in ${skills.path}`);
|
|
|
911
932
|
let daemonStatus = { running: false, reason: "skipped" };
|
|
912
933
|
if (!skipServe) {
|
|
913
934
|
try {
|
|
914
|
-
const { ProcessGuard } = await import("../process-guard-
|
|
915
|
-
const { ServiceCoordinator } = await import("../service-coordinator-
|
|
935
|
+
const { ProcessGuard } = await import("../process-guard-GH5LRNWO.js");
|
|
936
|
+
const { ServiceCoordinator } = await import("../service-coordinator-WGH6B2VT.js");
|
|
916
937
|
const guard = new ProcessGuard(join3(initResult.configDir, ".pid"));
|
|
917
938
|
const coordinator = new ServiceCoordinator(initResult.config, guard);
|
|
918
939
|
const result = await coordinator.ensureRunning({
|
|
@@ -1156,7 +1177,7 @@ program.command("publish-skills").description("Publish capabilities from skills.
|
|
|
1156
1177
|
process.exit(1);
|
|
1157
1178
|
}
|
|
1158
1179
|
const { parseSkillsFile } = await import("../skill-config-FETXPNVP.js");
|
|
1159
|
-
const { skillConfigToSkill } = await import("../publish-capability-
|
|
1180
|
+
const { skillConfigToSkill } = await import("../publish-capability-AH2HDW54.js");
|
|
1160
1181
|
const skillsPath = typeof opts.fromSkills === "string" ? opts.fromSkills : "./skills.yaml";
|
|
1161
1182
|
let yamlContent;
|
|
1162
1183
|
try {
|
|
@@ -1689,8 +1710,8 @@ Batch Results (${res.results.length} items):`);
|
|
|
1689
1710
|
return msg.includes("NETWORK_ERROR") || msg.includes("ECONNREFUSED") || msg.includes("fetch failed") || msg.includes("Network error");
|
|
1690
1711
|
};
|
|
1691
1712
|
const tryViaRelay = async () => {
|
|
1692
|
-
const { RelayClient } = await import("../websocket-client-
|
|
1693
|
-
const { requestViaRelay } = await import("../client-
|
|
1713
|
+
const { RelayClient } = await import("../websocket-client-QOVARTRN.js");
|
|
1714
|
+
const { requestViaRelay } = await import("../client-HKV3QWZ3.js");
|
|
1694
1715
|
const requesterId = `${config.owner}:req:${randomUUID4()}`;
|
|
1695
1716
|
const tempRelay = new RelayClient({
|
|
1696
1717
|
registryUrl: config.registry,
|
|
@@ -1819,8 +1840,8 @@ program.command("serve").description("Start the AgentBnB gateway server").option
|
|
|
1819
1840
|
console.error("Error: not initialized. Run `agentbnb init` first.");
|
|
1820
1841
|
process.exit(1);
|
|
1821
1842
|
}
|
|
1822
|
-
const { ProcessGuard } = await import("../process-guard-
|
|
1823
|
-
const { ServiceCoordinator } = await import("../service-coordinator-
|
|
1843
|
+
const { ProcessGuard } = await import("../process-guard-GH5LRNWO.js");
|
|
1844
|
+
const { ServiceCoordinator } = await import("../service-coordinator-WGH6B2VT.js");
|
|
1824
1845
|
const port = opts.port ? parseInt(opts.port, 10) : config.gateway_port;
|
|
1825
1846
|
const registryPort = parseInt(opts.registryPort, 10);
|
|
1826
1847
|
if (!Number.isFinite(port) || !Number.isFinite(registryPort)) {
|
|
@@ -2194,7 +2215,7 @@ openclaw.command("rules").description("Print HEARTBEAT.md rules block (or inject
|
|
|
2194
2215
|
}
|
|
2195
2216
|
});
|
|
2196
2217
|
program.command("conduct <task>").description("Orchestrate a complex task across the AgentBnB network").option("--plan-only", "Show execution plan without executing").option("--max-budget <credits>", "Maximum credits to spend", "100").option("--json", "Output as JSON").action(async (task, opts) => {
|
|
2197
|
-
const { conductAction } = await import("../conduct-
|
|
2218
|
+
const { conductAction } = await import("../conduct-YB64OHI6.js");
|
|
2198
2219
|
const result = await conductAction(task, opts);
|
|
2199
2220
|
if (opts.json) {
|
|
2200
2221
|
console.log(JSON.stringify(result, null, 2));
|
|
@@ -2306,7 +2327,7 @@ Feedback for skill: ${opts.skill} (${feedbacks.length} entries)
|
|
|
2306
2327
|
});
|
|
2307
2328
|
program.command("quickstart").alias("qs").description("One-command setup: init + skills.yaml + MCP registration + serve daemon").option("--owner <name>", "Agent owner name").option("--port <port>", "Gateway port", "7700").option("--no-serve", "Skip starting background daemon").option("--no-mcp", "Skip MCP registration with Claude Code").option("--json", "Output as JSON").action(runQuickstart);
|
|
2308
2329
|
program.command("mcp-server").description("Start an MCP (Model Context Protocol) server for IDE integration").action(async () => {
|
|
2309
|
-
const { startMcpServer } = await import("../server-
|
|
2330
|
+
const { startMcpServer } = await import("../server-MHMAYXWZ.js");
|
|
2310
2331
|
await startMcpServer();
|
|
2311
2332
|
});
|
|
2312
2333
|
await program.parseAsync(process.argv);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
requestCapability,
|
|
3
3
|
requestViaRelay
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-64AK4FJM.js";
|
|
5
|
+
import "./chunk-CUONY5TO.js";
|
|
6
|
+
import "./chunk-WVY2W7AA.js";
|
|
7
7
|
export {
|
|
8
8
|
requestCapability,
|
|
9
9
|
requestViaRelay
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
conductAction
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-YHY7OG6S.js";
|
|
4
|
+
import "./chunk-Z4MCGKTL.js";
|
|
5
|
+
import "./chunk-SSK653A6.js";
|
|
6
|
+
import "./chunk-E2OKP5CY.js";
|
|
7
7
|
import "./chunk-3MJT4PZG.js";
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-5GME4KJZ.js";
|
|
9
|
+
import "./chunk-KF3TZHA5.js";
|
|
10
|
+
import "./chunk-GKVTD4EZ.js";
|
|
11
|
+
import "./chunk-LJM7FHPM.js";
|
|
12
|
+
import "./chunk-D6RKW2XG.js";
|
|
13
13
|
import "./chunk-NWIQJ2CL.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-64AK4FJM.js";
|
|
15
|
+
import "./chunk-CUONY5TO.js";
|
|
16
16
|
import "./chunk-5AH3CMOX.js";
|
|
17
17
|
import "./chunk-75OC6E4F.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-O2OYBAVR.js";
|
|
19
|
+
import "./chunk-WVY2W7AA.js";
|
|
20
20
|
|
|
21
21
|
// src/mcp/tools/conduct.ts
|
|
22
22
|
import { z } from "zod";
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {
|
|
2
|
+
conductAction
|
|
3
|
+
} from "./chunk-YHY7OG6S.js";
|
|
4
|
+
import "./chunk-Z4MCGKTL.js";
|
|
5
|
+
import "./chunk-SSK653A6.js";
|
|
6
|
+
import "./chunk-E2OKP5CY.js";
|
|
7
|
+
import "./chunk-3MJT4PZG.js";
|
|
8
|
+
import "./chunk-5GME4KJZ.js";
|
|
9
|
+
import "./chunk-KF3TZHA5.js";
|
|
10
|
+
import "./chunk-GKVTD4EZ.js";
|
|
11
|
+
import "./chunk-LJM7FHPM.js";
|
|
12
|
+
import "./chunk-D6RKW2XG.js";
|
|
13
|
+
import "./chunk-NWIQJ2CL.js";
|
|
14
|
+
import "./chunk-64AK4FJM.js";
|
|
15
|
+
import "./chunk-CUONY5TO.js";
|
|
16
|
+
import "./chunk-5AH3CMOX.js";
|
|
17
|
+
import "./chunk-75OC6E4F.js";
|
|
18
|
+
import "./chunk-O2OYBAVR.js";
|
|
19
|
+
import "./chunk-WVY2W7AA.js";
|
|
20
|
+
export {
|
|
21
|
+
conductAction
|
|
22
|
+
};
|
|
@@ -3,16 +3,16 @@ import {
|
|
|
3
3
|
interpolateObject,
|
|
4
4
|
requestCapability,
|
|
5
5
|
searchCards
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-B2VJTKO5.js";
|
|
7
7
|
import "./chunk-HLUEOLSZ.js";
|
|
8
8
|
import {
|
|
9
9
|
getBalance,
|
|
10
10
|
getCardsByCapabilityType,
|
|
11
11
|
getCardsBySkillCapability
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-7EF3HYVZ.js";
|
|
13
13
|
import "./chunk-NWIQJ2CL.js";
|
|
14
14
|
import "./chunk-IVOYM3WG.js";
|
|
15
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-WVY2W7AA.js";
|
|
16
16
|
|
|
17
17
|
// src/conductor/task-decomposer.ts
|
|
18
18
|
import { randomUUID } from "crypto";
|
|
@@ -4,27 +4,27 @@ import {
|
|
|
4
4
|
matchSubTasks,
|
|
5
5
|
orchestrate,
|
|
6
6
|
validateAndNormalizeSubtasks
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-E2OKP5CY.js";
|
|
8
8
|
import "./chunk-3MJT4PZG.js";
|
|
9
9
|
import {
|
|
10
10
|
BudgetManager
|
|
11
|
-
} from "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
15
|
-
import "./chunk-
|
|
11
|
+
} from "./chunk-5GME4KJZ.js";
|
|
12
|
+
import "./chunk-KF3TZHA5.js";
|
|
13
|
+
import "./chunk-GKVTD4EZ.js";
|
|
14
|
+
import "./chunk-LJM7FHPM.js";
|
|
15
|
+
import "./chunk-D6RKW2XG.js";
|
|
16
16
|
import "./chunk-NWIQJ2CL.js";
|
|
17
17
|
import {
|
|
18
18
|
requestCapability
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import "./chunk-
|
|
19
|
+
} from "./chunk-64AK4FJM.js";
|
|
20
|
+
import "./chunk-CUONY5TO.js";
|
|
21
21
|
import "./chunk-5AH3CMOX.js";
|
|
22
22
|
import "./chunk-75OC6E4F.js";
|
|
23
23
|
import {
|
|
24
24
|
getCardsByCapabilityType,
|
|
25
25
|
getCardsBySkillCapability
|
|
26
|
-
} from "./chunk-
|
|
27
|
-
import "./chunk-
|
|
26
|
+
} from "./chunk-O2OYBAVR.js";
|
|
27
|
+
import "./chunk-WVY2W7AA.js";
|
|
28
28
|
|
|
29
29
|
// src/conductor/team-formation.ts
|
|
30
30
|
import { randomUUID } from "crypto";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executeCapabilityBatch,
|
|
3
3
|
executeCapabilityRequest
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-C537SFHV.js";
|
|
5
|
+
import "./chunk-X32NE6V4.js";
|
|
6
|
+
import "./chunk-D6RKW2XG.js";
|
|
7
7
|
import "./chunk-NWIQJ2CL.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-CUONY5TO.js";
|
|
9
9
|
import "./chunk-75OC6E4F.js";
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-O2OYBAVR.js";
|
|
11
|
+
import "./chunk-WVY2W7AA.js";
|
|
12
12
|
export {
|
|
13
13
|
executeCapabilityBatch,
|
|
14
14
|
executeCapabilityRequest
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executeCapabilityBatch,
|
|
3
3
|
executeCapabilityRequest
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-ALX4WS3A.js";
|
|
5
|
+
import "./chunk-7EF3HYVZ.js";
|
|
6
6
|
import "./chunk-NWIQJ2CL.js";
|
|
7
7
|
import "./chunk-IVOYM3WG.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-WVY2W7AA.js";
|
|
9
9
|
export {
|
|
10
10
|
executeCapabilityBatch,
|
|
11
11
|
executeCapabilityRequest
|