Help us improve
Share bugs, ideas, or general feedback.
From dev
Automatically generates skills from Context7 MCP documentation responses
npx claudepluginhub jovermier/claude-code-plugins-ip-labs --plugin devHow this skill is triggered — by the user, by Claude, or both
Slash command
/dev:skills/context7-skill-generatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automatically captures Context7 MCP documentation responses and generates properly formatted skill files.
Use when creating new skills, restructuring existing skills, or improving skill documentation. Generates SKILL.md + references/ structure with proper patterns.
Ingests documentation site URLs, discovers pages via sitemap or nav crawl, extracts markdown, and generates Claude Code skill packages with SKILL.md indexes and references.
Guides creating and editing SKILL.md files for Claude Code skills, covering objectives, when to create, YAML frontmatter requirements, structure, and writing principles like showing patterns with examples.
Share bugs, ideas, or general feedback.
Automatically captures Context7 MCP documentation responses and generates properly formatted skill files.
When Context7 MCP is invoked during a conversation, this skill:
Simply invoke this skill after using Context7:
/skill context7-skill-generator
The skill will analyze the conversation for Context7 responses and prompt you for:
latest-nextjs, react-compiler)For explicit invocation with parameters:
/skill:from-context7
The skill looks for these Context7 MCP tool invocations:
resolve-library-id - Library resolutionquery-docs - Documentation queriesThe generated skill follows this template:
---
name: skill-name
description: Brief description of the skill
updated: YYYY-MM-DD
source: context7
library: library-name
version: detected-version
---
Skills are generated to:
plugins/{plugin-name}/skills/{skill-name}/SKILL.md
# 1. Use Context7 to get documentation
How do I set up Next.js 16 middleware? use context7
# 2. Generate a skill from the response
/skill context7-skill-generator
# 3. Provide prompted information:
# - Skill name: nextjs-middleware
# - Description: Next.js 16 middleware patterns and configuration
# - Plugin: nextjs
# 4. Skill file created at:
# plugins/nextjs/skills/nextjs-middleware/SKILL.md
The skill identifies Context7 content by looking for:
resolve-library-id or query-docsAttempts to extract version information from:
/vercel/next.js)If the skill cannot:
update-indexes after generating new skillsThis skill integrates with the IP Labs marketplace by:
latest-nextjs and latest-reactFor multiple libraries, invoke multiple times:
/skill context7-skill-generator
# (generate first skill)
/skill context7-skill-generator
# (generate second skill)
Add custom sections by editing the generated skill file after creation. Common additions: