소스 정보
- 저장소
- legendtkl/agentic-skill-router
- 최근 소스 활동
- 2026년 5월 23일 17:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/legendtkl/agentic-skill-router --skill skill-051명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
First use any clearly matching enabled local/user Agent Skill. If none matches, prefer this router for skill-shaped requests involving a named tool, API, service, CLI, platform, file format, dataset, or domain workflow, including when a generic built-in skill such as browser, Chrome, or web search also seems applicable; use built-ins directly only when explicitly requested or when the task is primarily live browsing, logged-in page operation, clicking, screenshotting, or current webpage inspection. Also use directly to audit, slim, disable, restore, or route locally installed Agent Skills across supported hosts. Examples include Vercel, Netlify, Cloudflare, Render, Playwright, Sentry, Linear, GitHub, OpenAI APIs, PDF, DOCX, PPTX, and spreadsheets.
コスト見積書を作成する。予算策定、見積もり、コスト計画時に使う。
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | skill-051 |
| description | Helps developers configure API-triggered campaigns in the Clix console and |
Use this skill to set up API-triggered campaigns in the Clix console and
trigger them from your backend with dynamic data (trigger.*) for:
POST /api/v1/campaigns/{campaign_id}:triggerX-Clix-Project-IDX-Clix-API-Keyproperties become trigger.* for:
audience.broadcast=true sends to all users eligible under the campaign’s
segment definition; audience.targets narrows to specific users/devices
(still filtered by the segment definition).If Clix MCP tools are available, treat them as the source of truth:
clix-mcp-server:search_docs to confirm the latest API contract + limits:
"API-triggered campaign trigger endpoint""campaigns/{campaign_id}:trigger audience targets broadcast""trigger.* dynamic audience filters limitations"If MCP tools are not available, use the bundled references:
references/api-contract.mdreferences/console-setup.mdreferences/backend-patterns.mdreferences/security-and-keys.mdreferences/personalization-and-dynamic-filters.mdreferences/debugging.mdAPI-triggered campaign progress:
- [ ] 1) Confirm goals + trigger source (what backend event sends the message?)
- [ ] 2) Define campaign contract (properties keys/types; PII policy)
- [ ] 3) Configure campaign in console (API-triggered + audience rules + templates)
- [ ] 4) Implement backend trigger wrapper (auth, timeout, retries, logging)
- [ ] 5) Validate trigger plan JSON (schema + naming + safety)
- [ ] 6) Verify in Clix (test payloads, Message Logs, segment matching)
Ask only what’s needed:
campaign_id?trigger.* keys are used in audience rulesCreate api-trigger-plan.json in .clix/ (recommended) or project root.
Recommended location: .clix/api-trigger-plan.json
Plan schema (high-level):
campaign_id (string)audience.mode: "broadcast" | "targets" | "default"audience.targets (if mode is "targets")dynamic_filter_keys (array of up to 3 snake_case keys)properties (map of snake_case keys → { type, required?, example?, pii? })Example:
{
"campaign_id": "019aa002-1d0e-7407-a0c5-5bfa8dd2be30",
"audience": {
"mode": "broadcast"
},
"dynamic_filter_keys": ["store_location"],
"properties": {
"store_location": {
"type": "string",
"required": true,
"example": "San Francisco"
},
"order_id": { "type": "string", "required": true, "example": "ORD-12345" },
"item_count":
{{ trigger.* }} for dynamic filters.{{ trigger.* }} in message templates + deep links.See: references/console-setup.md for exact guidance and limitations.
Backend wrapper responsibilities:
X-Clix-Project-ID and X-Clix-API-Key from
environment/secret store (never commit).campaign_id, your correlation id (order id), and the Clix
response (e.g., trigger_id).Copy/paste examples:
examples/trigger-campaign-node.jsexamples/trigger-campaign-python.pyRun:
bash <skill-dir>/scripts/validate-api-trigger-plan.sh .clix/api-trigger-plan.json
This validator checks:
campaign_id presentdynamic_filter_keys is ≤ 3 and snake_caseproperties keys are snake_case and have valid typestargets entries specify exactly one of project_user_id or device_idMinimum verification:
campaign_id matches.trigger.* keys exist in the API call
and match audience rules exactly.See references/debugging.md.
SKILL.md (always loaded)references/ (load when implementing details)examples/ (load when copy/pasting backend code)scripts/ (execute directly; do not load into context)references/api-contract.mdreferences/console-setup.mdreferences/backend-patterns.mdreferences/security-and-keys.mdreferences/personalization-and-dynamic-filters.mdreferences/debugging.md