Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

enonic-guillotine-query-builderenonic 断头台查询生成器

Agent Skill

enonic-guillotine-query-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,836

周安装

75

GitHub Stars

公开资料未说明

下载量

594
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:enonic-guillotine-query-builder(enonic 断头台查询生成器)
来源仓库:https://github.com/webmaxru/enonic-agent-skills
仓库路径:skills/enonic-guillotine-query-builder
安装命令:
npx skills add https://github.com/webmaxru/enonic-agent-skills --skill enonic-guillotine-query-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/webmaxru/enonic-agent-skills --skill enonic-guillotine-query-builder

简介

专为 Enonic XP 的 Guillotine API 设计,帮助构建和优化内容查询语句。

  • 支持自动识别查询 DSL 版本(5.x 字符串式或新版 queryDsl),适配不同项目结构。
  • 可在无 Node.js 环境下手动搜索关键词,兼容多种文件类型中的查询片段。
  • 建议先备份现有查询文件,避免批量替换时引入语法错误或逻辑偏差。
  • enonic-guillotine-query-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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.

  1. If pagination is needed, prefer connection variants (queryDslConnection, getChildrenConnection) and guide the caller to pass after / first.
  2. 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:BlogPostcom_enonic_app_myapp_BlogPost. For built-in types: portal:template-folderportal_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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.62%
按下载量换算212

Claude

33.95%
按下载量换算202

Cursor

18.1%
按下载量换算108

Gemini CLI

9.48%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills