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/logingit clone --depth 1 https://github.com/danielsalles/connector-platform-pluginWrote 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/commands/danielsalles/connector-platform-plugin/login)<a href="https://agentmods.dev/commands/danielsalles/connector-platform-plugin/login"><img src="https://agentmods.dev/badge/commands/danielsalles/connector-platform-plugin/login.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 | $0.00012 | $0.00675 |
| Opus 5 | $0.00006 | $0.00338 |
| Sonnet 5 | $0.00002 | $0.00135 |
| Haiku 4.5 | $0.00001 | $0.00068 |
Grade A, and why
login 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.
Make a GET request to `https://connector-api.plataform-connect.workers.dev/v1/me` with header `Authorization: Bearer <token>`. Use the Bash tool with `curl -sS`. How it starts
The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
The user is running /connector login with a builder token (cpt_*) provided by the Connector Platform admin.
Step 1 — Validate the token format
The token must start with cpt_. If the user passed something else (or nothing), reply:
The token must start with
cpt_. Get one from your platform admin (admin runsCreate builderin the platform's/admin/builderspage and shares the bootstrap token).
Stop here on format error.
Step 2 — Verify the token works and is a builder token
Make a GET request to https://connector-api.plataform-connect.workers.dev/v1/me with header Authorization: Bearer <token>. Use the Bash tool with curl -sS.
Parse the JSON response:
- If status != 200 → tell the user the token is invalid or revoked. Stop.
- If
role!="builder"→ tell the user this is not a builder token (it might be an end_user or admin token). Stop. - If
builder_idis null → tell the user the token has no builder context. Stop.
Save builder_id from the response — you'll need it next.
Step 3 — Write .env.local at project root
If .env.local already exists, append these lines (or update if they already exist). Do NOT clobber existing keys.
CONNECTOR_API_KEY=<token>
CONNECTOR_BASE_URL=https://connector-api.plataform-connect.workers.dev
CONNECTOR_MCP_URL=https://connector-mcp.plataform-connect.workers.dev
CONNECTOR_BUILDER_ID=<builder_id from step 2>
Step 4 — Write .mcp.json at project root
Write the file with exactly this content (substitute <builder_id> and <token>):
{
"mcpServers": {
"connector-platform": {
"url": "https://connector-mcp.plataform-connect.workers.dev/mcp/<builder_id>/self",
"headers": {
"Authorization": "Bearer <token>"
}
}
}
}
If .mcp.json already exists with other servers, merge — preserve existing keys, add connector-platform to mcpServers.
Step 5 — Update .gitignore
Ensure .env.local is in .gitignore. Append the line if missing. Do not touch other entries.
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.
- 3d ago First seen · 77 lines · 12 tokens per session scan A ed74d795a7b3
login is a command published in the GitHub repository danielsalles/connector-platform-plugin (0 stars, last pushed 4mo ago), licensed MIT. It adds 12 tokens to every session and 675 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
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.