Analyzes existing plugins to extract their capabilities, then adapts and applies those skills to the current task. Acts as a universal skill chameleon that learns from other plugins.
80
6%
Does it follow best practices?
Impact
94%
1.00xAverage score across 9 eval scenarios
Advisory
Suggest reviewing before use
Optimize this skill with Tessl
npx tessl skill review --optimize ./backups/skills-migration-20251108-070147/plugins/examples/pi-pathfinder/skills/pi-pathfinder/SKILL.mdAnalyzes plugins in the claude-code-plugins marketplace to understand their capabilities, extracts the core patterns and approaches, then adapts those skills to solve the current user's task. Acts as a "skill chameleon" that can adopt any plugin's capabilities.
When user presents a task:
Search existing plugins for relevant capabilities:
# Find plugins in relevant category
ls plugins/community/ plugins/packages/ plugins/examples/
# Search for keywords in plugin descriptions
grep -r "keyword" --include="plugin.json" plugins/
# Find similar commands/agents
grep -r "capability-name" --include="*.md" plugins/For each relevant plugin found, analyze:
Commands (commands/*.md):
Agents (agents/*.md):
Skills (skills/*/SKILL.md):
**Scripts (scripts/.sh, .py):
Combine learned patterns:
Apply the adapted skill:
User task: "Analyze this codebase for issues"
Process:
owasp-top-10-scanner, code-quality-enforcer, security-audit-agentUser task: "Generate API documentation"
Process:
api-documenter, openapi-generator, readme-builderUser task: "Automate deployment process"
Process:
deployment-automation, ci-cd-pipeline, docker-compose-generatorTrigger when:
Choose plugins based on:
When adapting skills:
✅ Read and analyze plugin source code ✅ Extract patterns and approaches ✅ Adapt methodologies to new contexts ✅ Combine multiple plugin capabilities ✅ Apply learned skills with reasoning
❌ Execute compiled code (MCP servers) ❌ Access external APIs without credentials ❌ Modify original plugins ❌ Guarantee exact plugin behavior replication ❌ Use plugins that require specific environment setup
Skill adaptation is successful when:
Always inform user:
User: "I need to validate JSON schemas in my project"
Skill Adapter Process:
1. Searches plugins for JSON validation
2. Finds: schema-validator, json-lint-enforcer
3. Extracts: ajv library usage, error formatting patterns
4. Adapts: Uses available tools (jq, node, python)
5. Applies: Validates user's schemas with detailed errors
6. Reports: "I adapted the schema-validator approach using jq
for validation and added custom error formatting"Skill Adapter improves by:
In essence: Skill Adapter is a meta-skill that makes the entire plugin marketplace available as a learning resource, extracting and applying capabilities on-demand to solve user tasks efficiently.
3e83543
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.