@integrity-labs/agt-cli 0.28.698 → 0.28.700

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.
Files changed (25) hide show
  1. package/dist/bin/agt.js +5 -5
  2. package/dist/{chunk-SWU4NBD2.js → chunk-GE2FIKUX.js} +2 -2
  3. package/dist/{chunk-SBHIDSET.js → chunk-MZWFZIN2.js} +66 -12
  4. package/dist/chunk-MZWFZIN2.js.map +1 -0
  5. package/dist/{chunk-EXCMPARK.js → chunk-QRQE2MVT.js} +5 -41
  6. package/dist/chunk-QRQE2MVT.js.map +1 -0
  7. package/dist/{claude-pair-runtime-5CLVPPM4.js → claude-pair-runtime-NVLSNWWS.js} +2 -2
  8. package/dist/lib/manager-worker.js +73 -21
  9. package/dist/lib/manager-worker.js.map +1 -1
  10. package/dist/mcp/direct-chat-channel.js +1 -0
  11. package/dist/mcp/index.js +2 -1
  12. package/dist/mcp/origami.js +1 -0
  13. package/dist/mcp/slack-channel.js +1 -0
  14. package/dist/mcp/telegram-channel.js +1 -0
  15. package/dist/{persistent-session-YM5ELNFF.js → persistent-session-7XILEFLF.js} +3 -3
  16. package/dist/{responsiveness-probe-7FWQQZDJ.js → responsiveness-probe-ZU33A2GB.js} +3 -3
  17. package/dist/{session-auth-dead-GRR6Y5ZP.js → session-auth-dead-ODQB4UPP.js} +2 -2
  18. package/package.json +1 -1
  19. package/dist/chunk-EXCMPARK.js.map +0 -1
  20. package/dist/chunk-SBHIDSET.js.map +0 -1
  21. /package/dist/{chunk-SWU4NBD2.js.map → chunk-GE2FIKUX.js.map} +0 -0
  22. /package/dist/{claude-pair-runtime-5CLVPPM4.js.map → claude-pair-runtime-NVLSNWWS.js.map} +0 -0
  23. /package/dist/{persistent-session-YM5ELNFF.js.map → persistent-session-7XILEFLF.js.map} +0 -0
  24. /package/dist/{responsiveness-probe-7FWQQZDJ.js.map → responsiveness-probe-ZU33A2GB.js.map} +0 -0
  25. /package/dist/{session-auth-dead-GRR6Y5ZP.js.map → session-auth-dead-ODQB4UPP.js.map} +0 -0
@@ -34623,6 +34623,7 @@ var SEP2 = /[\s·\-–—]+/.source;
34623
34623
  var WINDOW_LINE = new RegExp(`^\\s*Current\\s+(session|week)(?:\\s*\\(([^)]*)\\))?\\s*:\\s*(\\d{1,3})%\\s+used(?:${SEP2}resets\\s+(${RESET_DATE_SOURCE}))?\\s*$`, "gim");
34624
34624
 
34625
34625
  // ../core/dist/claude-code-usage/host-usage-reading.js
34626
+ var HOST_USAGE_POLL_INTERVAL_MS = 15 * 60 * 1e3;
34626
34627
  var RESET_JITTER_TOLERANCE_MS = 5 * 60 * 1e3;
34627
34628
 
34628
34629
  // ../core/dist/claude-code-usage/rate-limit-classifier.js
package/dist/mcp/index.js CHANGED
@@ -41835,6 +41835,7 @@ var SEP2 = /[\s·\-–—]+/.source;
41835
41835
  var WINDOW_LINE = new RegExp(`^\\s*Current\\s+(session|week)(?:\\s*\\(([^)]*)\\))?\\s*:\\s*(\\d{1,3})%\\s+used(?:${SEP2}resets\\s+(${RESET_DATE_SOURCE}))?\\s*$`, "gim");
41836
41836
 
41837
41837
  // ../core/dist/claude-code-usage/host-usage-reading.js
41838
+ var HOST_USAGE_POLL_INTERVAL_MS = 15 * 60 * 1e3;
41838
41839
  var RESET_JITTER_TOLERANCE_MS = 5 * 60 * 1e3;
41839
41840
 
41840
41841
  // ../core/dist/claude-code-usage/rate-limit-classifier.js
@@ -46141,7 +46142,7 @@ server.tool(
46141
46142
  );
46142
46143
  server.tool(
46143
46144
  "knowledge_list",
46144
- "List knowledge entries (ids, titles, source types, and scope) visible to this agent: both team-scoped and organization-scoped. Use before knowledge_add to check if a fact is already saved, or before knowledge_update/delete to find the target id AND its scope (you must pass the same scope to update/delete it). Returns metadata only; fetch the full content via the webapp if you need to read an entry back.",
46145
+ "The INDEX of your knowledge base: every entry visible to this agent, team-scoped and organization-scoped, as scope + title + source type + id. Call it when you need to know WHAT you know \u2014 including when a question sounds like it should be covered but you are not sure an entry exists. Returns titles and metadata only, no bodies. To read the CONTENT of an entry, call context_search (semantic; searches content across knowledge + memories + tasks). knowledge_search matches titles and slugs ONLY and never reads entry contents, so it cannot retrieve a body \u2014 reach for it only when you already know a title or slug. Also use it before knowledge_add to avoid duplicates, and before knowledge_update/delete to find the target id AND its scope (you must pass the same scope back).",
46145
46146
  {},
46146
46147
  async () => {
46147
46148
  const data = await apiPost("/host/my-knowledge", {
@@ -40643,6 +40643,7 @@ var SEP2 = /[\s·\-–—]+/.source;
40643
40643
  var WINDOW_LINE = new RegExp(`^\\s*Current\\s+(session|week)(?:\\s*\\(([^)]*)\\))?\\s*:\\s*(\\d{1,3})%\\s+used(?:${SEP2}resets\\s+(${RESET_DATE_SOURCE}))?\\s*$`, "gim");
40644
40644
 
40645
40645
  // ../core/dist/claude-code-usage/host-usage-reading.js
40646
+ var HOST_USAGE_POLL_INTERVAL_MS = 15 * 60 * 1e3;
40646
40647
  var RESET_JITTER_TOLERANCE_MS = 5 * 60 * 1e3;
40647
40648
 
40648
40649
  // ../core/dist/claude-code-usage/rate-limit-classifier.js
@@ -34831,6 +34831,7 @@ var SEP2 = /[\s·\-–—]+/.source;
34831
34831
  var WINDOW_LINE = new RegExp(`^\\s*Current\\s+(session|week)(?:\\s*\\(([^)]*)\\))?\\s*:\\s*(\\d{1,3})%\\s+used(?:${SEP2}resets\\s+(${RESET_DATE_SOURCE}))?\\s*$`, "gim");
34832
34832
 
34833
34833
  // ../core/dist/claude-code-usage/host-usage-reading.js
34834
+ var HOST_USAGE_POLL_INTERVAL_MS = 15 * 60 * 1e3;
34834
34835
  var RESET_JITTER_TOLERANCE_MS = 5 * 60 * 1e3;
34835
34836
 
34836
34837
  // ../core/dist/claude-code-usage/rate-limit-classifier.js
@@ -34987,6 +34987,7 @@ var SEP2 = /[\s·\-–—]+/.source;
34987
34987
  var WINDOW_LINE = new RegExp(`^\\s*Current\\s+(session|week)(?:\\s*\\(([^)]*)\\))?\\s*:\\s*(\\d{1,3})%\\s+used(?:${SEP2}resets\\s+(${RESET_DATE_SOURCE}))?\\s*$`, "gim");
34988
34988
 
34989
34989
  // ../core/dist/claude-code-usage/host-usage-reading.js
34990
+ var HOST_USAGE_POLL_INTERVAL_MS = 15 * 60 * 1e3;
34990
34991
  var RESET_JITTER_TOLERANCE_MS = 5 * 60 * 1e3;
34991
34992
 
34992
34993
  // ../core/dist/claude-code-usage/rate-limit-classifier.js
@@ -43,8 +43,8 @@ import {
43
43
  writeDirectChatSessionState,
44
44
  writeEgressAllowlist,
45
45
  writePersistentClaudeWrapper
46
- } from "./chunk-SWU4NBD2.js";
47
- import "./chunk-EXCMPARK.js";
46
+ } from "./chunk-GE2FIKUX.js";
47
+ import "./chunk-QRQE2MVT.js";
48
48
  import "./chunk-XWVM4KPK.js";
49
49
  export {
50
50
  EGRESS_BASELINE_DOMAINS,
@@ -92,4 +92,4 @@ export {
92
92
  writeEgressAllowlist,
93
93
  writePersistentClaudeWrapper
94
94
  };
95
- //# sourceMappingURL=persistent-session-YM5ELNFF.js.map
95
+ //# sourceMappingURL=persistent-session-7XILEFLF.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-SWU4NBD2.js";
4
- import "./chunk-EXCMPARK.js";
3
+ } from "./chunk-GE2FIKUX.js";
4
+ import "./chunk-QRQE2MVT.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -745,4 +745,4 @@ export {
745
745
  readAndResetSlackReplyBindingClassifications,
746
746
  readAndResetSlackReplyTargetClassifications
747
747
  };
748
- //# sourceMappingURL=responsiveness-probe-7FWQQZDJ.js.map
748
+ //# sourceMappingURL=responsiveness-probe-ZU33A2GB.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-EXCMPARK.js";
3
+ } from "./chunk-QRQE2MVT.js";
4
4
 
5
5
  // src/lib/session-auth-dead.ts
6
6
  import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
@@ -203,4 +203,4 @@ export {
203
203
  decideSessionAuthState,
204
204
  probeSessionAuth
205
205
  };
206
- //# sourceMappingURL=session-auth-dead-GRR6Y5ZP.js.map
206
+ //# sourceMappingURL=session-auth-dead-ODQB4UPP.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.698",
3
+ "version": "0.28.700",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {