Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

clix-skill-creatorclix 技能创建器

Agent Skill

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

总安装

356

周安装

15

GitHub Stars

5

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:clix-skill-creator(clix 技能创建器)
来源仓库:https://github.com/clix-so/skills
仓库路径:skills/clix-skill-creator
安装命令:
npx skills add https://github.com/clix-so/skills --skill clix-skill-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/clix-so/skills --skill clix-skill-creator

简介

Clix 技能创建引导器,避免重复造轮子并防止虚构 API 调用。

  • 适用于需要开发新功能技能但又不确定现有能力覆盖范围的场景。
  • 作为元技能存在,不直接集成 SDK,而是产出其他技能文件夹的标准结构。
  • 创建前应先用 RUBE_SEARCH_TOOLS 检查是否已有相似技能可复用。
  • clix-skill-creator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Clix Skill Creator

Use this skill to create a new Clix skill that matches a user's need, while avoiding duplicated scope and preventing hallucinated API usage by relying on the Clix MCP server as the source of truth.

This is a “meta-skill”: it does not integrate an SDK directly; it guides you to produce another skill folder (docs + deterministic scripts) that does.

When to use this skill

  • User says: “Create a new skill for Clix that helps with X”
  • Internal request: “We need a new skill for feature X in Clix”
  • User provides a workflow that is not well-covered by existing skills
  • User types: clix-skill-creator

Non-goals (important)

  • Do not create a new skill if the request can be satisfied by combining existing skills (integration + event tracking + personalization + user management + API-triggered campaigns).
  • Do not invent SDK methods, endpoints, or constraints. If you can’t confirm via MCP, treat it as unknown and ask the user or add a TODO note.
  • Do not embed secrets, project IDs, API keys, or customer data in the skill.

MCP-first (mandatory source of truth)

Before writing any new “Clix API behavior” or “SDK signature” into a newly generated skill:

  • MUST use clix-mcp-server:search_docs to confirm conceptual behavior, limits, and console semantics.
  • MUST use clix-mcp-server:search_sdk to confirm exact method signatures for each platform (iOS/Android/Flutter/React Native) that the new skill will mention.

If clix-mcp-server tools are not available:

  • Ask the user whether to install the MCP server (prefer using the existing installer in skills/integration/scripts/install-mcp.sh).
  • If the user declines, proceed with an explicit “static fallback may be outdated” warning and minimize hard claims.

Workflow (copy + check off)

Clix skill creation progress:
- [ ] 1) Intake: user need → crisp problem statement + acceptance criteria
- [ ] 2) Scope check: confirm this isn’t already covered by existing skills
- [ ] 3) MCP research: gather evidence (docs + SDK signatures) for the target scope
- [ ] 4) Draft a Skill Brief (name, trigger phrases, inputs/outputs, guardrails)
- [ ] 5) Generate scaffold (SKILL.md + references/ + scripts/ + examples/)
- [ ] 6) Validate scaffold (structure + frontmatter + MCP-first section)
- [ ] 7) Wire-in (README + llms index + tests if needed)

1) Intake: minimum questions

Ask only what’s needed to define a stable skill boundary:

  • Goal: what outcome should the skill reliably produce?
  • Audience: app devs, backend devs, marketers/ops, or mixed?
  • Platform (if SDK-related): iOS / Android / Flutter / React Native
  • Clix capability: push / in-app / email / audiences / journeys / etc.
  • Constraints: PII policy, compliance, performance limits, rate limits
  • Success criteria: what does “done” look like?

2) Reference official skills (match repo style)

Before creating a new skill, use the existing official Clix skills in this repo as your style guide so the generated skill matches the standards here (format, tone, workflow, validators), while still being tailored to the user’s need.

  • Study how they are written:

- YAML frontmatter conventions - MCP-first “source of truth” behavior - Progressive disclosure (references/, scripts/, examples/) - Plan artifacts + deterministic validators (bash scripts)

  • Then generate the new skill based on the user’s need using the same patterns. If the need is clearly a tiny addition to an existing skill, prefer adding a references/ doc or examples/ file there instead of creating a new skill.
  • clix-integration
  • clix-event-tracking
  • clix-user-management
  • clix-personalization
  • clix-api-triggered-campaigns

3) MCP research: build an “Evidence Pack”

Create a short evidence pack that you will cite while writing the new skill:

  • Docs evidence (from clix-mcp-server:search_docs)

- behavior guarantees - constraints/limits - console terminology

  • SDK evidence (from clix-mcp-server:search_sdk)

- exact signatures per platform - initialization / required params - error behavior (throws? returns promise?)

Store the evidence in your notes (or as a references/ markdown file in the new skill), with the search queries you used so future maintainers can refresh it.

4) Draft a Skill Brief (output format)

Produce this brief for approval *before* generating files:

skill:
  folder_name: "<kebab-case>" # e.g. "push-troubleshooting"
  name: "clix-<kebab-case>" # e.g. "clix-push-troubleshooting"
  display_name: "<Title Case>"
  short_description: "<short>"
  description: "<2-3 lines>"
  user_invocable: true

triggers:
  - "phrases the user might say"

inputs:
  - "minimal inputs the skill will ask for"

outputs:
  - "artifacts the skill produces (plan JSON, code changes, checklists)"

guardrails:
  - "MCP-first requirements"
  - "security / PII constraints"

files_to_generate:
  skill_md: true
  references:
    - "<doc>.md"
  scripts:
    - "<script>.sh"
  examples:
    - "<optional>"

5) Generate scaffold (repo conventions)

In this repository, a “complete” skill folder should include:

  • SKILL.md (with YAML frontmatter; MCP-first; workflow; progressive disclosure)
  • LICENSE.txt
  • references/ (markdown docs; not empty)
  • scripts/ (deterministic bash scripts; not empty)
  • examples/ (optional, but recommended when copy/paste code is useful)

6) Validate scaffold (fast feedback loop)

After generating a new skill folder, validate it:

bash <skill-dir>/scripts/validate-same-scope.sh path/to/installed/skill-creator path/to/new-skill-folder
bash <skill-dir>/scripts/validate-skill-location.sh path/to/new-skill-folder --mode repo
bash <skill-dir>/scripts/validate-skill-scaffold.sh path/to/new-skill-folder

This should check:

  • the new skill is installed at the same scope as skill-creator (project-level vs user-level), i.e. the new skill folder lives next to the installed skill-creator under the same .../skills/ directory
  • the skill folder is in the correct skills/<name>/ location (for this repo)
  • required files exist
  • references/ and scripts/ are present and non-empty
  • SKILL.md has valid frontmatter keys
  • the skill includes an MCP-first section referencing clix-mcp-server

Progressive Disclosure

  • Level 1: This SKILL.md (always loaded)
  • Level 2: references/ (load when authoring the new skill)
  • Level 3: examples/ (load when copy/pasting scaffolds)
  • Level 4: scripts/ (execute directly; do not load into context)

References

  • references/skill-template.md
  • references/mcp-research-playbook.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29%
按下载量换算36

windsurf

21.68%
按下载量换算27

trae

18.29%
按下载量换算23

OpenCode

12.1%
按下载量换算15

Codex

8.13%
按下载量换算10

Antigravity

3.38%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills