From shipshitdev-library
Creates and configures Nextra documentation sites with MDX, navigation, and built-in components. Helps organize content and set up search.
How this skill is triggered — by the user, by Claude, or both
Slash command
/shipshitdev-library:nextra-writerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Creating or updating Nextra documentation (.md, .mdx)
| Technology | Version |
|---|---|
| Nextra | 3.x |
| Next.js | 14.x / 15.x |
| React | 18.x / 19.x |
| TypeScript | 5.x |
| MDX | 3.x |
# 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
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
Configure via _meta.json:
{
"index": "Introduction",
"getting-started": "Getting Started",
"---": {
"type": "separator"
},
"api": "API Reference"
}
| Feature | Pattern |
|---|---|
| Callouts | <Callout type="info"> |
| Tabs | <Tabs items={['npm', 'yarn']}> |
| Cards | <Cards> component |
| Steps | <Steps> component |
| File Tree | <FileTree> component |
| 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
npx claudepluginhub shipshitdev/skillsBuilds documentation sites using Nuxt, Nuxt Content, and Nuxt UI with a zero-config CLI. Includes components for alerts, mermaid diagrams, package manager commands, and automatic markdown transformations.
Guides building and maintaining Cyfrin Next.js documentation sites using MDX and Tailwind CSS, covering structure, required components like PrevNextNav, PageActions, edit buttons, and link checking.
Builds and maintains documentation sites with Mintlify. Use when creating docs pages, configuring navigation, adding components, or setting up API references.