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/colossus-lab/openarg_backend/new-data-connectorgit clone --depth 1 https://github.com/colossus-lab/openarg_backendWrote 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/colossus-lab/openarg_backend/new-data-connector)<a href="https://agentmods.dev/commands/colossus-lab/openarg_backend/new-data-connector"><img src="https://agentmods.dev/badge/commands/colossus-lab/openarg_backend/new-data-connector.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.1 | $0.00000 | $0.00571 |
| Opus 5 | $0.00000 | $0.00285 |
| Sonnet 5 | $0.00000 | $0.00114 |
| Haiku 4.5 | $0.00000 | $0.00057 |
Grade A, and why
new-data-connector 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create new data connector: $ARGUMENTS
Add a new open data portal to the scraping/indexing system. Follow these steps:
1. Create the IDataSource adapter
Create src/app/infrastructure/adapters/source/{name}_adapter.py implementing IDataSource:
from src.app.domain.ports.source.data_source import IDataSource
from src.app.domain.entities.dataset import CatalogEntry, DownloadedData
class {Name}Adapter(IDataSource):
def __init__(self, base_url: str = "https://..."):
self._base_url = base_url
self._client = httpx.AsyncClient(timeout=30.0)
async def fetch_catalog(self, offset: int = 0, limit: int = 100) -> list[CatalogEntry]:
# Paginate through the portal catalog
# Return metadata: title, description, organization, tags, columns, download_url, format
...
async def fetch_catalog_count(self) -> int:
# Total datasets in the portal
...
async def download_dataset(self, entry: CatalogEntry) -> DownloadedData:
# Download the file (CSV/JSON/XLSX)
...
Primary reference: src/app/infrastructure/adapters/source/datos_gob_ar_adapter.py (CKAN), src/app/infrastructure/adapters/source/caba_adapter.py.
2. Register in Dishka
Edit src/app/setup/ioc/provider_registry.py:
- Add the adapter to
DataSourceProvideror create a new one - Expose as provider with
scope=Scope.APP
3. Add portal configuration
Edit src/app/setup/config/settings.py:
- Add the base URL for the new portal in
ScraperSettings
Edit config/local/config.toml with default values.
4. Wire into the scraper worker
Edit src/app/infrastructure/celery/tasks/scraper_tasks.py:
- Add the new portal as an option in
scrape_catalog(portal: str) - The worker should use the adapter to iterate the catalog and save to
datasets - Dispatch
index_dataset_embeddingfor each inserted dataset
5. Update task routing (if needed)
If the portal needs a dedicated queue, add it in src/app/infrastructure/celery/app.py → task_routes.
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.
- 6d ago First seen · 64 lines · 0 tokens per session scan A 64a7a7453672
new-data-connector is a command published in the GitHub repository colossus-lab/openarg_backend (144 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 571 tokens. 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.
Other commands, from other repositories
doctor.es
Diagnostica problemas de inferencia LLM en Mac: asiai doctor verifica el estado de los motores, conflictos de puertos, carga de modelos y estado de la GPU.
music-suno-prompt
Grounded Suno prompt synthesis from local knowledge corpus + persona canon + label canon. No vibes-prompting.
web-add
Ingest a single URL into the knowledge base.
laravel-ai-sdk
Build AI features with the first-party Laravel AI SDK (Laravel 13+); use the laravel:ai-sdk skill exactly as written.
audit-prompt
Evaluate an existing prompt for clarity, effectiveness, and edge cases.
develop-image-prompt.eval
Generates a detailed image generation prompt from a document or content description. Good output: a prompt that is specific, visual, non-abstract, includes style/composition/lighting guidance, and is calibrated to the specified dimensions and style options.