@integrity-labs/agt-cli 0.20.7 → 0.20.8

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.
@@ -22,7 +22,7 @@ import {
22
22
  resolveChannels,
23
23
  resolveDmTarget,
24
24
  wrapScheduledTaskPrompt
25
- } from "../chunk-CDG7W2UD.js";
25
+ } from "../chunk-5A5EBN5L.js";
26
26
  import {
27
27
  findTaskByTemplate,
28
28
  getProjectDir,
@@ -2200,7 +2200,7 @@ function clearAgentCaches(agentId, codeName) {
2200
2200
  var cachedFrameworkVersion = null;
2201
2201
  var lastVersionCheckAt = 0;
2202
2202
  var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
2203
- var agtCliVersion = true ? "0.20.7" : "dev";
2203
+ var agtCliVersion = true ? "0.20.8" : "dev";
2204
2204
  function resolveBrewPath(execFileSync4) {
2205
2205
  try {
2206
2206
  const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
@@ -14357,6 +14357,7 @@ var mcp = new Server(
14357
14357
  'Messages from the webapp Direct Chat arrive as <channel source="direct-chat" session_id="..." user="...">.',
14358
14358
  "Reply using the direct_chat.reply tool, passing the session_id from the tag.",
14359
14359
  "Always reply to every direct chat message \u2014 the user is waiting in the webapp.",
14360
+ "Long task (3+ tool calls or >5s)? Use direct_chat_progress_start (session_id), then direct_chat_progress_update between steps, then direct_chat_progress_complete or _fail. One anchor edits in place rather than spawning a new reply each step. Skip for one-shot Q&A.",
14360
14361
  "Keep replies concise and helpful. You have full access to all your MCP tools."
14361
14362
  ].join(" ")
14362
14363
  }
@@ -16467,6 +16467,7 @@ var mcp = new Server(
16467
16467
  // 2048 chars, so anything appended late silently disappears.
16468
16468
  "CRITICAL: every response to a Slack <channel> tag MUST go through slack.reply. Text in your session WITHOUT a slack.reply call never reaches the user \u2014 the message dies inside the agent process.",
16469
16469
  'Messages from Slack arrive as <channel source="slack" user="<slack-id>" user_name="<display-name>" channel="..." thread_ts="...">. Pass channel + thread_ts from the tag to slack.reply; always include thread_ts on threaded replies.',
16470
+ "Long task (3+ tool calls or >5s)? slack_progress_start (channel + thread_ts), slack_progress_update between steps, slack_progress_complete/_fail to close. One anchor edits in place; avoids thread spam. Not for one-shots.",
16470
16471
  selfIdentityInstruction,
16471
16472
  "Inbound attachments: <channel> `files` is a JSON-serialised array \u2014 JSON.parse it. If an entry has `path`, the image is already downloaded \u2014 Read it directly, do NOT call slack.download_attachment. Use that tool only for entries with `file_id` but NO `path` (PDF, docx, csv): pass file_id + channel verbatim, then Read the returned path. Single-image messages also get a top-level `image_path`. Don't surface internal file-handling errors that don't affect the answer.",
16472
16473
  "Address users by user_name, never by raw user ID. In multi-participant threads the CURRENT speaker is the one on the latest <channel> tag.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.20.7",
3
+ "version": "0.20.8",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {