@integrity-labs/agt-cli 0.28.676 → 0.28.678
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 +5 -5
- package/dist/{chunk-S6TPCOGW.js → chunk-3PCP5NT2.js} +551 -397
- package/dist/chunk-3PCP5NT2.js.map +1 -0
- package/dist/{chunk-AJNES24H.js → chunk-5DHJE2G7.js} +49 -1
- package/dist/chunk-5DHJE2G7.js.map +1 -0
- package/dist/{chunk-7Y54PSMR.js → chunk-LTOGVWUR.js} +2 -2
- package/dist/{claude-pair-runtime-VAU7UXE4.js → claude-pair-runtime-X6CWJNW2.js} +2 -2
- package/dist/lib/manager-worker.js +15 -13
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/augmented-admin.js +34 -1
- package/dist/mcp/direct-chat-channel.js +48 -0
- package/dist/mcp/index.js +48 -0
- package/dist/mcp/origami.js +48 -0
- package/dist/mcp/slack-channel.js +48 -0
- package/dist/mcp/telegram-channel.js +48 -0
- package/dist/{persistent-session-F7JEOWHQ.js → persistent-session-EZEYH3PM.js} +3 -3
- package/dist/{responsiveness-probe-7465YNMN.js → responsiveness-probe-VS6GODYP.js} +3 -3
- package/dist/{session-auth-dead-GBC5QPH3.js → session-auth-dead-7U24PZZS.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-AJNES24H.js.map +0 -1
- package/dist/chunk-S6TPCOGW.js.map +0 -1
- /package/dist/{chunk-7Y54PSMR.js.map → chunk-LTOGVWUR.js.map} +0 -0
- /package/dist/{claude-pair-runtime-VAU7UXE4.js.map → claude-pair-runtime-X6CWJNW2.js.map} +0 -0
- /package/dist/{persistent-session-F7JEOWHQ.js.map → persistent-session-EZEYH3PM.js.map} +0 -0
- /package/dist/{responsiveness-probe-7465YNMN.js.map → responsiveness-probe-VS6GODYP.js.map} +0 -0
- /package/dist/{session-auth-dead-GBC5QPH3.js.map → session-auth-dead-7U24PZZS.js.map} +0 -0
|
@@ -4950,6 +4950,29 @@ var FLAG_REGISTRY = [
|
|
|
4950
4950
|
// first the real cut is higher than this and the pin under-reports.
|
|
4951
4951
|
since: "0.28.570"
|
|
4952
4952
|
},
|
|
4953
|
+
{
|
|
4954
|
+
key: "secret-files-tmpfs",
|
|
4955
|
+
description: "Host-side RAM-backing of the per-agent .env.integrations secret files (ENG-9348, epic ENG-9347). When on, the manager turns both copies (the agent-dir file and the project/ mirror) into symlinks pointing at a 0700 per-agent directory under tmpfs (/dev/shm, else /run), so plaintext channel/integration tokens live only in RAM: the persistent EBS volume holds a symlink (no token bytes), an EBS snapshot captures nothing, and a host shutdown is a genuine wipe. Every consumer path is unchanged (same file paths). Boolean gate; ships dark. Fail-safe in every direction \u2014 off is byte-for-byte today; a host with no genuine tmpfs root (e.g. macOS dev) silently keeps the persistent files; a symlink-setup error logs and falls back to the persistent path. Reboot clears tmpfs, and the manager re-backs on its next refresh (surviving reboot is not required \u2014 secrets are re-fetched on refresh).",
|
|
4956
|
+
flagType: "boolean",
|
|
4957
|
+
// Declared safe value is `false` (persistent files, today's behaviour).
|
|
4958
|
+
// Fail-safe direction: a flag-DB read error must never, on its own, start
|
|
4959
|
+
// relocating where prod secret files physically live. Flip on per-host for a
|
|
4960
|
+
// canary, verify no plaintext lands on the persistent volume, then fleet-wide
|
|
4961
|
+
// from the admin Feature Flags page.
|
|
4962
|
+
defaultValue: false,
|
|
4963
|
+
// ADR-0022 operator override, read by the host flag store's env layer (not a
|
|
4964
|
+
// hand-written process.env gate) — same posture as memory-extraction /
|
|
4965
|
+
// tool-call-audit above. Gives a per-host canary before the DB flag exists.
|
|
4966
|
+
envVar: "AGT_SECRET_FILES_TMPFS_ENABLED",
|
|
4967
|
+
// Deliberately-unreachable placeholder until this ships: no published CLI
|
|
4968
|
+
// carries the manager reader + core writer yet, so reach must report "no
|
|
4969
|
+
// host honors" rather than the `honors`-for-everyone that omitting `since`
|
|
4970
|
+
// produces. MOVE THIS PIN to the actual auto-published agt-cli version at
|
|
4971
|
+
// merge (auto-publish patch-bumps from main; verify against the tarball, the
|
|
4972
|
+
// ENG-8575/ENG-9350 lesson) — the marker is `setSecretFileTmpfsBacking` in
|
|
4973
|
+
// package/dist/lib/manager-worker.js.
|
|
4974
|
+
since: "99.0.0"
|
|
4975
|
+
},
|
|
4953
4976
|
{
|
|
4954
4977
|
key: "memory-file-tombstones",
|
|
4955
4978
|
description: "Host-side removal of RETIRED agent memory files (ENG-9257). The control plane sends an explicit tombstone list on /host/memories and the manager moves the matching .md out of the agent's memory directory \u2014 but only when its write-time manifest says the manager itself wrote that exact file and the sha256 still matches, so an agent-edited or hand-authored file is retained and reported instead. Boolean gate; ships dark. Scope is retirement only, never expiry: /host/memories has always withheld expired rows, so an expiry-driven list would make months of accumulated backlog deletable on the first armed tick. This is the ONLY thing that makes retirement visible to the agent, which reads its memory directory straight off disk \u2014 every server-side reader already excludes retired rows, so with this off a retired memory is gone everywhere except the one surface that changes the agent's behaviour.",
|
|
@@ -5621,6 +5644,28 @@ var FLAG_REGISTRY = [
|
|
|
5621
5644
|
// exactly the org whose brand should be shown.
|
|
5622
5645
|
public: true
|
|
5623
5646
|
},
|
|
5647
|
+
{
|
|
5648
|
+
key: "ninjafy-logo",
|
|
5649
|
+
description: "Which Ninjafy logo TREATMENT the console chrome renders (ENG-9365). This is a SUB-SELECTION under ninjafy-brand, not a second brand gate: it is consulted only once ninjafy-brand has already resolved ON, so with the brand off the value is inert and the half-branded state that flag's description calls unreachable stays unreachable. ninjafy-brand remains the single kill switch for the rebrand. It exists so candidate logo treatments can be put in front of a human and compared in the running console, rather than judged from a static export. lockup = mark and wordmark together, both in the brand blue \u2014 exactly what ENG-9298 shipped, so an unset flag is a no-op. two-tone = the mark in brand blue with the wordmark in the neutral text colour (the treatment of the blue-icon/black-wordmark artwork). wordmark = the word alone, no mark. Every treatment is composed from the ENG-9298 geometry \u2014 ENG-9312 pins that the lockup's blue path IS the mark subpath followed by the wordmark subpaths, byte for byte \u2014 so a new treatment is a composition, never a fresh trace, and the three drawings cannot drift apart. Surfaces are the dashboard sidebar and the top nav. The top nav shows the WORDMARK portion at every width whatever the treatment, because ENG-9342 decided that deliberately (a full lockup at the header's icon height crowds the team switcher on a phone) \u2014 so a treatment changes the word's colour there, never whether a mark appears. The admin sidebar (ENG-9323) is NOT wired to this key and always renders the mark; widening it is a separate decision. Resolved SERVER-SIDE in (dashboard)/layout.tsx via getPublicEnumFlagServer, beside ninjafy-brand and in the same single GET /flags round trip, then passed down as a required prop. That is not a style preference: the client hook starts at its default and updates after an async fetch, so a client read would paint one logo and swap it after hydration \u2014 the exact flash ENG-9227 removed from the wordmark and ENG-8858 removed from the palette. Org and team are the useful pilot grains, as for ninjafy-brand: the single consumer evaluates in the active-org cookie scope, so a host- or agent-scoped override row is accepted by the table but never reached by the console.",
|
|
5650
|
+
flagType: "enum",
|
|
5651
|
+
allowedValues: ["lockup", "two-tone", "wordmark"],
|
|
5652
|
+
// Declared safe value is `lockup` — what ENG-9298 shipped. This flag has no
|
|
5653
|
+
// "off" direction: it selects among presentations that are all live-safe, so
|
|
5654
|
+
// fail-safe here means "the treatment currently in production", not the
|
|
5655
|
+
// narrowest one. A flag-DB read error, an archived row, or a stored value
|
|
5656
|
+
// outside allowedValues all resolve here (evaluate.ts normalizeFlagValue),
|
|
5657
|
+
// which is what makes an experimental value impossible to strand.
|
|
5658
|
+
defaultValue: "lockup",
|
|
5659
|
+
// Same trap as ninjafy-brand, and it bites harder here because there are no
|
|
5660
|
+
// client readers of this key AT ALL — it is server-resolved by construction.
|
|
5661
|
+
// `public` does NOT mean "read by a browser"; it means "readable through the
|
|
5662
|
+
// public map". getPublicEnumFlagServer resolves against the same GET /flags
|
|
5663
|
+
// endpoint the browser uses, and that route filters to listPublicFlagKeys()
|
|
5664
|
+
// (routes/flags.ts). Drop `public` and the key is simply absent from the map,
|
|
5665
|
+
// so the helper falls through to its default and returns `lockup` FOREVER —
|
|
5666
|
+
// the dropdown appearing to do nothing, with no error raised anywhere.
|
|
5667
|
+
public: true
|
|
5668
|
+
},
|
|
5624
5669
|
{
|
|
5625
5670
|
key: "agent-recruit",
|
|
5626
5671
|
description: "The `recruit_agent` MCP tool (ENG-8159): lets an ordinary managed agent PROPOSE a new teammate in its own org. The proposal is filed under the `agent.recruit` approval verb and routed to an org owner as a server-rendered card, so this gates the ASK \u2014 nothing is created until a human taps Approve. Deliberately distinct from augmented-support-writes, which gates the concierge's own create_agent surface: the two requesters are separately controllable because an org may well want its support concierge to propose agents without giving every agent in the fleet the same power. Ships dark.",
|
|
@@ -10555,6 +10600,9 @@ var USER_PRINCIPAL_SCOPE_LABELS = {
|
|
|
10555
10600
|
[NOTES_WRITE_SCOPE]: "Create meeting notes as you, read the notes you own, and see the names of your organizations and agents so you can choose where a note goes"
|
|
10556
10601
|
};
|
|
10557
10602
|
|
|
10603
|
+
// ../../packages/core/dist/admin-debug/resume-precondition.js
|
|
10604
|
+
var DEFAULT_RESUME_LOOKBACK_MS = 14 * 24 * 60 * 60 * 1e3;
|
|
10605
|
+
|
|
10558
10606
|
// ../../packages/core/dist/admin-debug/index.js
|
|
10559
10607
|
var STUCK_RESTART_THRESHOLD_SECONDS = 15 * 60;
|
|
10560
10608
|
|
|
@@ -12498,4 +12546,4 @@ export {
|
|
|
12498
12546
|
minutesSinceLocalMidnight,
|
|
12499
12547
|
peekCurrentSession
|
|
12500
12548
|
};
|
|
12501
|
-
//# sourceMappingURL=chunk-
|
|
12549
|
+
//# sourceMappingURL=chunk-5DHJE2G7.js.map
|