@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/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-plugins", {
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-plugin", {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.235",
3
+ "version": "0.28.237",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {