@fjall/ai-tools 3.7.0 → 3.8.1
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.
|
@@ -41,7 +41,7 @@ export const MANAGE_DOMAIN_MUTATION_COMMANDS = [
|
|
|
41
41
|
{
|
|
42
42
|
command: `fjall domain sync ${ZONE_PLACEHOLDER} --fix`,
|
|
43
43
|
purpose: "Delete residue records (the records sync_report classifies 'residue').",
|
|
44
|
-
ceremony: "Same consent shape: --remediate '<name>/<TYPE>[@<setIdentifier>]'=recreate. 'unknown' rows never appear on the ticket — classification fails closed; exit 4 means nothing was deleted.",
|
|
44
|
+
ceremony: "Same consent shape: --remediate '<name>/<TYPE>[@<setIdentifier>]'=recreate. 'unknown' rows never appear on the ticket — classification fails closed; exit 4 means nothing was deleted. A delegated child's NS row classifying 'unknown' is cured by setting \"account\" on its fjall-config.json domain entry, not by --fix.",
|
|
45
45
|
},
|
|
46
46
|
{
|
|
47
47
|
command: `fjall domain delegate ${ZONE_PLACEHOLDER}`,
|
package/dist/registry.js
CHANGED
|
@@ -40,7 +40,7 @@ export const AI_TOOL_REGISTRY = [
|
|
|
40
40
|
spec("trigger_deployment", "Trigger a new deployment for an application. Verifies the application exists, has a connected AWS account and repository, and no active deployment is running. Creates a deployment record and enqueues it for processing.", triggerDeploymentSchema, "write", "admin"),
|
|
41
41
|
spec("manage_secret", "Manage application secrets stored in AWS SSM Parameter Store. Supports: list (show secret names without values), set (create or update), and delete. Never exposes secret values — the get operation is intentionally excluded.", manageSecretSchema, "write", "admin"),
|
|
42
42
|
spec("update_configuration", "Update an application's configuration — name, description, or config path. Only safe, non-security-sensitive fields can be changed. At least one field must be provided.", updateConfigurationSchema, "write", "admin"),
|
|
43
|
-
spec("manage_domain", `Read-only domain management mirroring the CLI domain surface. Operations: list (declared domains with live zone and stack status), records_list (every live record with its ownership classification - declared/satellite/residue/unknown; unknown is never remediable, classification fails closed), sync_report (the same classification as a read-only report - this tool never deletes records), verify (DNS nameserver delegation check), and mutation_commands (the exact ceremony-gated CLI commands for ${MANAGE_DOMAIN_MUTATION_SUMMARY}, which this tool never executes - destructive consent stays with the user).`, manageDomainSchema, "read"),
|
|
43
|
+
spec("manage_domain", `Read-only domain management mirroring the CLI domain surface. Operations: list (declared domains with live zone and stack status), records_list (every live record with its ownership classification - declared/satellite/residue/unknown; satellite includes a delegated child's domain stack in another AWS account; unknown is never remediable, classification fails closed), sync_report (the same classification as a read-only report - this tool never deletes records), verify (DNS nameserver delegation check), and mutation_commands (the exact ceremony-gated CLI commands for ${MANAGE_DOMAIN_MUTATION_SUMMARY}, which this tool never executes - destructive consent stays with the user).`, manageDomainSchema, "read"),
|
|
44
44
|
spec("provision_region", "Add an AWS region to the organisation and deploy infrastructure to it. Shows a consequence preview (affected accounts, deployment shape) before asking the user to confirm. Requires admin role.", provisionRegionSchema, "write", "admin"),
|
|
45
45
|
];
|
|
46
46
|
/** Look up a tool spec by name. */
|
|
@@ -24,8 +24,10 @@ export const manageDomainSchema = z
|
|
|
24
24
|
])
|
|
25
25
|
.describe("list: declared domains with live zone/stack status; " +
|
|
26
26
|
"records_list: every live record with its ownership classification " +
|
|
27
|
-
"(declared/satellite/residue/unknown
|
|
28
|
-
"
|
|
27
|
+
"(declared/satellite/residue/unknown; satellite includes a " +
|
|
28
|
+
"delegated child's domain stack in another AWS account; unknown " +
|
|
29
|
+
"is NEVER remediable; classification fails closed); " +
|
|
30
|
+
"sync_report: the same classification " +
|
|
29
31
|
"grouped per class as a read-only report (never deletes anything); " +
|
|
30
32
|
"verify: DNS nameserver delegation check; mutation_commands: the " +
|
|
31
33
|
"exact ceremony-gated CLI commands for the mutations this tool " +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fjall/ai-tools",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"description": "Shared AI tool schemas and registry for Fjall webapp and CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=22.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "c15e42f3d2047acbbe086518450c77ae68839e1d"
|
|
55
55
|
}
|