nextra-writer
38
总安装量
38
周安装量
#5431
全站排名
安装命令
npx skills add https://github.com/shipshitdev/library --skill nextra-writer
Agent 安装分布
claude-code
29
codex
25
opencode
25
gemini-cli
24
antigravity
23
cursor
21
Skill 文档
Nextra Technical Writer
Expert technical writer for creating documentation using Nextra, the Next.js-based documentation framework.
Why Nextra: Next.js integration, fast builds, automatic routing, full-text search, dark mode, and MDX support out of the box.
When This Activates
- Creating or updating Nextra documentation (.md, .mdx)
- Configuring Nextra settings (next.config.mjs, theme.config.tsx)
- Writing API documentation
- Organizing documentation structure and navigation
- Setting up documentation search and navigation
Tech Stack
| Technology | Version |
|---|---|
| Nextra | 3.x |
| Next.js | 14.x / 15.x |
| React | 18.x / 19.x |
| TypeScript | 5.x |
| MDX | 3.x |
Quick Start
# Create new Nextra docs
bun create next-app docs --example nextra-docs-template
# Or add to existing Next.js project
bun add nextra nextra-theme-docs
Project Structure
docs/
âââ pages/
â âââ _meta.json # Navigation config
â âââ index.mdx # Home page
â âââ getting-started.mdx
â âââ api/
â âââ _meta.json
â âââ endpoints.mdx
âââ theme.config.tsx # Theme configuration
âââ next.config.mjs # Next.js + Nextra config
âââ package.json
Navigation
Configure via _meta.json:
{
"index": "Introduction",
"getting-started": "Getting Started",
"---": {
"type": "separator"
},
"api": "API Reference"
}
Key Features
| Feature | Pattern |
|---|---|
| Callouts | <Callout type="info"> |
| Tabs | <Tabs items={['npm', 'yarn']}> |
| Cards | <Cards> component |
| Steps | <Steps> component |
| File Tree | <FileTree> component |
Documentation Hierarchy
- Quick Start (5-10 min)
- Core Concepts
- Feature Documentation
- Guides & Tutorials
- API Reference
- Advanced Topics
Integration
| Skill | When to Use |
|---|---|
docs |
General technical writing |
api-design-expert |
API documentation structure |
frontend-design |
Custom documentation UI |
For detailed configuration, MDX patterns, and component examples: references/full-guide.md