Borrowing it
Nothing to install: this file belongs to davidruzicka/mcp4openapi. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/davidruzicka/mcp4openapi/main/.claude/skills/create-crud-mcp-profile/SKILL.mdgit clone --depth 1 https://github.com/davidruzicka/mcp4openapiWrote 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/davidruzicka/mcp4openapi/create-crud-mcp-profile)<a href="https://agentmods.dev/skills/davidruzicka/mcp4openapi/create-crud-mcp-profile"><img src="https://agentmods.dev/badge/skills/davidruzicka/mcp4openapi/create-crud-mcp-profile.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.00068 | $0.01003 |
| Opus 5 | $0.00034 | $0.00502 |
| Sonnet 5 | $0.00014 | $0.00201 |
| Haiku 4.5 | $0.00007 | $0.00100 |
Grade A, and why
create-crud-mcp-profile 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 — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CRUD MCP Profile Builder
Build a production-ready profile in profiles/<api>/ without rediscovering repository conventions.
Load This Context First
Read only these sources first, in this order:
AGENTS.md(canonical rules and workflow constraints)IMPLEMENTATION.md(architecture intent)docs/PROFILE-GUIDE.md(profile structure and patterns)docs/PROFILE-TEST-GUIDE.md(schema-driven tests)- A strong local reference profile:
profiles/youtrack/profile.jsonfor CRUD grouping styleprofiles/github-security/profile.jsonfor compact two-tool pattern
- Target spec and folder:
profiles/<api>/openapi.*or equivalent file present in folder
Then inspect only relevant docs for updates:
README.mdprofile lists/sectionsCHANGELOG.md([Unreleased])TODO.mdonly if you are implementing an existing backlog item
For repeatable command snippets, use references/discovery-and-validation.md.
Expected Output
Create or update these files:
profiles/<api>/profile.jsonprofiles/<api>/profile.test.jsonREADME.md(profile list and profiles section)CHANGELOG.md(single-line user-facing entry inUnreleased)
Optional:
- Fix invalid OpenAPI syntax in the bundled spec if parser/validator fails (for example invalid
itemsshape).
Workflow
- Inventory the target spec.
- Build operation map from
operationId+ HTTP method + path. - Decide CRUD grouping based on available methods:
retrieve_contentfor GET-like readscreate_contentfor POST createsupdate_contentfor PATCH/PUT/POST updatesdelete_contentfor DELETE removes- If API is read-heavy, keep only meaningful groups (do not add empty tools).
- Define action names that are explicit and stable (for example
list_*,get_*,create_*,update_*,delete_*). - Generate parameter model from OpenAPI:
required: truefor parameters required by all actions in a toolrequired_forfor action-specific required parameters- include useful optional filters
- add
parameter_aliasesfor common ergonomic names (owner,repo,project_id, etc.)
- Set interceptors:
- bearer auth with API-specific env var name (for example
CODECOV_TOKEN) - base URL env var + sane default when known
- retry policy aligned with existing profiles when applicable
- bearer auth with API-specific env var name (for example
- Build
profile.test.jsonwith schema-driven scenarios:- one scenario per action minimum
coverage.require_all_actions: true- add request assertions when behavior is non-trivial (aliases, metadata params, response field forwarding, proxy download)
- Validate and test.
- Update docs (
README.md,CHANGELOG.md).
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 92 lines · 68 tokens per session scan A 374ca35634e9
create-crud-mcp-profile is a skill published in the GitHub repository davidruzicka/mcp4openapi (0 stars, last pushed 4d ago), licensed MIT. It adds 68 tokens to every session and 1,003 once invoked, about $0.0003 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 skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…