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.
git clone --depth 1 https://github.com/Sahib-Sawhney-WH/sahibs-claude-plugin-marketplaceWrote 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/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/scaffold-app)<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/scaffold-app"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/scaffold-app/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/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/scaffold-app"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/scaffold-app.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.00010 | $0.00714 |
| Opus 5 | $0.00005 | $0.00357 |
| Sonnet 5 | $0.00002 | $0.00143 |
| Haiku 4.5 | $0.00001 | $0.00071 |
Grade A, and why
scaffold-app 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 12d 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 — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dataverse Scaffold App Command
Create a new Python application project with Dataverse integration pre-configured.
Instructions
When the user runs /dataverse:scaffold-app [name]:
-
Get app name
- Use provided name or ask for one
- Create directory with that name
-
Choose app type
- Flask API
- FastAPI API
- CLI tool
- Data pipeline script
-
Create project structure
- Generate appropriate files based on type
- Include Dataverse client setup
- Add configuration templates
-
Set up dependencies
- Create requirements.txt
- Include all needed packages
-
Generate starter code
- Main application file
- Dataverse client module
- Configuration handling
- Example endpoints/commands
Flask API Structure
{app_name}/
├── app/
│ ├── __init__.py
│ ├── dataverse_client.py
│ ├── config.py
│ └── routes/
│ ├── __init__.py
│ └── accounts.py
├── requirements.txt
├── .env.example
├── run.py
└── README.md
FastAPI Structure
{app_name}/
├── app/
│ ├── __init__.py
│ ├── main.py
│ ├── dataverse_client.py
│ ├── config.py
│ ├── models/
│ │ └── account.py
│ └── routers/
│ └── accounts.py
├── requirements.txt
├── .env.example
└── README.md
CLI Tool Structure
{app_name}/
├── {app_name}/
│ ├── __init__.py
│ ├── cli.py
│ ├── dataverse_client.py
│ └── commands/
│ └── accounts.py
├── requirements.txt
├── .env.example
├── setup.py
└── README.md
Data Pipeline Structure
{app_name}/
├── pipeline/
│ ├── __init__.py
│ ├── extract.py
│ ├── transform.py
│ ├── load.py
│ └── dataverse_client.py
├── requirements.txt
├── .env.example
├── run_pipeline.py
└── README.md
Files to Generate
- dataverse_client.py - Singleton client setup
- config.py - Environment variable handling
- .env.example - Template for environment variables
- requirements.txt - Python dependencies
- README.md - Project documentation
- Main app file - Entry point with example code
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.
- 12d ago First seen · 123 lines · 10 tokens per session scan A 677da1b92bc9
scaffold-app is a command published in the GitHub repository Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace (4 stars, last pushed 8mo ago), licensed MIT. It adds 10 tokens to every session and 714 once invoked, about $0.0001 per session on Opus 5. 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-31.
Other commands, from other repositories
views
Create Django views with proper structure and best practices.
fastapi
FastAPI application design and implementation conventions. Use this skill when building, updating, or reviewing FastAPI services, routers, dependencies, request/response schemas, streaming endpoints, or API tests. Trigger on FastAPI-specific work such as path operation design, dependency injection, response models…
scaffold-service
Scaffold a thin ArchiPy FastAPI or gRPC service under services/{domain}/v{n}/.
project-builder
Hands-on Python projects for portfolio building.
api-endpoints
Create comprehensive FastAPI endpoints with proper structure, validation, and documentation.
app-factory
Create a scalable Flask application using the factory pattern with blueprints and configuration management.