@integrity-labs/agt-cli 0.27.7-test.5 → 0.27.7-test.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.
- package/dist/assets/impersonate-statusline.sh +88 -0
- package/dist/bin/agt.js +246 -85
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-WCY7QM3R.js → chunk-AACMX6LE.js} +1 -1
- package/dist/lib/manager-worker.js +9 -9
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +47 -0
- package/dist/mcp/index.js +78 -78
- package/dist/mcp/slack-channel.js +50 -0
- package/dist/mcp/telegram-channel.js +50 -1
- package/package.json +3 -2
- /package/dist/{chunk-WCY7QM3R.js.map → chunk-AACMX6LE.js.map} +0 -0
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
provisionOrientHook,
|
|
16
16
|
provisionStopHook,
|
|
17
17
|
requireHost
|
|
18
|
-
} from "../chunk-
|
|
18
|
+
} from "../chunk-AACMX6LE.js";
|
|
19
19
|
import {
|
|
20
20
|
getProjectDir as getProjectDir2,
|
|
21
21
|
getReadyTasks,
|
|
@@ -3166,7 +3166,7 @@ var cachedFrameworkVersion = null;
|
|
|
3166
3166
|
var lastVersionCheckAt = 0;
|
|
3167
3167
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
3168
3168
|
var lastResponsivenessProbeAt = 0;
|
|
3169
|
-
var agtCliVersion = true ? "0.27.7-test.
|
|
3169
|
+
var agtCliVersion = true ? "0.27.7-test.6" : "dev";
|
|
3170
3170
|
function resolveBrewPath(execFileSync4) {
|
|
3171
3171
|
try {
|
|
3172
3172
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -3860,9 +3860,9 @@ Integration skills under \`.claude/skills/integration-*/SKILL.md\` are **read-on
|
|
|
3860
3860
|
|
|
3861
3861
|
**Never edit \`.claude/skills/integration-*/SKILL.md\` files directly.** If you do, your edit will be silently overwritten on the next manager refresh, AND it won't propagate to other agents using the same integration.
|
|
3862
3862
|
|
|
3863
|
-
To change an integration's behavior (add a rule, update a default, tell the integration not to do something), call the **\`
|
|
3863
|
+
To change an integration's behavior (add a rule, update a default, tell the integration not to do something), call the **\`plugin_improve\`** MCP tool with the user's request. The tool calls the platform API, which uses an LLM to translate the request into a structured update of the integration's typed context fields and/or freeform overrides text. You'll get a diff back to show the user; on confirmation, call the tool again with \`auto_apply: true\` to apply.
|
|
3864
3864
|
|
|
3865
|
-
Examples of when to use \`
|
|
3865
|
+
Examples of when to use \`plugin_improve\`:
|
|
3866
3866
|
- *"Update the Coding integration so we always use trunk instead of main"*
|
|
3867
3867
|
- *"Add a rule to the Coding integration: never merge directly to main, always open a PR"*
|
|
3868
3868
|
- *"Tell the Knowledge Base integration not to return results below 70% relevance"*
|
|
@@ -7678,10 +7678,10 @@ function formatBoardForPrompt(items, template) {
|
|
|
7678
7678
|
lines.push("=========================");
|
|
7679
7679
|
lines.push("");
|
|
7680
7680
|
lines.push("IMPORTANT: Use kanban MCP tools to update the board IN REAL TIME:");
|
|
7681
|
-
lines.push("1. FIRST call
|
|
7681
|
+
lines.push("1. FIRST call kanban_move to move your chosen item to in_progress BEFORE starting work");
|
|
7682
7682
|
lines.push("2. Do the work");
|
|
7683
|
-
lines.push("3. Call
|
|
7684
|
-
lines.push("4. If blocked, call
|
|
7683
|
+
lines.push("3. Call kanban_done with a result summary when finished");
|
|
7684
|
+
lines.push("4. If blocked, call kanban_update with notes, then pick the next item");
|
|
7685
7685
|
lines.push("");
|
|
7686
7686
|
if (hasSourceThread) {
|
|
7687
7687
|
lines.push("THREAD CONTINUITY: If a card shows a `source:` line, the request originated");
|
|
@@ -7692,8 +7692,8 @@ function formatBoardForPrompt(items, template) {
|
|
|
7692
7692
|
lines.push("");
|
|
7693
7693
|
}
|
|
7694
7694
|
lines.push("SELF-MANAGEMENT: When you receive a request from a channel (Slack, Telegram)");
|
|
7695
|
-
lines.push("that takes more than a quick response, create a task first with
|
|
7696
|
-
lines.push("move to in_progress, do the work, then
|
|
7695
|
+
lines.push("that takes more than a quick response, create a task first with kanban_add,");
|
|
7696
|
+
lines.push("move to in_progress, do the work, then kanban_done with a result summary.");
|
|
7697
7697
|
lines.push("");
|
|
7698
7698
|
lines.push("If MCP tools are unavailable, include a KANBAN UPDATE section in your output:");
|
|
7699
7699
|
lines.push("KANBAN UPDATE:");
|