api-development

api-development is a skill for Claude Code from Myst4ke/mcp-to-skills-converter. It costs 26 tokens per session (2,909 once invoked), scanned A, original, MIT.

A guide for building backend services in TypeScript and Node.js, including file handling and process control.

In plain words
What is it for?
Use it when creating APIs, checking or removing files, detecting or stopping processes, and adding rollback behavior.
Why use it?
It helps structure server-side code safely and handle errors and differences between Windows, macOS, and Linux.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { ServiceResult, ServiceOptions } from '../interfaces/service-name.interface';.

Part of the spec-implementer-generated plugin — 3 skills, 4 agents shipped together

Good fit Use it when creating APIs, checking or removing files, detecting or stopping processes, and adding rollback behavior.

Compare 6 skills from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/Myst4ke/mcp-to-skills-converter
agentmods
npx agentmods add skills/myst4ke/mcp-to-skills-converter/api-development

Made for: Claude Code.

Or install spec-implementer-generated, the plugin that ships this one along with the rest of its 3 skills, 4 agents.

Wrote 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.

agentmods badge for api-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/myst4ke/mcp-to-skills-converter/api-development/github.svg)](https://agentmods.dev/skills/myst4ke/mcp-to-skills-converter/api-development)
Your own site
<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.

agentmods 80×15 button for api-development

Your own site · 80×15
<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>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,909 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash e48615928e16, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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
.claude/spec-implementer-generated/skills/api-development/SKILL.md · 487 lines

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
}

Read the full file on GitHub · 487 lines

Changes

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.

  1. 10d ago First seen · 487 lines · 26 tokens per session scan A e48615928e16

Subscribe to this mod's changes

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.

Related

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.

Nevaberry/nevaberry-plugins · 8 tokens

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…

eric861129/SKILLS_All-in-one · 69 tokens

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.

iliaal/whetstone · 70 tokens

backend-scaffolding

Scaffolds Node.js/TypeScript backend components with CMDO architecture, driven by component settings.

LiorCohen/sdd · 25 tokens

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…

eric861129/SKILLS_All-in-one · 107 tokens

nodejs-best-practices

Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.

SKB3002/agenthub · 33 tokens