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.
npx agentmods add commands/danielsalles/connector-platform-plugin/listgit clone --depth 1 https://github.com/danielsalles/connector-platform-pluginWhat 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 | $0.00014 | $0.00368 |
| Opus 5 | $0.00007 | $0.00184 |
| Sonnet 5 | $0.00003 | $0.00074 |
| Haiku 4.5 | $0.00001 | $0.00037 |
Grade A, and why
list 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 2d 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.
`GET ${CONNECTOR_BASE_URL}/v1/connectors` with `Authorization: Bearer ${CONNECTOR_API_KEY}`. Use Bash tool with `curl -sS`. What it actually says
The user wants to see which integrations are available to scaffold.
Step 1 — Read credentials
Read .env.local from project root. Need CONNECTOR_API_KEY and CONNECTOR_BASE_URL. If missing, reply:
Not logged in. Run
/connector login <cpt_token>first.
Stop.
Step 2 — Fetch the catalog
GET ${CONNECTOR_BASE_URL}/v1/connectors with Authorization: Bearer ${CONNECTOR_API_KEY}. Use Bash tool with curl -sS.
The response is { data: Connector[], total } where each Connector has slug, namespace, description, category, iconUrl, auth_type ("oauth2" | "api_key" | "personal_token" | null).
Step 3 — Display
Render as a markdown table grouped by category. Include the auth_type column so the user knows whether they'll need BYO OAuth before going to production:
| Slug | Auth | Description |
|------|------|-------------|
| github | oauth2 | GitHub REST API — repos, issues, PRs |
| notion | oauth2 | Notion API — pages, databases |
| resend | api_key | Email delivery |
| ... | ... | ... |
At the bottom, hint:
Run
/connector add <slug>to scaffold a connection (e.g./connector add notion). Connectors withauth=oauth2use our shared OAuth app by default. For production, configure your own at /builder/oauth-apps/.
If the catalog is empty, say so.
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.
- 2d ago First seen · 40 lines · 14 tokens per session scan A a4c588d72990
list is a command published in the GitHub repository danielsalles/connector-platform-plugin (0 stars, last pushed 4mo ago), licensed MIT. It adds 14 tokens to every session and 368 once invoked, about $0.0001 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.
Other commands, from other repositories
minutes-ideas
Surface recent voice memos and ideas captured from any device. Use when the user asks "what ideas did I have?", "what were my recent memos?", "what did I record while walking?", or wants to recall a captured thought.
autobot-result
Print the most recent result.md for an autobot session, so the user can see how a bot is doing without attaching to its tmux session.
engage.actions
Execute Phase 7 - Actions on Objectives and Goal Achievement.
version
Show installed vs latest ai-sdlc plugin version. Bypasses the 24h SessionStart cache.
thread
Manage conversation threads (create, switch, update, delete, show).
handoff
Generate or load a session handoff. Usage: /handoff [create|resume].