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 stevesolun/micro-skills --skill originalgit clone --depth 1 https://github.com/stevesolun/micro-skillsWrote 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/stevesolun/micro-skills/original)<a href="https://agentmods.dev/skills/stevesolun/micro-skills/original"><img src="https://agentmods.dev/badge/skills/stevesolun/micro-skills/original.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.00043 | $0.01874 |
| Opus 5 | $0.00022 | $0.00937 |
| Sonnet 5 | $0.00009 | $0.00375 |
| Haiku 4.5 | $0.00004 | $0.00187 |
Grade A, and why
api-crud-generator 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 7d 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 — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.
API CRUD Generator
Generate production-ready CRUD REST API endpoints. This skill creates complete resource endpoints with validation, authentication, error handling, pagination, and tests.
When to Use
Trigger when the user asks to:
- Create API endpoints for a resource
- Build REST CRUD operations
- Generate backend routes with validation
- Add a new resource/entity to an existing API
Tech Stack Detection
Before generating code, detect the project's tech stack:
- Check for
package.json-> Node.js (Express, Fastify, Nest) - Check for
requirements.txtorpyproject.toml-> Python (FastAPI, Django, Flask) - Check for
go.mod-> Go (Gin, Echo, Chi) - Check for
Gemfile-> Ruby (Rails, Sinatra) - If unclear, ask the user which framework to use.
Read the existing project structure to match conventions:
- File naming (camelCase vs snake_case vs kebab-case)
- Directory structure (routes/, controllers/, handlers/)
- Import style (ES modules vs CommonJS vs relative paths)
- Existing middleware patterns
- Database ORM in use (Prisma, TypeORM, SQLAlchemy, GORM, ActiveRecord)
Resource Definition
For each resource, determine:
- Resource name (singular and plural forms)
- Fields with types and constraints:
- Required vs optional
- String length limits
- Number ranges
- Enum values
- Unique constraints
- Default values
- Relationships to other resources (hasMany, belongsTo, manyToMany)
- Which fields are searchable/filterable
- Which fields should be excluded from responses (passwords, internal IDs)
Endpoint Generation
Generate these endpoints for each resource:
GET /resources
- Pagination:
?page=1&limit=20with max limit of 100 - Sorting:
?sort=createdAt&order=desc - Filtering:
?status=active&category=tech - Search:
?q=search+termacross searchable fields - Response format:
{
"data": [...],
"meta": {
"total": 150,
"page": 1,
"limit": 20,
"totalPages": 8
}
}
GET /resources/:id
- Return 404 with
{ "error": "Resource not found" }if not exists - Include related resources if
?include=comments,authoris specified
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.
- 7d ago First seen · 257 lines · 43 tokens per session scan A 2476b1dd7aa7
api-crud-generator is a skill published in the GitHub repository stevesolun/micro-skills (11 stars, last pushed 5mo ago), licensed MIT. It adds 43 tokens to every session and 1,874 once invoked, about $0.0002 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-30.
Other skills, from other repositories
octopus-architecture
Review system architecture, simplify boundaries, or compare interface designs from repository evidence.
add-cloud-flow
Integrates Power Automate cloud flows into a Power Pages site. Lists available flows, suggests relevant ones based on intent, identifies scenarios and web roles, creates metadata files, and generates client-side code to call flows. Handles both new flow registration and adding already-registered flows to additional…
list-connections
Lists Power Platform connections in the current environment. Use when you need a connection ID before adding a connector to a code app.
tidewave-integration
Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.
better-auth
Skill for integrating Better Auth - comprehensive TypeScript authentication framework for Cloudflare D1, Next.js, Nuxt, and 15+ frameworks. Use when adding auth, encountering D1 adapter errors, or implementing OAuth/2FA/RBAC features.
cloudflare-email-routing
Cloudflare Email Routing for receiving/sending emails via Workers. Use for email workers, forwarding, allowlists, or encountering Email Trigger errors, worker call failures, SPF issues.