orchestrator: Skill for Claude Code

.claude/skills/integration-authoring/SKILL.md

integration-authoring is a skill for Claude Code from c9r-io/orchestrator. It costs 76 tokens per session (1,091 once invoked), scanned A, original, MIT.

A skill for creating and updating integration packages in the orchestrator-integrations repository. Integrations connect the orchestrator to services such as Slack, GitHub, Discord, or Jira.

In plain words
What is it for?
Use it to add a new service integration, create webhook triggers, update existing triggers, or create CRD-based integration extensions.
Why use it?
It provides the repository structure and workflow needed to add an external service or extend an existing integration consistently.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is c9r-io/orchestrator's own configuration. It tells Claude Code how to work on orchestrator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything orchestrator configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is -f ../orchestrator-integrations/<platform>/trigger-<event>.yaml.

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/c9r-io/orchestrator/main/.claude/skills/integration-authoring/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/c9r-io/orchestrator

Made for: Claude Code.

Wrote 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.

agentmods badge for integration-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/c9r-io/orchestrator/integration-authoring.svg)](https://agentmods.dev/skills/c9r-io/orchestrator/integration-authoring)
Your own site
<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>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,091 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash fef9855344d5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

.claude/skills/integration-authoring/SKILL.md · 141 lines

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

Read the full file on GitHub · 141 lines

Changes

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.

  1. 8d ago First seen · 141 lines · 76 tokens per session scan A fef9855344d5

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

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.

mathematic-inc/earl · 43 tokens

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.

aAAaqwq/AGI-Super-Team · 59 tokens

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…

mtarcure/claude-vibe-squad · 82 tokens

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…

mvschwarz/openrig · 132 tokens

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.

runxhq/runx · 32 tokens