connector-module

connector-module is a skill for Claude Code, Codex from yogasw/wick. It costs 165 tokens per session (9,326 once invoked), scanned A, original, MIT.

A guide for building connectors, which are adapters that let an agent use an outside service through its API. It covers connectors built directly into the main Wick application and their settings and operations.

In plain words
What is it for?
Use it to create, fix, refactor, or extend a connector, including its configuration, operations, registry entry, or agent-facing API.
Why use it?
It provides the repository rules needed to expose an outside service consistently to the agent and its tool interface.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/yogasw/wick/connector-module
Any agent
npx skills add yogasw/wick --skill connector-module
Clone the repo
git clone --depth 1 https://github.com/yogasw/wick

Made for: Claude Code, Codex.

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 connector-module

README.md
[![agentmods](https://agentmods.dev/badge/skills/yogasw/wick/connector-module.svg)](https://agentmods.dev/skills/yogasw/wick/connector-module)
Your own site
<a href="https://agentmods.dev/skills/yogasw/wick/connector-module"><img src="https://agentmods.dev/badge/skills/yogasw/wick/connector-module.svg" alt="Measured on agentmods" height="20"></a>
Per session 165 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,326 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00165 $0.09326
Opus 5 $0.00082 $0.04663
Sonnet 5 $0.00033 $0.01865
Haiku 4.5 $0.00016 $0.00933

Measured 3d ago against content hash 74dd14162009, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

connector-module scanned grade A with 1 finding 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 3d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **curl / manual** defs: sections are stored and editable in the builder (named sections + drag-drop ops between them).
.claude/skills/connector-module/SKILL.md · 605 lines

How it starts

The opening of the file, as written. The whole thing — 605 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Connector Module — wick core (upstream)

Scope: this skill is for connectors that ship inside wick itself — modules under internal/connectors/ registered from internal/connectors/registry.go::RegisterBuiltins(). If you are building a connector in a downstream project (a scaffold generated from template/), use the downstream skill at template/.claude/skills/connector-module/SKILL.md — paths, registration site, and verification differ.

Activate this skill whenever the user touches a connector in the wick lab binary or the connector framework itself — creating, improving, fixing, refactoring, or adding operations. When editing an existing connector, audit it against the rules below and bring it up to spec as part of the change.

Mental model

A connector wraps one external API for LLM consumption.

  • One Module carries one shared Configs struct (URL, token, ...) and N Operations (query, list_repos, create_issue, ...), grouped into categories (titled sections).
  • Module.Operations is a []connector.Category — each Category{Title, Description, Ops} owns its operations. The admin detail page renders one card per category. Code that needs the flat op list calls Module.AllOps(); an op's owning section is Module.CategoryOf(opKey). There is no Operation.Category field — the section owns the grouping.
  • Each Operation has its own typed Input struct (turned into the MCP JSON Schema) and its own ExecuteFunc.
  • An admin can create many rows per definition at runtime; each row carries its own credential values, label, and tags. Same Go code, different rows = different (env, team, account).
  • LLMs do not see N×M static tools. The MCP server exposes a fixed meta surface (wick_list, wick_search, wick_get, wick_execute); each (row × operation) pair is addressed by an opaque tool_id of the form conn:{connector_id}/{op_key}.

The full design lives in internal/planning/archive/connectors-design.md. This skill is the operational summary; that document is the source of truth for any architectural question.

Read the full file on GitHub · 605 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. 3d ago First seen · 605 lines · 165 tokens per session scan A 74dd14162009

Subscribe to this mod's changes

connector-module is a skill published in the GitHub repository yogasw/wick (5 stars, last pushed 6d ago), licensed MIT. It adds 165 tokens to every session and 9,326 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories