Borrowing it
Nothing to install: this file belongs to c9r-io/orchestrator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/c9r-io/orchestrator/main/.claude/skills/integration-authoring/SKILL.mdgit clone --depth 1 https://github.com/c9r-io/orchestratorWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/c9r-io/orchestrator/integration-authoring)<a href="https://agentmods.dev/skills/c9r-io/orchestrator/integration-authoring"><img src="https://agentmods.dev/badge/skills/c9r-io/orchestrator/integration-authoring.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00076 | $0.01091 |
| Opus 5 | $0.00038 | $0.00545 |
| Sonnet 5 | $0.00015 | $0.00218 |
| Haiku 4.5 | $0.00008 | $0.00109 |
Grade A, and why
integration-authoring scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Integration Authoring
Create, update, or extend integration manifest packages in the companion orchestrator-integrations repository.
Repository Layout
<org-root>/
├── orchestrator/ # Main project (this repo)
│ ├── crates/ # Core engine code
│ ├── docs/showcases/ # Execution plans
│ └── .claude/skills/ # Skills (including this one)
└── orchestrator-integrations/ # Integration packages (companion repo)
├── slack/
├── github/
├── line/
└── <new-integration>/
When to Use This Skill
- User asks to "add a Jira integration", "create a Discord webhook trigger", etc.
- User asks to update an existing integration (e.g., "add a new GitHub trigger for releases")
- User asks to create a CRD-based integration extension
Workflow
1. Determine Scope
- New integration: Create a new directory in
orchestrator-integrations/ - Update existing: Modify files in the existing integration directory
- CRD extension: Create CRD manifest + associated triggers (FR-083 pattern)
2. Create/Update Integration Package
Work in the companion repo at ../orchestrator-integrations/ (relative to this project root).
Each integration package MUST follow this structure:
<platform>/
├── secrets-template.yaml # SecretStore with placeholder values
├── trigger-<event>.yaml # One Trigger per event type
├── step-template-<action>.yaml # Optional StepTemplate for payload handling
└── README.md # Platform setup guide
3. Manifest Standards
SecretStore template:
apiVersion: orchestrator.dev/v2
kind: SecretStore
metadata:
name: <platform>-secret
spec:
data:
signing_secret: "<your-<platform>-secret>"
Webhook Trigger:
apiVersion: orchestrator.dev/v2
kind: Trigger
metadata:
name: <platform>-<event>
spec:
event:
source: webhook
webhook:
secret:
fromRef: <platform>-secret
signatureHeader: <platform-specific-header>
filter:
condition: "<CEL expression for event filtering>"
action:
workflow: handle-<platform>-<event>
workspace: default
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 141 lines · 76 tokens per session scan A fef9855344d5
integration-authoring is a skill published in the GitHub repository c9r-io/orchestrator (21 stars, last pushed 7d ago), licensed MIT. It adds 76 tokens to every session and 1,091 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
recall_ai
Use recall.ai to record video meetings, retrieve transcripts, and access recordings. Use when the user wants to record a meeting, get a transcript, summarize a call, or access meeting audio/video.
claude-code-expert
Especialista profundo em Claude Code - CLI da Anthropic. Maximiza produtividade com atalhos, hooks, MCPs, configuracoes avancadas, workflows, CLAUDE.md, memoria, sub-agentes, permissoes e integracao com ecossistemas.
compact-now
Operator-triggered proactive compaction — Chrono externalizes load-bearing state (active decisions, open tasks, next action) to a snapshot + a durable Vault learning note before invoking Claude Code's native /compact, then resumes from the snapshot. Use when the operator says "/compact-now" / "compact now" or when…
openrig-herdr
Use when opening OpenRig fleet terminals as a herdr wall — turning a rig, pod, mission, slice, or saved view into live interactive agent tiles via rig terminal, watching another rig read-only, or driving herdr on an agent's request ("open all my rigs + a mission as views"). Covers the rig terminal open|views|status…
slack
Read bounded Slack search and thread evidence, plan an exact reply, and deliver an approved reply through any compatible Slack binding with stable-message readback.