@integrity-labs/agt-cli 0.10.5 → 0.10.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.
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
provisionStopHook,
|
|
11
11
|
requireHost,
|
|
12
12
|
resolveChannels
|
|
13
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-O5T62RSQ.js";
|
|
14
14
|
import {
|
|
15
15
|
findTaskByTemplate,
|
|
16
16
|
getProjectDir,
|
|
@@ -1709,7 +1709,7 @@ async function processAgent(agent, agentStates) {
|
|
|
1709
1709
|
const { execFileSync: efs } = await import("child_process");
|
|
1710
1710
|
const claudePath = efs("which", ["claude"], { timeout: 5e3 }).toString().trim();
|
|
1711
1711
|
if (claudePath) {
|
|
1712
|
-
efs(claudePath, ["plugin", "
|
|
1712
|
+
efs(claudePath, ["plugin", "install", pluginName], {
|
|
1713
1713
|
timeout: 3e4,
|
|
1714
1714
|
stdio: "pipe"
|
|
1715
1715
|
});
|
|
@@ -3813,7 +3813,9 @@ function generateArtifacts(agent, refreshData, adapter) {
|
|
|
3813
3813
|
timezone: agentTimezone,
|
|
3814
3814
|
reportsTo,
|
|
3815
3815
|
personalitySeed,
|
|
3816
|
-
knowledge: (refreshData.knowledge ?? []).filter((k) => !!k.content)
|
|
3816
|
+
knowledge: (refreshData.knowledge ?? []).filter((k) => !!k.content),
|
|
3817
|
+
teamMembers: refreshData.team_members ?? void 0,
|
|
3818
|
+
people: refreshData.people ?? void 0
|
|
3817
3819
|
};
|
|
3818
3820
|
const provisionOutput = provision(provisionInput, adapter.id);
|
|
3819
3821
|
return provisionOutput.artifacts;
|