enonic-guillotine-query-builder
Composes, debugs, and optimizes Guillotine GraphQL queries for Enonic XP headless content delivery. Covers query construction, variable usage, filtering, aggregation, pagination, sorting, and TypeScript type generation from the auto-generated Guillotine schema. Use when writing or troubleshooting Guillotine queries, querying custom content types through GraphQL, or generating typed interfaces from Guillotine responses. Don't use for content type XML definitions, non-Enonic GraphQL APIs (Apollo, Hasura), server-side lib-content queries, or Guillotine deployment and CORS configuration.
What this skill does
# Enonic Guillotine Query Builder
## Procedures
**Step 1: Scan the workspace for existing Guillotine usage**
1. Execute `node scripts/find-guillotine-targets.mjs .` to inventory files containing Guillotine markers (query strings, library imports, endpoint references).
2. If a Node runtime is unavailable, search the workspace manually for `guillotine`, `queryDsl`, `queryDslConnection`, or `/lib/guillotine` in `.ts`, `.js`, `.graphql`, and `.gql` files.
3. Note the Guillotine version in use: if `query(query: "...")` string-based fields are found, the project uses the deprecated 5.x-style API; if `queryDsl` / `queryDslConnection` are found, the project uses 6.x+ DSL. Check for `exports.extensions` in `guillotine/guillotine.js` to detect Guillotine 7 Extensions API usage.
4. If both styles coexist, flag the deprecated usage for migration.
**Step 2: Load the Guillotine API reference**
1. Read `references/guillotine-reference.md` before composing any query.
2. Read `references/compatibility.md` when the workspace targets or migrates between Guillotine versions.
**Step 3: Determine the query shape**
1. Identify the operation the user needs:
- **Single content fetch**: Use `get(key)`.
- **Direct children**: Use `getChildren(key)` or `getChildrenConnection(key)` for pagination.
- **Filtered search**: Use `queryDsl(query)` for a flat list or `queryDslConnection(query)` for pagination, aggregations, or highlighting.
- **Content type metadata**: Use `getType(name)` or `getTypes`.
2. If pagination is needed, prefer connection variants (`queryDslConnection`, `getChildrenConnection`) and guide the caller to pass `after` / `first`.
3. If aggregations or highlighting are needed, require `queryDslConnection` — these features are not available on `queryDsl`.
**Step 4: Construct the content type fragment**
1. Derive the GraphQL type name from the content type descriptor by replacing dots (`.`) and colons (`:`) with underscores (`_`), and removing hyphens (`-`) while capitalizing the following letter. The first letter of each segment after a colon is capitalized. Example: `com.enonic.app.myapp:BlogPost` → `com_enonic_app_myapp_BlogPost`. For built-in types: `portal:template-folder` → `portal_TemplateFolder`.
2. Use an inline fragment to access the type-specific `data` field: `... on <GraphQLTypeName> { data { ... } }`.
3. For content references (ContentSelector, ImageSelector, MediaSelector), follow the reference with a nested inline fragment on the target type.
4. For RichText / HtmlArea fields, include `processedHtml` and optionally `links`, `images`, `macros` sub-fields. Use the `processHtml` input argument for absolute URLs, srcset widths (`imageWidths`), or responsive sizes (`imageSizes`).
**Step 5: Build query filters and sorting**
1. Use Query DSL input types. Each `QueryDSLInput` must contain exactly one expression field.
2. Combine multiple conditions using `boolean` with `must`, `should`, `mustNot`, and `filter` arrays.
3. For date or numeric ranges, use the `range` expression with `gt`/`gte`/`lt`/`lte` and the correct `DSLExpressionValueInput` type (`localDate`, `localDateTime`, `instant`, `long`, `double`).
4. For sorting, use `SortDslInput` with `field` and `direction` (`ASC` / `DESC`).
5. Read `references/examples.md` when the query pattern matches a documented example.
**Step 6: Add aggregations and highlighting (if needed)**
1. Pass `aggregations` as an array of `AggregationInput` objects on `queryDslConnection`.
2. Each aggregation requires a unique `name` and exactly one aggregation type field (`terms`, `dateRange`, `stats`, etc.).
3. For highlighting, pass `highlight` with a `properties` array specifying `propertyName` for each field to highlight.
4. Read aggregation and highlight results from `aggregationsAsJson` and `highlightAsJson` on the connection result.
**Step 7: Generate TypeScript types (if requested)**
1. Read `assets/guillotine-query.template.ts` as the starting template.
2. Replace `__APP_KEY__`, `__CONTENT_TYPE__`, `__GRAPHQL_TYPE__`, and `__FIELDS__` placeholders with the actual content type values.
3. Add typed fields to the `Data` interface matching the content type schema fields requested in the query.
4. For connection queries, use the `ContentConnection<T>` generic with the specific content type.
**Step 8: Set site context (if applicable)**
1. If the query targets a specific site, set `siteKey` on the `guillotine` field or instruct the caller to set the `X-Guillotine-SiteKey` HTTP header.
2. Use `${site}` placeholder in path arguments for site-relative queries.
3. Use `_path(type: siteRelative)` to return site-relative paths.
**Step 9: Validate the query**
1. Verify all inline fragment type names use underscores, not the original descriptor format.
2. Confirm `queryDsl` / `queryDslConnection` are used instead of the deprecated `query` / `queryConnection`.
3. Ensure `QueryDSLInput` objects contain exactly one expression field.
4. Verify `DSLExpressionValueInput` objects contain exactly one value type field.
5. Check that aggregation and highlight are only used on connection variants.
6. For Guillotine 7+ projects, verify `pageUrl` / `mediaUrl` / `imageUrl` / `attachmentUrl` use `Json` type for `params` argument, not `String`.
7. Read `references/troubleshooting.md` if the query returns unexpected nulls, empty results, or type errors.
## Error Handling
* If `get` returns null, verify the key is a valid content path or ID and that the correct branch (draft vs master) is targeted.
* If inline fragment fields are null, confirm the GraphQL type name uses underscores and matches the content type descriptor exactly.
* If `queryDsl` returns empty results, simplify to `matchAll: {}` to confirm data exists, then re-add filters one at a time.
* If aggregation or highlight results are null, verify the query uses `queryDslConnection`, not `queryDsl`.
* If the deprecated `query` field is used, read `references/compatibility.md` to migrate to `queryDsl` with DSL syntax.
* If `scripts/find-guillotine-targets.mjs` cannot run, scan the workspace manually for Guillotine markers and continue.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.