@integrity-labs/agt-cli 0.28.235 → 0.28.237
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/bin/agt.js +3 -3
- package/dist/{chunk-2KTGXFX5.js → chunk-DN4HSL6M.js} +2 -2
- package/dist/lib/manager-worker.js +85 -2
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-2KTGXFX5.js.map → chunk-DN4HSL6M.js.map} +0 -0
package/dist/mcp/index.js
CHANGED
|
@@ -23029,7 +23029,7 @@ server.tool(
|
|
|
23029
23029
|
`List the integrations currently installed on this agent, with their current typed context values and a preview of any freeform overrides. Use this when the user asks "what integrations do I have?", "show me the integrations", "what is the Coding integration configured with?", or before calling integration_improve to see what fields exist and what they're set to.`,
|
|
23030
23030
|
{},
|
|
23031
23031
|
async () => {
|
|
23032
|
-
const data = await apiPost("/host/list-
|
|
23032
|
+
const data = await apiPost("/host/list-integrations", {
|
|
23033
23033
|
agent_id: AGT_AGENT_ID
|
|
23034
23034
|
});
|
|
23035
23035
|
if (!data.plugins.length) {
|
|
@@ -23089,7 +23089,7 @@ server.tool(
|
|
|
23089
23089
|
content: [{ type: "text", text: "Error: either integration_slug or integration_id is required." }]
|
|
23090
23090
|
};
|
|
23091
23091
|
}
|
|
23092
|
-
const data = await apiPost("/host/improve-
|
|
23092
|
+
const data = await apiPost("/host/improve-integration", {
|
|
23093
23093
|
agent_id: AGT_AGENT_ID,
|
|
23094
23094
|
integration_slug: integrationSlug,
|
|
23095
23095
|
integration_id: integrationId,
|
package/package.json
CHANGED
|
File without changes
|