@caelo-cms/shared 0.2.2
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/ai-tools.d.ts +571 -0
- package/dist/ai-tools.d.ts.map +1 -0
- package/dist/ai-tools.js +696 -0
- package/dist/ai-tools.js.map +1 -0
- package/dist/auth-forms.d.ts +24 -0
- package/dist/auth-forms.d.ts.map +1 -0
- package/dist/auth-forms.js +27 -0
- package/dist/auth-forms.js.map +1 -0
- package/dist/cap-failures.d.ts +17 -0
- package/dist/cap-failures.d.ts.map +1 -0
- package/dist/cap-failures.js +58 -0
- package/dist/cap-failures.js.map +1 -0
- package/dist/content.d.ts +111 -0
- package/dist/content.d.ts.map +1 -0
- package/dist/content.js +137 -0
- package/dist/content.js.map +1 -0
- package/dist/context.d.ts +40 -0
- package/dist/context.d.ts.map +1 -0
- package/dist/context.js +3 -0
- package/dist/context.js.map +1 -0
- package/dist/i18n.d.ts +49 -0
- package/dist/i18n.d.ts.map +1 -0
- package/dist/i18n.js +154 -0
- package/dist/i18n.js.map +1 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -0
- package/dist/logger.d.ts +56 -0
- package/dist/logger.d.ts.map +1 -0
- package/dist/logger.js +84 -0
- package/dist/logger.js.map +1 -0
- package/dist/media.d.ts +143 -0
- package/dist/media.d.ts.map +1 -0
- package/dist/media.js +168 -0
- package/dist/media.js.map +1 -0
- package/dist/preview-compose.d.ts +84 -0
- package/dist/preview-compose.d.ts.map +1 -0
- package/dist/preview-compose.js +385 -0
- package/dist/preview-compose.js.map +1 -0
- package/dist/preview-scanner.d.ts +44 -0
- package/dist/preview-scanner.d.ts.map +1 -0
- package/dist/preview-scanner.js +177 -0
- package/dist/preview-scanner.js.map +1 -0
- package/dist/result.d.ts +21 -0
- package/dist/result.d.ts.map +1 -0
- package/dist/result.js +14 -0
- package/dist/result.js.map +1 -0
- package/dist/seo.d.ts +128 -0
- package/dist/seo.d.ts.map +1 -0
- package/dist/seo.js +176 -0
- package/dist/seo.js.map +1 -0
- package/dist/skills.d.ts +88 -0
- package/dist/skills.d.ts.map +1 -0
- package/dist/skills.js +127 -0
- package/dist/skills.js.map +1 -0
- package/dist/snapshots.d.ts +54 -0
- package/dist/snapshots.d.ts.map +1 -0
- package/dist/snapshots.js +59 -0
- package/dist/snapshots.js.map +1 -0
- package/dist/structured-sets.d.ts +116 -0
- package/dist/structured-sets.d.ts.map +1 -0
- package/dist/structured-sets.js +154 -0
- package/dist/structured-sets.js.map +1 -0
- package/dist/subagents.d.ts +123 -0
- package/dist/subagents.d.ts.map +1 -0
- package/dist/subagents.js +202 -0
- package/dist/subagents.js.map +1 -0
- package/dist/translation.d.ts +127 -0
- package/dist/translation.d.ts.map +1 -0
- package/dist/translation.js +208 -0
- package/dist/translation.js.map +1 -0
- package/dist/version.d.ts +46 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +46 -0
- package/dist/version.js.map +1 -0
- package/package.json +38 -0
|
@@ -0,0 +1,571 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for the AI tools shipped in P5. Lives in @caelo-cms/shared so
|
|
3
|
+
* the provider abstraction (which streams tool-call args from the LLM)
|
|
4
|
+
* and the tool dispatcher (which validates + invokes the handler)
|
|
5
|
+
* import from a single source.
|
|
6
|
+
*
|
|
7
|
+
* `.strict()` on every input — the LLM occasionally hallucinates fields
|
|
8
|
+
* and we want a typed rejection at the Validator boundary, not silent
|
|
9
|
+
* silent drops in the handler.
|
|
10
|
+
*/
|
|
11
|
+
import { z } from "zod";
|
|
12
|
+
export declare const editModuleToolInput: z.ZodObject<{
|
|
13
|
+
moduleId: z.ZodString;
|
|
14
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
15
|
+
html: z.ZodOptional<z.ZodString>;
|
|
16
|
+
css: z.ZodOptional<z.ZodString>;
|
|
17
|
+
js: z.ZodOptional<z.ZodString>;
|
|
18
|
+
}, z.core.$strict>;
|
|
19
|
+
export declare const siteMemoryProposeToolInput: z.ZodObject<{
|
|
20
|
+
slot: z.ZodEnum<{
|
|
21
|
+
purpose: "purpose";
|
|
22
|
+
"brand-voice": "brand-voice";
|
|
23
|
+
tone: "tone";
|
|
24
|
+
"banned-phrases": "banned-phrases";
|
|
25
|
+
instructions: "instructions";
|
|
26
|
+
glossary: "glossary";
|
|
27
|
+
}>;
|
|
28
|
+
body: z.ZodString;
|
|
29
|
+
rationale: z.ZodString;
|
|
30
|
+
}, z.core.$strict>;
|
|
31
|
+
/**
|
|
32
|
+
* The set of tools shipped in P5. Other phases extend by adding a new
|
|
33
|
+
* entry; the dispatcher walks this map at registration time.
|
|
34
|
+
*/
|
|
35
|
+
/**
|
|
36
|
+
* P6.7.3 — `add_module_to_page` AI tool. Creates a new module and
|
|
37
|
+
* inserts it into a target page's block at the requested position. The
|
|
38
|
+
* AI passes html (and optionally css/js) and a sluggable displayName;
|
|
39
|
+
* the tool generates a unique slug.
|
|
40
|
+
*/
|
|
41
|
+
export declare const addModuleToPageToolInput: z.ZodObject<{
|
|
42
|
+
pageId: z.ZodString;
|
|
43
|
+
blockName: z.ZodString;
|
|
44
|
+
position: z.ZodUnion<readonly [z.ZodEnum<{
|
|
45
|
+
top: "top";
|
|
46
|
+
bottom: "bottom";
|
|
47
|
+
}>, z.ZodNumber]>;
|
|
48
|
+
displayName: z.ZodString;
|
|
49
|
+
html: z.ZodString;
|
|
50
|
+
css: z.ZodOptional<z.ZodString>;
|
|
51
|
+
js: z.ZodOptional<z.ZodString>;
|
|
52
|
+
}, z.core.$strict>;
|
|
53
|
+
/**
|
|
54
|
+
* P6.7.3 — `add_module_to_template` AI tool. Same shape as
|
|
55
|
+
* `add_module_to_page` but fans the new module out to every page using
|
|
56
|
+
* the target template, inserting at the same block + position. Used
|
|
57
|
+
* for "site-wide" content (a global footer, a header banner, etc.).
|
|
58
|
+
*/
|
|
59
|
+
export declare const addModuleToTemplateToolInput: z.ZodObject<{
|
|
60
|
+
templateId: z.ZodString;
|
|
61
|
+
blockName: z.ZodString;
|
|
62
|
+
position: z.ZodUnion<readonly [z.ZodEnum<{
|
|
63
|
+
top: "top";
|
|
64
|
+
bottom: "bottom";
|
|
65
|
+
}>, z.ZodNumber]>;
|
|
66
|
+
displayName: z.ZodString;
|
|
67
|
+
html: z.ZodString;
|
|
68
|
+
css: z.ZodOptional<z.ZodString>;
|
|
69
|
+
js: z.ZodOptional<z.ZodString>;
|
|
70
|
+
}, z.core.$strict>;
|
|
71
|
+
export declare const AI_TOOLS: readonly ["edit_module", "site_memory_propose", "add_module_to_page", "add_module_to_template", "create_page", "rename_page", "set_page_title", "change_page_slug", "delete_page", "remove_module_from_page", "set_structured_set", "update_theme", "add_module_to_layout", "remove_module_from_layout", "set_template_layout", "create_layout", "set_site_defaults", "duplicate_page", "change_template", "move_module", "reorder_module", "set_nav_menu"];
|
|
72
|
+
export type AiToolName = (typeof AI_TOOLS)[number];
|
|
73
|
+
export type AddModuleToPageToolInput = z.infer<typeof addModuleToPageToolInput>;
|
|
74
|
+
export type AddModuleToTemplateToolInput = z.infer<typeof addModuleToTemplateToolInput>;
|
|
75
|
+
/** Chat ops input shapes — used by the SvelteKit form actions. */
|
|
76
|
+
export declare const chatCreateSessionInput: z.ZodObject<{
|
|
77
|
+
title: z.ZodOptional<z.ZodString>;
|
|
78
|
+
pageId: z.ZodOptional<z.ZodString>;
|
|
79
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
80
|
+
subagentRole: z.ZodOptional<z.ZodString>;
|
|
81
|
+
parentChatSessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
82
|
+
}, z.core.$strict>;
|
|
83
|
+
export declare const chatSendMessageInput: z.ZodObject<{
|
|
84
|
+
chatSessionId: z.ZodString;
|
|
85
|
+
content: z.ZodString;
|
|
86
|
+
chips: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
87
|
+
moduleId: z.ZodString;
|
|
88
|
+
selector: z.ZodString;
|
|
89
|
+
label: z.ZodString;
|
|
90
|
+
}, z.core.$strict>>>;
|
|
91
|
+
activePageId: z.ZodOptional<z.ZodString>;
|
|
92
|
+
}, z.core.$strict>;
|
|
93
|
+
export declare const chatRenameSessionInput: z.ZodObject<{
|
|
94
|
+
chatSessionId: z.ZodString;
|
|
95
|
+
title: z.ZodString;
|
|
96
|
+
}, z.core.$strict>;
|
|
97
|
+
export declare const chatPublishInput: z.ZodObject<{
|
|
98
|
+
chatSessionId: z.ZodString;
|
|
99
|
+
entities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
100
|
+
kind: z.ZodEnum<{
|
|
101
|
+
module: "module";
|
|
102
|
+
template: "template";
|
|
103
|
+
page: "page";
|
|
104
|
+
pageLayout: "pageLayout";
|
|
105
|
+
}>;
|
|
106
|
+
entityId: z.ZodString;
|
|
107
|
+
}, z.core.$strict>>>;
|
|
108
|
+
}, z.core.$strict>;
|
|
109
|
+
export declare const aiMemorySetInput: z.ZodObject<{
|
|
110
|
+
slot: z.ZodEnum<{
|
|
111
|
+
purpose: "purpose";
|
|
112
|
+
"brand-voice": "brand-voice";
|
|
113
|
+
tone: "tone";
|
|
114
|
+
"banned-phrases": "banned-phrases";
|
|
115
|
+
instructions: "instructions";
|
|
116
|
+
glossary: "glossary";
|
|
117
|
+
}>;
|
|
118
|
+
body: z.ZodString;
|
|
119
|
+
}, z.core.$strict>;
|
|
120
|
+
export declare const aiMemoryReviewInput: z.ZodObject<{
|
|
121
|
+
proposalId: z.ZodString;
|
|
122
|
+
decision: z.ZodEnum<{
|
|
123
|
+
accept: "accept";
|
|
124
|
+
reject: "reject";
|
|
125
|
+
}>;
|
|
126
|
+
}, z.core.$strict>;
|
|
127
|
+
export declare const aiProvidersSetInput: z.ZodObject<{
|
|
128
|
+
name: z.ZodEnum<{
|
|
129
|
+
anthropic: "anthropic";
|
|
130
|
+
openai: "openai";
|
|
131
|
+
google: "google";
|
|
132
|
+
"local-openai-compat": "local-openai-compat";
|
|
133
|
+
}>;
|
|
134
|
+
displayName: z.ZodString;
|
|
135
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
136
|
+
isActive: z.ZodDefault<z.ZodBoolean>;
|
|
137
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
138
|
+
}, z.core.$strict>;
|
|
139
|
+
/**
|
|
140
|
+
* P19 — `compose_from_import` AI tool input. Wraps
|
|
141
|
+
* `imports.compose_from_run`. Single transaction synthesis: aggregates
|
|
142
|
+
* theme tokens, creates one template bound to the default layout,
|
|
143
|
+
* materialises every staged import_pages row into a draft page +
|
|
144
|
+
* modules. Idempotent — pages already accepted skip cleanly.
|
|
145
|
+
*/
|
|
146
|
+
export declare const composeFromImportToolInput: z.ZodObject<{
|
|
147
|
+
runId: z.ZodString;
|
|
148
|
+
templateSlug: z.ZodOptional<z.ZodString>;
|
|
149
|
+
includeImportPageIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
150
|
+
}, z.core.$strict>;
|
|
151
|
+
/**
|
|
152
|
+
* Input for `ai_providers.clear_key` — Owner-only NULLs the encrypted
|
|
153
|
+
* triplet so the resolver falls back to the env-var path for that
|
|
154
|
+
* provider (or returns null if no env is set, which surfaces the
|
|
155
|
+
* "configure AI provider" UI banner).
|
|
156
|
+
*/
|
|
157
|
+
export declare const aiProvidersClearKeyInput: z.ZodObject<{
|
|
158
|
+
name: z.ZodEnum<{
|
|
159
|
+
anthropic: "anthropic";
|
|
160
|
+
openai: "openai";
|
|
161
|
+
google: "google";
|
|
162
|
+
"local-openai-compat": "local-openai-compat";
|
|
163
|
+
}>;
|
|
164
|
+
}, z.core.$strict>;
|
|
165
|
+
export declare const createPageToolInput: z.ZodObject<{
|
|
166
|
+
name: z.ZodString;
|
|
167
|
+
title: z.ZodString;
|
|
168
|
+
slug: z.ZodString;
|
|
169
|
+
locale: z.ZodDefault<z.ZodString>;
|
|
170
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
171
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
172
|
+
draft: "draft";
|
|
173
|
+
published: "published";
|
|
174
|
+
}>>;
|
|
175
|
+
}, z.core.$strict>;
|
|
176
|
+
/**
|
|
177
|
+
* P18 AI-completeness — `create_template` AI tool input. Wraps
|
|
178
|
+
* `templates.create` (widened to AI in this pass per CLAUDE.md §11
|
|
179
|
+
* default-AI-allowed scope). `layoutId` is optional; the op resolves to
|
|
180
|
+
* `site_defaults.default_layout_id` when omitted.
|
|
181
|
+
*/
|
|
182
|
+
export declare const createTemplateToolInput: z.ZodObject<{
|
|
183
|
+
slug: z.ZodString;
|
|
184
|
+
displayName: z.ZodString;
|
|
185
|
+
html: z.ZodString;
|
|
186
|
+
css: z.ZodDefault<z.ZodString>;
|
|
187
|
+
layoutId: z.ZodOptional<z.ZodString>;
|
|
188
|
+
}, z.core.$strict>;
|
|
189
|
+
export declare const renamePageToolInput: z.ZodObject<{
|
|
190
|
+
pageId: z.ZodString;
|
|
191
|
+
newName: z.ZodString;
|
|
192
|
+
}, z.core.$strict>;
|
|
193
|
+
export declare const setPageTitleToolInput: z.ZodObject<{
|
|
194
|
+
pageId: z.ZodString;
|
|
195
|
+
newTitle: z.ZodString;
|
|
196
|
+
}, z.core.$strict>;
|
|
197
|
+
export declare const changePageSlugToolInput: z.ZodObject<{
|
|
198
|
+
pageId: z.ZodString;
|
|
199
|
+
newSlug: z.ZodString;
|
|
200
|
+
redirectFromOld: z.ZodDefault<z.ZodEnum<{
|
|
201
|
+
auto: "auto";
|
|
202
|
+
skip: "skip";
|
|
203
|
+
}>>;
|
|
204
|
+
}, z.core.$strict>;
|
|
205
|
+
export declare const deletePageToolInput: z.ZodObject<{
|
|
206
|
+
pageId: z.ZodString;
|
|
207
|
+
disposition: z.ZodEnum<{
|
|
208
|
+
404: "404";
|
|
209
|
+
redirect: "redirect";
|
|
210
|
+
}>;
|
|
211
|
+
redirectTo: z.ZodOptional<z.ZodString>;
|
|
212
|
+
}, z.core.$strict>;
|
|
213
|
+
export declare const removeModuleFromPageToolInput: z.ZodObject<{
|
|
214
|
+
pageId: z.ZodString;
|
|
215
|
+
moduleId: z.ZodString;
|
|
216
|
+
}, z.core.$strict>;
|
|
217
|
+
export declare const setStructuredSetToolInput: z.ZodObject<{
|
|
218
|
+
kind: z.ZodEnum<{
|
|
219
|
+
"nav-menu": "nav-menu";
|
|
220
|
+
taxonomy: "taxonomy";
|
|
221
|
+
theme: "theme";
|
|
222
|
+
tags: "tags";
|
|
223
|
+
"link-list": "link-list";
|
|
224
|
+
}>;
|
|
225
|
+
slug: z.ZodString;
|
|
226
|
+
displayName: z.ZodString;
|
|
227
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
228
|
+
}, z.core.$strict>;
|
|
229
|
+
export declare const updateThemeToolInput: z.ZodObject<{
|
|
230
|
+
tokens: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
231
|
+
}, z.core.$strict>;
|
|
232
|
+
/**
|
|
233
|
+
* P6.7.6 — layout-layer tools. Layouts are site-wide chrome (header /
|
|
234
|
+
* footer / nav) that wraps every page on every template bound to the
|
|
235
|
+
* layout. `add_module_to_layout` reaches every page across the site
|
|
236
|
+
* with one call; `set_template_layout` re-points a template's chrome.
|
|
237
|
+
* `create_layout` and `set_site_defaults` are Owner-only at the op
|
|
238
|
+
* level — AI calls reject with ActorScopeRejected and the chat surfaces
|
|
239
|
+
* the permission requirement.
|
|
240
|
+
*/
|
|
241
|
+
export declare const addModuleToLayoutToolInput: z.ZodObject<{
|
|
242
|
+
layoutSlug: z.ZodString;
|
|
243
|
+
blockName: z.ZodString;
|
|
244
|
+
position: z.ZodUnion<readonly [z.ZodEnum<{
|
|
245
|
+
top: "top";
|
|
246
|
+
bottom: "bottom";
|
|
247
|
+
}>, z.ZodNumber]>;
|
|
248
|
+
displayName: z.ZodString;
|
|
249
|
+
html: z.ZodString;
|
|
250
|
+
css: z.ZodOptional<z.ZodString>;
|
|
251
|
+
js: z.ZodOptional<z.ZodString>;
|
|
252
|
+
}, z.core.$strict>;
|
|
253
|
+
export declare const removeModuleFromLayoutToolInput: z.ZodObject<{
|
|
254
|
+
layoutSlug: z.ZodString;
|
|
255
|
+
moduleId: z.ZodString;
|
|
256
|
+
}, z.core.$strict>;
|
|
257
|
+
export declare const setTemplateLayoutToolInput: z.ZodObject<{
|
|
258
|
+
templateId: z.ZodString;
|
|
259
|
+
layoutSlug: z.ZodString;
|
|
260
|
+
}, z.core.$strict>;
|
|
261
|
+
export declare const createLayoutToolInput: z.ZodObject<{
|
|
262
|
+
slug: z.ZodString;
|
|
263
|
+
displayName: z.ZodString;
|
|
264
|
+
html: z.ZodString;
|
|
265
|
+
css: z.ZodOptional<z.ZodString>;
|
|
266
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
267
|
+
name: z.ZodString;
|
|
268
|
+
displayName: z.ZodString;
|
|
269
|
+
position: z.ZodNumber;
|
|
270
|
+
}, z.core.$strict>>;
|
|
271
|
+
}, z.core.$strict>;
|
|
272
|
+
export declare const setSiteDefaultsToolInput: z.ZodObject<{
|
|
273
|
+
defaultLayoutSlug: z.ZodOptional<z.ZodString>;
|
|
274
|
+
defaultTemplateSlug: z.ZodOptional<z.ZodString>;
|
|
275
|
+
}, z.core.$strict>;
|
|
276
|
+
/**
|
|
277
|
+
* P6.7.7 — content-ops follow-ups: clone a page, swap a page's
|
|
278
|
+
* template, reorder modules within a block, move a module across
|
|
279
|
+
* blocks. All wrap existing or new ops; the tool layer captures the
|
|
280
|
+
* user-facing intent (which the system prompt steers the AI toward).
|
|
281
|
+
*/
|
|
282
|
+
export declare const duplicatePageToolInput: z.ZodObject<{
|
|
283
|
+
sourcePageId: z.ZodString;
|
|
284
|
+
newSlug: z.ZodString;
|
|
285
|
+
newName: z.ZodOptional<z.ZodString>;
|
|
286
|
+
newTitle: z.ZodOptional<z.ZodString>;
|
|
287
|
+
targetTemplateId: z.ZodOptional<z.ZodString>;
|
|
288
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
289
|
+
}, z.core.$strict>;
|
|
290
|
+
export declare const changeTemplateToolInput: z.ZodObject<{
|
|
291
|
+
pageId: z.ZodString;
|
|
292
|
+
newTemplateId: z.ZodString;
|
|
293
|
+
orphanDisposition: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
294
|
+
kind: z.ZodLiteral<"drop">;
|
|
295
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
296
|
+
kind: z.ZodLiteral<"preserve-as-block">;
|
|
297
|
+
blockName: z.ZodString;
|
|
298
|
+
}, z.core.$strict>], "kind">>;
|
|
299
|
+
}, z.core.$strict>;
|
|
300
|
+
export declare const moveModuleToolInput: z.ZodObject<{
|
|
301
|
+
pageId: z.ZodString;
|
|
302
|
+
moduleId: z.ZodString;
|
|
303
|
+
toBlockName: z.ZodString;
|
|
304
|
+
position: z.ZodUnion<readonly [z.ZodEnum<{
|
|
305
|
+
top: "top";
|
|
306
|
+
bottom: "bottom";
|
|
307
|
+
}>, z.ZodNumber]>;
|
|
308
|
+
}, z.core.$strict>;
|
|
309
|
+
export declare const reorderModuleToolInput: z.ZodObject<{
|
|
310
|
+
pageId: z.ZodString;
|
|
311
|
+
moduleId: z.ZodString;
|
|
312
|
+
direction: z.ZodUnion<readonly [z.ZodEnum<{
|
|
313
|
+
up: "up";
|
|
314
|
+
down: "down";
|
|
315
|
+
}>, z.ZodNumber]>;
|
|
316
|
+
}, z.core.$strict>;
|
|
317
|
+
/**
|
|
318
|
+
* Convenience wrapper over `set_structured_set` for the `nav-menu`
|
|
319
|
+
* kind specifically. Users say "edit the menu", not "set the
|
|
320
|
+
* structured set kind=nav-menu" — this maps natural language to the
|
|
321
|
+
* right tool. Items shape matches `navMenuItem` from
|
|
322
|
+
* @caelo-cms/shared/structured-sets.
|
|
323
|
+
*/
|
|
324
|
+
export declare const setNavMenuToolInput: z.ZodObject<{
|
|
325
|
+
slug: z.ZodString;
|
|
326
|
+
displayName: z.ZodString;
|
|
327
|
+
items: z.ZodArray<z.ZodUnknown>;
|
|
328
|
+
}, z.core.$strict>;
|
|
329
|
+
/**
|
|
330
|
+
* P7 — `find_media`. Searches the media library by alt-text /
|
|
331
|
+
* filename / mime. Returns up to `limit` matches with the WebP-800
|
|
332
|
+
* URL pre-resolved (or `orig` for non-image kinds). The system prompt
|
|
333
|
+
* already lists recent + frequently-used media; this tool covers the
|
|
334
|
+
* "search for an image of a sunlit office" case where the asset isn't
|
|
335
|
+
* in the recent slice.
|
|
336
|
+
*/
|
|
337
|
+
export declare const findMediaToolInput: z.ZodObject<{
|
|
338
|
+
query: z.ZodOptional<z.ZodString>;
|
|
339
|
+
mime: z.ZodOptional<z.ZodEnum<{
|
|
340
|
+
"image/jpeg": "image/jpeg";
|
|
341
|
+
"image/png": "image/png";
|
|
342
|
+
"image/webp": "image/webp";
|
|
343
|
+
"image/avif": "image/avif";
|
|
344
|
+
"image/gif": "image/gif";
|
|
345
|
+
"image/svg+xml": "image/svg+xml";
|
|
346
|
+
"application/pdf": "application/pdf";
|
|
347
|
+
"video/mp4": "video/mp4";
|
|
348
|
+
}>>;
|
|
349
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
350
|
+
}, z.core.$strict>;
|
|
351
|
+
export type FindMediaToolInput = z.infer<typeof findMediaToolInput>;
|
|
352
|
+
/**
|
|
353
|
+
* P7 — `set_media_alt`. AI may improve a11y on an existing asset
|
|
354
|
+
* without a human round-trip (e.g. when the editor uploaded an image
|
|
355
|
+
* with the default alt and the AI reads its content). Updates only
|
|
356
|
+
* the alt field on `media_assets`.
|
|
357
|
+
*/
|
|
358
|
+
export declare const setMediaAltToolInput: z.ZodObject<{
|
|
359
|
+
assetId: z.ZodString;
|
|
360
|
+
alt: z.ZodString;
|
|
361
|
+
}, z.core.$strict>;
|
|
362
|
+
export type SetMediaAltToolInput = z.infer<typeof setMediaAltToolInput>;
|
|
363
|
+
/**
|
|
364
|
+
* P8 — `set_page_seo`. Manual / panel writes to the per-page SEO
|
|
365
|
+
* sidecar. AI calls this only on explicit user intent
|
|
366
|
+
* ("set the home meta description to ..."). Doesn't bump fingerprints
|
|
367
|
+
* (autofilled_at / optimized_at).
|
|
368
|
+
*/
|
|
369
|
+
export declare const setPageSeoToolInput: z.ZodObject<{
|
|
370
|
+
pageId: z.ZodString;
|
|
371
|
+
metaDescription: z.ZodOptional<z.ZodString>;
|
|
372
|
+
ogImageAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
373
|
+
canonicalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
374
|
+
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
375
|
+
changefreq: z.ZodOptional<z.ZodEnum<{
|
|
376
|
+
never: "never";
|
|
377
|
+
always: "always";
|
|
378
|
+
hourly: "hourly";
|
|
379
|
+
daily: "daily";
|
|
380
|
+
weekly: "weekly";
|
|
381
|
+
monthly: "monthly";
|
|
382
|
+
yearly: "yearly";
|
|
383
|
+
}>>;
|
|
384
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
}, z.core.$strict>;
|
|
386
|
+
export type SetPageSeoToolInput = z.infer<typeof setPageSeoToolInput>;
|
|
387
|
+
/**
|
|
388
|
+
* P8 — `autofill_page_seo`. Fill-once. Refuses when the page's SEO
|
|
389
|
+
* was already autofilled. Triggered by the `seo-autofill` skill on
|
|
390
|
+
* the first-publish path.
|
|
391
|
+
*/
|
|
392
|
+
export declare const autofillPageSeoToolInput: z.ZodObject<{
|
|
393
|
+
pageId: z.ZodString;
|
|
394
|
+
metaDescription: z.ZodString;
|
|
395
|
+
ogImageAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
396
|
+
}, z.core.$strict>;
|
|
397
|
+
export type AutofillPageSeoToolInput = z.infer<typeof autofillPageSeoToolInput>;
|
|
398
|
+
/**
|
|
399
|
+
* P8 — `optimize_page_seo`. Explicit re-optimization. Always allowed.
|
|
400
|
+
* Takes optional context (keyword analysis / intent shifts / branding
|
|
401
|
+
* changes). The AI can call this across N pages in one chat turn —
|
|
402
|
+
* the resulting changes batch into one Publish-pill confirm.
|
|
403
|
+
*/
|
|
404
|
+
export declare const optimizePageSeoToolInput: z.ZodObject<{
|
|
405
|
+
pageId: z.ZodString;
|
|
406
|
+
metaDescription: z.ZodString;
|
|
407
|
+
ogImageAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
408
|
+
context: z.ZodOptional<z.ZodString>;
|
|
409
|
+
}, z.core.$strict>;
|
|
410
|
+
export type OptimizePageSeoToolInput = z.infer<typeof optimizePageSeoToolInput>;
|
|
411
|
+
/**
|
|
412
|
+
* P8 AI-first review pass — bulk variants. Per CLAUDE.md §11, bulk
|
|
413
|
+
* tools save round-trips when the AI knows it has N changes to make
|
|
414
|
+
* in a single turn. The handlers run inside one transaction so the
|
|
415
|
+
* batch is all-or-nothing.
|
|
416
|
+
*/
|
|
417
|
+
export declare const findRedirectsToolInput: z.ZodObject<{
|
|
418
|
+
query: z.ZodOptional<z.ZodString>;
|
|
419
|
+
statusCode: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>, z.ZodLiteral<410>]>>;
|
|
420
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
421
|
+
}, z.core.$strict>;
|
|
422
|
+
export type FindRedirectsToolInput = z.infer<typeof findRedirectsToolInput>;
|
|
423
|
+
export declare const bulkCreateRedirectsToolInput: z.ZodObject<{
|
|
424
|
+
redirects: z.ZodArray<z.ZodObject<{
|
|
425
|
+
fromPath: z.ZodString;
|
|
426
|
+
toPath: z.ZodString;
|
|
427
|
+
statusCode: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<307>, z.ZodLiteral<308>, z.ZodLiteral<410>]>>;
|
|
428
|
+
}, z.core.$strict>>;
|
|
429
|
+
upsert: z.ZodDefault<z.ZodBoolean>;
|
|
430
|
+
}, z.core.$strict>;
|
|
431
|
+
export type BulkCreateRedirectsToolInput = z.infer<typeof bulkCreateRedirectsToolInput>;
|
|
432
|
+
export declare const bulkDeleteRedirectsToolInput: z.ZodObject<{
|
|
433
|
+
redirectIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
434
|
+
fromPaths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
435
|
+
matches: z.ZodOptional<z.ZodString>;
|
|
436
|
+
}, z.core.$strict>;
|
|
437
|
+
export type BulkDeleteRedirectsToolInput = z.infer<typeof bulkDeleteRedirectsToolInput>;
|
|
438
|
+
export declare const bulkOptimizeSeoToolInput: z.ZodObject<{
|
|
439
|
+
updates: z.ZodArray<z.ZodObject<{
|
|
440
|
+
pageId: z.ZodString;
|
|
441
|
+
metaDescription: z.ZodString;
|
|
442
|
+
ogImageAssetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
443
|
+
}, z.core.$strict>>;
|
|
444
|
+
context: z.ZodOptional<z.ZodString>;
|
|
445
|
+
}, z.core.$strict>;
|
|
446
|
+
export type BulkOptimizeSeoToolInput = z.infer<typeof bulkOptimizeSeoToolInput>;
|
|
447
|
+
export type EditModuleToolInput = z.infer<typeof editModuleToolInput>;
|
|
448
|
+
export type SiteMemoryProposeToolInput = z.infer<typeof siteMemoryProposeToolInput>;
|
|
449
|
+
export type CreatePageToolInput = z.infer<typeof createPageToolInput>;
|
|
450
|
+
export type CreateTemplateToolInput = z.infer<typeof createTemplateToolInput>;
|
|
451
|
+
export type ComposeFromImportToolInput = z.infer<typeof composeFromImportToolInput>;
|
|
452
|
+
export type RenamePageToolInput = z.infer<typeof renamePageToolInput>;
|
|
453
|
+
export type SetPageTitleToolInput = z.infer<typeof setPageTitleToolInput>;
|
|
454
|
+
export type ChangePageSlugToolInput = z.infer<typeof changePageSlugToolInput>;
|
|
455
|
+
export type DeletePageToolInput = z.infer<typeof deletePageToolInput>;
|
|
456
|
+
export type RemoveModuleFromPageToolInput = z.infer<typeof removeModuleFromPageToolInput>;
|
|
457
|
+
export type SetStructuredSetToolInput = z.infer<typeof setStructuredSetToolInput>;
|
|
458
|
+
export type UpdateThemeToolInput = z.infer<typeof updateThemeToolInput>;
|
|
459
|
+
export type ChatCreateSessionInput = z.infer<typeof chatCreateSessionInput>;
|
|
460
|
+
export type ChatSendMessageInput = z.infer<typeof chatSendMessageInput>;
|
|
461
|
+
export type ChatRenameSessionInput = z.infer<typeof chatRenameSessionInput>;
|
|
462
|
+
export type ChatPublishInput = z.infer<typeof chatPublishInput>;
|
|
463
|
+
export type AiMemorySetInput = z.infer<typeof aiMemorySetInput>;
|
|
464
|
+
export type AiMemoryReviewInput = z.infer<typeof aiMemoryReviewInput>;
|
|
465
|
+
export type AiProvidersSetInput = z.infer<typeof aiProvidersSetInput>;
|
|
466
|
+
export type AiProvidersClearKeyInput = z.infer<typeof aiProvidersClearKeyInput>;
|
|
467
|
+
export type AddModuleToLayoutToolInput = z.infer<typeof addModuleToLayoutToolInput>;
|
|
468
|
+
export type RemoveModuleFromLayoutToolInput = z.infer<typeof removeModuleFromLayoutToolInput>;
|
|
469
|
+
export type SetTemplateLayoutToolInput = z.infer<typeof setTemplateLayoutToolInput>;
|
|
470
|
+
export type CreateLayoutToolInput = z.infer<typeof createLayoutToolInput>;
|
|
471
|
+
export type SetSiteDefaultsToolInput = z.infer<typeof setSiteDefaultsToolInput>;
|
|
472
|
+
export type DuplicatePageToolInput = z.infer<typeof duplicatePageToolInput>;
|
|
473
|
+
export type ChangeTemplateToolInput = z.infer<typeof changeTemplateToolInput>;
|
|
474
|
+
export type MoveModuleToolInput = z.infer<typeof moveModuleToolInput>;
|
|
475
|
+
export type ReorderModuleToolInput = z.infer<typeof reorderModuleToolInput>;
|
|
476
|
+
export type SetNavMenuToolInput = z.infer<typeof setNavMenuToolInput>;
|
|
477
|
+
export declare const proposeAddLocaleToolInput: z.ZodObject<{
|
|
478
|
+
code: z.ZodString;
|
|
479
|
+
displayName: z.ZodString;
|
|
480
|
+
urlStrategy: z.ZodDefault<z.ZodEnum<{
|
|
481
|
+
none: "none";
|
|
482
|
+
subdirectory: "subdirectory";
|
|
483
|
+
subdomain: "subdomain";
|
|
484
|
+
domain: "domain";
|
|
485
|
+
}>>;
|
|
486
|
+
urlHost: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
487
|
+
}, z.core.$strict>;
|
|
488
|
+
export type ProposeAddLocaleToolInput = z.infer<typeof proposeAddLocaleToolInput>;
|
|
489
|
+
export declare const proposeRemoveLocaleToolInput: z.ZodObject<{
|
|
490
|
+
code: z.ZodString;
|
|
491
|
+
}, z.core.$strict>;
|
|
492
|
+
export type ProposeRemoveLocaleToolInput = z.infer<typeof proposeRemoveLocaleToolInput>;
|
|
493
|
+
export declare const proposeSetDefaultLocaleToolInput: z.ZodObject<{
|
|
494
|
+
code: z.ZodString;
|
|
495
|
+
}, z.core.$strict>;
|
|
496
|
+
export type ProposeSetDefaultLocaleToolInput = z.infer<typeof proposeSetDefaultLocaleToolInput>;
|
|
497
|
+
export declare const proposeUpdateLocaleStrategyToolInput: z.ZodObject<{
|
|
498
|
+
code: z.ZodString;
|
|
499
|
+
urlStrategy: z.ZodEnum<{
|
|
500
|
+
none: "none";
|
|
501
|
+
subdirectory: "subdirectory";
|
|
502
|
+
subdomain: "subdomain";
|
|
503
|
+
domain: "domain";
|
|
504
|
+
}>;
|
|
505
|
+
urlHost: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
506
|
+
}, z.core.$strict>;
|
|
507
|
+
export type ProposeUpdateLocaleStrategyToolInput = z.infer<typeof proposeUpdateLocaleStrategyToolInput>;
|
|
508
|
+
/**
|
|
509
|
+
* P10 — translation tool inputs. `translate_page` auto-dispatches
|
|
510
|
+
* Mode 1 / Mode 2 based on the variant's existing status — the AI
|
|
511
|
+
* sees one verb regardless of state. `start_translation_job` queues
|
|
512
|
+
* a bulk run.
|
|
513
|
+
*/
|
|
514
|
+
export declare const translatePageToolInput: z.ZodObject<{
|
|
515
|
+
pageId: z.ZodString;
|
|
516
|
+
targetLocale: z.ZodString;
|
|
517
|
+
}, z.core.$strict>;
|
|
518
|
+
export type TranslatePageToolInput = z.infer<typeof translatePageToolInput>;
|
|
519
|
+
export declare const startTranslationJobToolInput: z.ZodObject<{
|
|
520
|
+
scope: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
521
|
+
kind: z.ZodLiteral<"all-stale">;
|
|
522
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
523
|
+
kind: z.ZodLiteral<"page">;
|
|
524
|
+
pageId: z.ZodString;
|
|
525
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
526
|
+
kind: z.ZodLiteral<"locale">;
|
|
527
|
+
code: z.ZodString;
|
|
528
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
529
|
+
kind: z.ZodLiteral<"pages">;
|
|
530
|
+
pageIds: z.ZodArray<z.ZodString>;
|
|
531
|
+
}, z.core.$strict>], "kind">;
|
|
532
|
+
capMicrocents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
533
|
+
}, z.core.$strict>;
|
|
534
|
+
export type StartTranslationJobToolInput = z.infer<typeof startTranslationJobToolInput>;
|
|
535
|
+
/**
|
|
536
|
+
* P10A — `propose_skill`. AI drafts a new skill body (or revision) and
|
|
537
|
+
* queues it for Owner review. Per CLAUDE.md §2: skills augment the AI's
|
|
538
|
+
* own system prompt, so site-wide activation requires explicit Owner
|
|
539
|
+
* confirmation. The proposal lands in skill_proposals; Owner accepts
|
|
540
|
+
* (creates `skills` row at status='awaiting_activation') and then
|
|
541
|
+
* activates separately.
|
|
542
|
+
*/
|
|
543
|
+
export declare const proposeSkillToolInput: z.ZodObject<{
|
|
544
|
+
slug: z.ZodString;
|
|
545
|
+
displayName: z.ZodString;
|
|
546
|
+
description: z.ZodDefault<z.ZodString>;
|
|
547
|
+
body: z.ZodString;
|
|
548
|
+
rationale: z.ZodString;
|
|
549
|
+
allowlistedTools: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
550
|
+
hints: z.ZodDefault<z.ZodObject<{
|
|
551
|
+
keywords: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
552
|
+
chipTrigger: z.ZodDefault<z.ZodBoolean>;
|
|
553
|
+
alwaysOn: z.ZodDefault<z.ZodBoolean>;
|
|
554
|
+
}, z.core.$strict>>;
|
|
555
|
+
}, z.core.$strict>;
|
|
556
|
+
export type ProposeSkillToolInput = z.infer<typeof proposeSkillToolInput>;
|
|
557
|
+
/**
|
|
558
|
+
* P11 — `submit_plugin`. AI submits a Tier 2 plugin for validation +
|
|
559
|
+
* Owner approval. CLAUDE.md §2 invariant: AI submits, human Owner
|
|
560
|
+
* activates. Tier 1 plugins ship via human PR + signed release; the AI
|
|
561
|
+
* tool surface cannot promote — the manifest field `tier` is forced
|
|
562
|
+
* to 2 by the handler.
|
|
563
|
+
*/
|
|
564
|
+
export declare const submitPluginToolInput: z.ZodObject<{
|
|
565
|
+
slug: z.ZodString;
|
|
566
|
+
version: z.ZodString;
|
|
567
|
+
manifest: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
568
|
+
source: z.ZodString;
|
|
569
|
+
}, z.core.$strict>;
|
|
570
|
+
export type SubmitPluginToolInput = z.infer<typeof submitPluginToolInput>;
|
|
571
|
+
//# sourceMappingURL=ai-tools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ai-tools.d.ts","sourceRoot":"","sources":["../src/ai-tools.ts"],"names":[],"mappings":"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"}
|