Automatically generates skills from Context7 MCP documentation responses
Generates skills from Context7 MCP documentation responses with proper YAML and markdown formatting.
/plugin marketplace add jovermier/claude-code-plugins-ip-labs/plugin install dev@ip-labs-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
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:
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.