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 skills/mindsdb/anton/build-fullstack-backendnpx skills add mindsdb/anton --skill build-fullstack-backendgit clone --depth 1 https://github.com/mindsdb/antonWhat 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.00115 | $0.03836 |
| Opus 5 | $0.00057 | $0.01918 |
| Sonnet 5 | $0.00023 | $0.00767 |
| Haiku 4.5 | $0.00012 | $0.00384 |
Grade A, and why
build-fullstack-backend 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.
// usage: fetch(api('/api/items')) How it starts
The opening of the file, as written. The whole thing — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BACKEND & FULLSTACK APPLICATION GENERATION:
When the user asks to build a backend service, web application with a backend, or API-driven system, follow this workflow. It covers BOTH fullstack artifact types — the steps are identical; only the LOCAL STATE rule (see RULES) differs.
HARD CONTRACT (violating ANY of these breaks launch or deployment — full explanations in the RULES of step 4):
- The backend file is
<artifact_path>/backend.py; thehandlerattribute and theSECRETSdict keep exactly those names. handler = Mangum(app, lifespan="off").- ALL API routes live under
/api/*and are registered BEFOREapp.mount("/", StaticFiles(...)). - The script accepts
--portvia argparse and binds to it — never hardcode a port. - The entire frontend lives in
<artifact_path>/static/, entry-pointstatic/index.html. <artifact_path>/requirements.txtexists and lists at leastfastapi,mangum,uvicorn.- Secrets are read from
SECRETS[...]at their point of use inside routes — never copied into module-level variables at import time.
- REGISTER THE ARTIFACT: Follow the universal artifact contract from the ARTIFACTS section. For backend apps specifically:
type: pick between the two fullstack types:"fullstack-stateless-app"— the DEFAULT. Always start here. The app keeps NO local state between requests (the deployment target is stateless: AWS Lambda with a read-only filesystem, see RULES and DEPLOYMENT NOTES below); all persistence goes through external data sources."fullstack-stateful-app"— ONLY when the app genuinely requires local on-disk state between requests (e.g. a SQLite DB) AND that state cannot live in an external connected data source. When in doubt, choose stateless.
primary: set to"static/index.html"— the frontend ALWAYS lives in astatic/subfolder of the artifact (see steps 4 and 5 below). Use the returned<artifact_path>for ALL subsequent writes —backend.pyandrequirements.txtgo directly in<artifact_path>/; ALL frontend files (HTML, CSS, JS, images, fonts) go into<artifact_path>/static/.
- TECHNICAL SPECIFICATION (as a system analyst): Create a brief technical specification for the application. The specification MUST include:
- Brief description of what the application does (keep it concise)
- Core features and requirements
- REST API specification in markdown format with:
- Endpoints and HTTP methods
- Request/response schemas (JSON examples)
- Error handling
- Framework: ALWAYS use FastAPI. No other framework is supported here — every backend MUST be FastAPI so it can be invoked both locally and as an AWS Lambda function via the canonical template in step 4.
- Key dependencies and libraries needed (in addition to the mandatory
fastapi,mangum,uvicorn— see step 4)
- FETCH & VALIDATE SAMPLE DATA: Using the scratchpad tool:
- Fetch representative sample data from the user's data source (API, database, file)
- Get enough data to understand: structure, data types, volume, and shape
- Answer these questions:
- Is the fetched data sufficient for building the application per the spec?
- Can this data type be used to implement the API as designed?
- Do we need different/more data, or should the spec be revised?
- If the answer to any question is "no" — go back to step 2 and revise the technical specification based on what you learned about the actual data
- IMPLEMENT BACKEND: In a scratchpad named exactly the artifact slug (use the
slugreturned bycreate_artifact/open_artifactas the scratchpad name), implement the backend code.launch_backendruns the backend in this same scratchpad's venv, so any packages you install or imports you test here will be present at launch.
CANONICAL TEMPLATE (use this skeleton verbatim, add your routes inside the # === API routes === block). It runs unchanged both locally (python backend.py --port=NNN) and on AWS Lambda (handler = backend.handler):
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 · 178 lines · 115 tokens per session scan A e848d0778fd3
build-fullstack-backend is a skill published in the GitHub repository mindsdb/anton (749 stars, last pushed 3d ago), licensed MIT. It adds 115 tokens to every session and 3,836 once invoked, about $0.0006 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-30.
Other skills, from other repositories
autonomous_building
Autonomous PyWry application building using LLM sampling, elicitation, and progress reporting.
python-conventions
Python code conventions covering type hints, Ruff formatting/linting, mypy/pyright, pytest, async I/O, uv packaging, and dependency security scanning. Load when writing or reviewing Python code.
pyo3-bindings
PyO3 conventions for exposing a Rust core to Python: pyclass/pymethods, PyErr/PyResult error mapping, GIL release, properties, maturin builds, and pytest. Load when generating or reviewing PyO3 Python bindings for a Rust library.
pypi
Generated by Gutenberg. Use this skill to call the pypi API through the local pypi CLI.
bump-dependency
Bumps a Python package dependency across Home Assistant Core integrations, regenerates core requirement files, runs verification tests and prek lint, and prepares a pull request with proper release/compare links.
biopython
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use…