@integrity-labs/agt-cli 0.28.129 → 0.28.130
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 +4 -4
- package/dist/{chunk-NCRDTQ54.js → chunk-RIT2OY5S.js} +29 -21
- package/dist/chunk-RIT2OY5S.js.map +1 -0
- package/dist/{chunk-KIHRKGQI.js → chunk-RTSX4A54.js} +26 -22
- package/dist/chunk-RTSX4A54.js.map +1 -0
- package/dist/{chunk-GNDZBP3I.js → chunk-XBF7ACI5.js} +2 -2
- package/dist/{claude-pair-runtime-DDIIKRDG.js → claude-pair-runtime-F5KZNGVO.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/{persistent-session-YPKC2K44.js → persistent-session-YU3FIAUK.js} +3 -3
- package/dist/{responsiveness-probe-43JLWBJI.js → responsiveness-probe-TN5JW2NM.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-KIHRKGQI.js.map +0 -1
- package/dist/chunk-NCRDTQ54.js.map +0 -1
- /package/dist/{chunk-GNDZBP3I.js.map → chunk-XBF7ACI5.js.map} +0 -0
- /package/dist/{claude-pair-runtime-DDIIKRDG.js.map → claude-pair-runtime-F5KZNGVO.js.map} +0 -0
- /package/dist/{persistent-session-YPKC2K44.js.map → persistent-session-YU3FIAUK.js.map} +0 -0
- /package/dist/{responsiveness-probe-43JLWBJI.js.map → responsiveness-probe-TN5JW2NM.js.map} +0 -0
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
resolveConnectivityProbe,
|
|
23
23
|
worseConnectivityOutcome,
|
|
24
24
|
wrapScheduledTaskPrompt
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-RIT2OY5S.js";
|
|
26
26
|
|
|
27
27
|
// ../../packages/core/dist/integrations/registry.js
|
|
28
28
|
var INTEGRATION_REGISTRY = [
|
|
@@ -3043,35 +3043,39 @@ you MUST use the Augmented MCP tools \u2014 never write to
|
|
|
3043
3043
|
### Always confirm scope before creating
|
|
3044
3044
|
|
|
3045
3045
|
Before invoking \`skill_create\`, ask the user: **"Should this skill be
|
|
3046
|
-
agent-scoped (only this agent uses it)
|
|
3047
|
-
the team
|
|
3048
|
-
just says "create a skill" without
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3046
|
+
agent-scoped (only this agent uses it), team-scoped (every agent on
|
|
3047
|
+
the team), or organization-scoped (every team in the org)?"** Default
|
|
3048
|
+
to agent scope when the user just says "create a skill" without
|
|
3049
|
+
specifying. Agent-scoped skills install immediately. Team- and
|
|
3050
|
+
organization-scoped skills are scanned for security on create: a clean
|
|
3051
|
+
scan auto-publishes them to the shared catalog; a finding at or above
|
|
3052
|
+
the configured severity threshold holds them as a draft for operator
|
|
3053
|
+
review.
|
|
3052
3054
|
|
|
3053
3055
|
### Quote the review link in your reply
|
|
3054
3056
|
|
|
3055
|
-
\`skill_create\` returns a \`review_url\` field when
|
|
3056
|
-
a draft awaiting operator review
|
|
3057
|
+
\`skill_create\` returns a \`review_url\` field when a shared skill lands
|
|
3058
|
+
as a draft awaiting operator review (the security scan flagged it, or
|
|
3059
|
+
the scanner was unavailable). Quote that URL back to the user in
|
|
3057
3060
|
your reply (e.g. \`"Created \u2014 review here: <url>"\`) so the operator
|
|
3058
3061
|
can one-click navigate to the Pending Skills card and publish or
|
|
3059
3062
|
reject without hunting through the queue.
|
|
3060
3063
|
|
|
3061
3064
|
### Why this matters
|
|
3062
3065
|
|
|
3063
|
-
Skills authored via the MCP land in the
|
|
3064
|
-
\`skill_definitions\` registry, so
|
|
3065
|
-
|
|
3066
|
-
and operators
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3066
|
+
Skills authored via the MCP land in the shared
|
|
3067
|
+
\`skill_definitions\` registry, so the skill propagates to every agent in
|
|
3068
|
+
scope on next refresh, the manager re-provisions them on the agent's host,
|
|
3069
|
+
and operators retain visibility (clean shared publishes are announced;
|
|
3070
|
+
flagged ones queue for review). Files written to local
|
|
3071
|
+
\`.claude/skills/\` get wiped the next time the manager rebuilds the
|
|
3072
|
+
provision tree, never reach other agents, and bypass scanning and
|
|
3073
|
+
operator review entirely.
|
|
3070
3074
|
|
|
3071
|
-
If
|
|
3072
|
-
(\`charter.tools.skills.
|
|
3073
|
-
refused server-side \u2014 surface that
|
|
3074
|
-
falling back to a local-disk write.
|
|
3075
|
+
If an operator has revoked this agent's shared-scope authoring
|
|
3076
|
+
(\`charter.tools.skills.shared_authoring\` is false), team- and
|
|
3077
|
+
organization-scope calls will be refused server-side \u2014 surface that
|
|
3078
|
+
error to the user rather than falling back to a local-disk write.
|
|
3075
3079
|
|
|
3076
3080
|
`;
|
|
3077
3081
|
}
|
|
@@ -7688,7 +7692,7 @@ function requireHost() {
|
|
|
7688
7692
|
}
|
|
7689
7693
|
|
|
7690
7694
|
// src/lib/api-client.ts
|
|
7691
|
-
var agtCliVersion = true ? "0.28.
|
|
7695
|
+
var agtCliVersion = true ? "0.28.130" : "dev";
|
|
7692
7696
|
var lastConfigHash = null;
|
|
7693
7697
|
function setConfigHash(hash) {
|
|
7694
7698
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -8985,4 +8989,4 @@ export {
|
|
|
8985
8989
|
managerInstallSystemUnitCommand,
|
|
8986
8990
|
managerUninstallSystemUnitCommand
|
|
8987
8991
|
};
|
|
8988
|
-
//# sourceMappingURL=chunk-
|
|
8992
|
+
//# sourceMappingURL=chunk-RTSX4A54.js.map
|