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.
Decision snapshot
Is this a fit?
Writing, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
Permission behavior not yet detected.
Copy skill directory
20 days ago
No specific cautions were detected. Review the source and requested permissions before installing.
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. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Writing
- Writing use cases
Declared skill metadata
- Source file: plugins/vercel/skills/micro/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- 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
Verified compatibility and discovery
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.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.