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 skills add EliBarak12/Elliot --skill build-connectorgit clone --depth 1 https://github.com/EliBarak12/ElliotWrote 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/elibarak12/elliot/build-connector)<a href="https://agentmods.dev/skills/elibarak12/elliot/build-connector"><img src="https://agentmods.dev/badge/skills/elibarak12/elliot/build-connector/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/elibarak12/elliot/build-connector"><img src="https://agentmods.dev/badge/skills/elibarak12/elliot/build-connector.svg" alt="Reviewed on agentmods" width="80" 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.00047 | $0.03182 |
| Opus 5 | $0.00023 | $0.01591 |
| Sonnet 5 | $0.00009 | $0.00636 |
| Haiku 4.5 | $0.00005 | $0.00318 |
Grade C, and why
build-connector scanned grade C with 2 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 9d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
Elliot plugin: !`curl -s http://localhost:3000/health 2>/dev/null | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('status','unknown'))" 2>/dev/null || echo "not running — start Elliot first: honcho sta Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
Elliot plugin: !`curl -s http://localhost:3000/health 2>/dev/null | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('status','unknown'))" 2>/dev/null || echo "not running — start Elliot first: honcho sta How it starts
The opening of the file, as written. The whole thing — 252 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Build Connector Workflow
You are building an Elliot connector — a JSON definition that wraps a data source in agent-ready MCP tools.
The tool sequence
Build always follows this order — each tool depends on the one before it:
elliot_set_context → name the connector + product
elliot_discover_source → register the API / DB, materialize its tables
elliot_query_sql → inspect the real columns before designing tools
elliot_create_tool → define one tool (verb-first description + SQL)
elliot_preview_tool → run that tool against sandbox data, verify rows
elliot_build_connector → assemble all registered tools into a connector
elliot_lint_connector → check the built connector; fix, rebuild, re-lint
elliot_export_connector → write the connector file to disk
elliot_lint_connector, elliot_run_eval, and elliot_export_connector all
operate on the connector produced by elliot_build_connector — if you skip the
build step they have nothing to work on.
Workspace state
Existing connectors: !ls connectors/*.connector.json 2>/dev/null | xargs -I{} basename {} .connector.json | tr '\n' ', ' || echo "(none yet)"
Elliot plugin: !curl -s http://localhost:3000/health 2>/dev/null | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('status','unknown'))" 2>/dev/null || echo "not running — start Elliot first: honcho start"
Steps
1. Name the connector
Call elliot_set_context with:
name: slug-style name (e.g. "acme-crm")description: one sentence describing the product
2. Describe the source
Call elliot_discover_source. Collect from the user:
- Base URL (for REST) or connection string format (for DB — never log the value)
- Auth type:
bearer,api_key,basic, ornone - Env var name holding the credential (e.g.
ACME_API_KEY) - Pagination style if REST:
cursor,offset,page,link_header, ornone
3. Explore the data shape
First, see what's loaded — call elliot_list_sources for a roster of every
discovered source (table name, row count, columns).
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.
- 9d ago First seen · 252 lines · 47 tokens per session scan C df1db360a161
build-connector is a skill published in the GitHub repository EliBarak12/Elliot (11 stars, last pushed 9d ago), licensed MIT. It adds 47 tokens to every session and 3,182 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
moai-platform-deployment
Deployment and hosting platform specialist covering Vercel, Railway, and Convex. Use when deploying applications, configuring edge functions, setting up continuous deployment, or managing serverless infrastructure.
multi-service-orchestration
PM2 process management, backend/frontend cascade execution, parallel worktree builds, and cross-service integration testing.
moai-platform-auth
Authentication and authorization specialist covering Auth0, Clerk, and Firebase Auth. Use when implementing authentication, MFA, SSO, passkeys, WebAuthn, social login, or security features.
architecture-patterns
System and API design guidance covering component boundaries, data flow, integration patterns, and scalability considerations.
specification-generation
Convert requirements into structured technical specifications with architecture decisions.
multi-app-orchestration
Orchestrate workflows across multiple applications and APIs — inter-app coordination, data handoff, and multi-system task completion.