Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/Myst4ke/mcp-to-skills-converternpx agentmods add skills/myst4ke/mcp-to-skills-converter/api-developmentWrote 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/myst4ke/mcp-to-skills-converter/api-development)<a href="https://agentmods.dev/skills/myst4ke/mcp-to-skills-converter/api-development"><img src="https://agentmods.dev/badge/skills/myst4ke/mcp-to-skills-converter/api-development/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/skills/myst4ke/mcp-to-skills-converter/api-development"><img src="https://agentmods.dev/badge/skills/myst4ke/mcp-to-skills-converter/api-development.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.00026 | $0.02909 |
| Opus 5 | $0.00013 | $0.01455 |
| Sonnet 5 | $0.00005 | $0.00582 |
| Haiku 4.5 | $0.00003 | $0.00291 |
Grade A, and why
api-development 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 10d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- **child_process**: For process management How it starts
The opening of the file, as written. The whole thing — 487 lines — stays where its author put it; the contents beside it link to each section on GitHub.
API Development Skill
Overview
This skill provides guidance for implementing backend API services with TypeScript and Node.js. It covers file system operations, process management, service architecture, error handling, and cross-platform compatibility. For US-4 (MCP Uninstaller), this skill is specifically tailored for:
- File validation and verification services
- Process detection and termination
- Directory removal with safety checks
- Rollback mechanism implementation
Core Capabilities
- Service Architecture: Create well-structured TypeScript services with clear separation of concerns
- File System Operations: Implement safe file/directory operations with proper error handling
- Process Management: Detect and terminate processes cross-platform (Windows, macOS, Linux)
- Error Handling: Implement comprehensive error handling with specific error types
- Cross-Platform Support: Handle platform differences in file paths and process management
- Async/Await Patterns: Use modern async patterns for non-blocking operations
- Type Safety: Leverage TypeScript for type-safe implementations
Input Requirements
Required:
- Task ID and description
- Files to create or modify
- Acceptance criteria
- Dependencies on other tasks
Optional:
- Existing service interfaces
- Project architecture patterns
- Testing requirements
Output Format
The skill returns:
- Service implementation with TypeScript
- Interface/type definitions
- Error handling patterns
- Usage examples
- Testing guidance
Dependencies
- TypeScript 5.x: For type-safe implementation
- Node.js 18+: For runtime environment
- fs-extra: Enhanced file system operations
- child_process: For process management
- rimraf or native fs.rm: For recursive directory deletion
Workflow
Step 1: Define Service Interface
Create TypeScript interfaces for the service:
// src/interfaces/service-name.interface.ts
export interface ServiceResult {
success: boolean;
data?: any;
error?: string;
}
export interface ServiceOptions {
// Service-specific options
}
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.
- 10d ago First seen · 487 lines · 26 tokens per session scan A e48615928e16
api-development is a skill published in the GitHub repository Myst4ke/mcp-to-skills-converter (1 stars, last pushed 10mo ago), licensed MIT. It adds 26 tokens to every session and 2,909 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
bun-knowledge-patch
Use this skill when working on Bun applications, packages, builds, tests, servers, or Node.js compatibility. Check the relevant reference before relying on older Bun behavior or translating Node-oriented code.
typescript-pro
Implements advanced TypeScript type systems, creates custom type guards, utility types, and branded types, and configures tRPC for end-to-end type safety. Use when building TypeScript applications requiring advanced generics, conditional or mapped types, discriminated unions, monorepo setup, or full-stack type safety…
ia-nodejs-backend
Node.js backend patterns: layered architecture, TypeScript, validation, error handling, security, observability, logging, metrics, deployment. Use when building REST APIs, REST endpoints, middleware, Express/Fastify/Hono/NestJS/Koa servers, tRPC procedures, Bun servers, or server-side TypeScript.
backend-scaffolding
Scaffolds Node.js/TypeScript backend components with CMDO architecture, driven by component settings.
nestjs-expert
Creates and configures NestJS modules, controllers, services, DTOs, guards, and interceptors for enterprise-grade TypeScript backend applications. Use when building NestJS REST APIs or GraphQL services, implementing dependency injection, scaffolding modular architecture, adding JWT/Passport authentication, integrating…
nodejs-best-practices
Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.