README.md
A modular plugin system that allows AI agents to dynamically load skills.
A modular plugin system that allows AI agents to dynamically load and use 'skills' from local folders without code changes or restarts. It enables instant capability extension through script execution, hot reloading, and resource bundling.
Tools (3)
load_skillDynamically load a new skill from a specified local folder.list_skillsList all currently loaded and available skills.execute_skillRun a specific script or function from a loaded skill bundle.Environment Variables
SKILLS_PATHrequiredThe local directory path where skill modules are stored.Configuration
claude_desktop_config.json
{"mcpServers":{"skill-mcp":{"command":"npx","args":["-y","@ephemeraldew/skill_mcp"],"env":{"SKILLS_PATH":"/path/to/your/skills"}}}}Try it
→List all the skills currently available in my local skills folder.
→Load the new automation skill located in the ./plugins/web-scraper directory.
→Execute the 'generate-report' action from the data-analysis skill with the current dataset.
→Check if there are any new skills I can hot-reload from my project folder.