010-archive/backups-20251108/skill-structure-cleanup-20251108-073936/plugins/examples/pi-pathfinder/skills/pi-pathfinder/SKILL.md
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. Activates when you request "skill adapter" functionality.
npx skillsauth add intent-solutions-io/plugins-nixtla skill-adapterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyzes 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.
testing
This skill enables Claude to manage isolated test environments using Docker Compose, Testcontainers, and environment variables. It is used to create consistent, reproducible testing environments for software projects. Claude should use this skill when the user needs to set up a test environment with specific configurations, manage Docker Compose files for test infrastructure, set up programmatic container management with Testcontainers, manage environment variables for tests, or ensure cleanup after tests. Trigger terms include "test environment", "docker compose", "testcontainers", "environment variables", "isolated environment", "env-setup", and "test setup".
tools
This skill uses the test-doubles-generator plugin to automatically create mocks, stubs, spies, and fakes for unit testing. It analyzes dependencies in the code and generates appropriate test doubles based on the chosen testing framework, such as Jest, Sinon, or others. Use this skill when you need to generate test doubles, mocks, stubs, spies, or fakes to isolate units of code during testing. Trigger this skill by requesting test double generation or using the `/gen-doubles` or `/gd` command.
tools
This skill enables Claude to generate realistic test data for software development. It uses the test-data-generator plugin to create users, products, orders, and custom schemas for comprehensive testing. Use this skill when you need to populate databases, simulate user behavior, or create fixtures for automated tests. Trigger phrases include "generate test data", "create fake users", "populate database", "generate product data", "create test orders", or "generate data based on schema". This skill is especially useful for populating testing environments or creating sample data for demonstrations.
development
This skill analyzes code coverage metrics to identify untested code and generate comprehensive coverage reports. It is triggered when the user requests analysis of code coverage, identification of coverage gaps, or generation of coverage reports. The skill is best used to improve code quality by ensuring adequate test coverage and identifying areas for improvement. Use trigger terms like "analyze coverage", "code coverage report", "untested code", or the shortcut "cov".