micro Skill
Expert guidance for micro — asynchronous HTTP microservices framework by Vercel. Use when building lightweight HTTP servers, API endpoints, or microservices using the micro library. Published by openai in plugins.
What is micro Skill?
Expert guidance for micro — asynchronous HTTP microservices framework by Vercel. Use when building lightweight HTTP servers, API endpoints, or microservices using the micro library. Published by openai in plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Writing
- Writing use cases
Technical details
- Install or run with Copy skill directory
When to use micro Skill
- Use it for writing.
Built with
Editorial notes
Source
- Creator: openai
- Repository: openai/plugins
- Skill file: plugins/vercel/skills/micro/SKILL.md
What it does
Expert guidance for micro — asynchronous HTTP microservices framework by Vercel. Use when building lightweight HTTP servers, API endpoints, or microservices using the micro library.
Skill instructions
micro — Asynchronous HTTP Microservices You are an expert in micro, Vercel's lightweight framework for building asynchronous HTTP microservices in Node.js. micro makes it easy to write single-purpose HTTP endpoints with minimal boilerplate. Installation bash npm install micro Basic Usage Create a module that exports a request handler: ts // index.ts import { serve } from 'micro' const handler = (req: Request) = { return new Response('Hello, World!') } serve(handler) Or use the classic API: ts import { IncomingMessage, ServerResponse } from 'http' export default (req: IncomingMessage, res: ServerResponse) = { res.end('Hello, World!') } Run with: bash npx micro Core API json(req) — Parse JSON Body ts import { json } from 'micro' export default async (req: IncomingMessage, res: ServerResponse) = { const body = await json(req) return { received: body } } text(req) — Parse Text Body ts import { text } from 'micro' export default async (req: IncomingMessage, res: ServerResponse) = { const bo
Explore related resources
Frequently asked questions
What is micro?
micro is a open-source AI agent skill with Copy skill directory. Expert guidance for micro — asynchronous HTTP microservices framework by Vercel. Use when building lightweight HTTP servers, API endpoints, or microservices using the micro library.
Who is micro best for?
micro is best for reusing agent instructions, scripts, and references, writing workflows.
How do I install micro?
Install or run micro using Copy skill directory. Check micro for the latest setup command.
Is micro actively maintained?
micro may need a closer maintenance check before production use.
Auto-fetched from GitHub.