@integrity-labs/agt-cli 0.27.1 → 0.27.3
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 +11 -6
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-UVPB6TSJ.js → chunk-AFRYJUBD.js} +5 -4
- package/dist/{chunk-UVPB6TSJ.js.map → chunk-AFRYJUBD.js.map} +1 -1
- package/dist/{chunk-WDCSMDQ4.js → chunk-CSDKWI5V.js} +42 -5
- package/dist/chunk-CSDKWI5V.js.map +1 -0
- package/dist/{chunk-CTWY2X4S.js → chunk-JTZZ6YB2.js} +7 -1
- package/dist/chunk-JTZZ6YB2.js.map +1 -0
- package/dist/{claude-pair-runtime-YRPKT45R.js → claude-pair-runtime-O6ZAT7MQ.js} +2 -2
- package/dist/lib/manager-worker.js +7 -7
- package/dist/mcp/index.js +45 -6
- package/dist/{persistent-session-QJT7JE5P.js → persistent-session-3MXZBC5W.js} +3 -3
- package/dist/{responsiveness-probe-ZERSZOZ2.js → responsiveness-probe-37336LTO.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-CTWY2X4S.js.map +0 -1
- package/dist/chunk-WDCSMDQ4.js.map +0 -1
- /package/dist/{claude-pair-runtime-YRPKT45R.js.map → claude-pair-runtime-O6ZAT7MQ.js.map} +0 -0
- /package/dist/{persistent-session-QJT7JE5P.js.map → persistent-session-3MXZBC5W.js.map} +0 -0
- /package/dist/{responsiveness-probe-ZERSZOZ2.js.map → responsiveness-probe-37336LTO.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
parseDeliveryTarget,
|
|
10
10
|
registerFramework,
|
|
11
11
|
wrapScheduledTaskPrompt
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-JTZZ6YB2.js";
|
|
13
13
|
|
|
14
14
|
// ../../packages/core/dist/integrations/registry.js
|
|
15
15
|
var INTEGRATION_REGISTRY = [
|
|
@@ -5548,9 +5548,9 @@ These credentials are pre-loaded. Reference them by their environment variable n
|
|
|
5548
5548
|
}
|
|
5549
5549
|
sections.push(`## Work Management
|
|
5550
5550
|
|
|
5551
|
-
**When in doubt, create a task.**
|
|
5551
|
+
**When in doubt, create a task.** Track a request as a kanban task when handling it will take more than ~30 seconds **or more than 3 tool calls** \u2014 whichever you hit first. The tool-call count is the more reliable trigger: you can't always estimate wall-clock time, but you can usually see up front that the work needs, say, a search, a couple of reads, and an edit. Count only the tool calls that do the actual work \u2014 the channel reply acknowledging the task and the kanban bookkeeping calls themselves don't count toward the 3. Err on the side of creating a task rather than doing work silently.
|
|
5552
5552
|
|
|
5553
|
-
The only things that don't need a task: one-line answers, yes/no questions, simple
|
|
5553
|
+
The only things that don't need a task: one-line answers, yes/no questions, a simple lookup you can answer in a tool call or two (under ~30 seconds), or no-action acknowledgments ("thanks", "got it", "acknowledged", "will do") that require no further work. Everything else gets a task.
|
|
5554
5554
|
|
|
5555
5555
|
The cost of an unnecessary task is near zero. The cost of invisible work is confusion, duplication, and lost context.
|
|
5556
5556
|
|
|
@@ -6671,6 +6671,7 @@ export {
|
|
|
6671
6671
|
getApiKey,
|
|
6672
6672
|
getActiveTeam,
|
|
6673
6673
|
setActiveTeam,
|
|
6674
|
+
DEFAULT_AGT_HOST,
|
|
6674
6675
|
getHost,
|
|
6675
6676
|
requireHost,
|
|
6676
6677
|
exchangeApiKey,
|
|
@@ -6694,4 +6695,4 @@ export {
|
|
|
6694
6695
|
managerInstallSystemUnitCommand,
|
|
6695
6696
|
managerUninstallSystemUnitCommand
|
|
6696
6697
|
};
|
|
6697
|
-
//# sourceMappingURL=chunk-
|
|
6698
|
+
//# sourceMappingURL=chunk-AFRYJUBD.js.map
|