load-skill

Load newly created skills from the local skills directory into the running system.

2.0k|267|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/openakita/openakita --skill load-skill-openakita
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: load-skill
Source: https://github.com/openakita/openakita/tree/main/skills/system/load-skill
Command: npx skills add https://github.com/openakita/openakita --skill load-skill-openakita

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill allows you to immediately use newly created or manually added skills without needing to restart the application, streamlining the development and deployment of new functionalities.

Core Features & Use Cases

  • On-demand Skill Loading: Load skills from the skills/ directory as soon as they are created or modified.
  • Seamless Integration: Ensures that new skills are recognized and available for use by the AI agents without interruption.
  • Use Case: After creating a new customer-support skill using the skill-creator, you can call load_skill(skill_name="customer-support") to make it available for the AI to handle customer inquiries.

Quick Start

Use the load_skill tool to load the new skill named 'my-new-skill'.

Frequently Asked Questions about load-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I load a newly created skill into a running AI agent without restarting?

You can load a new skill by calling the load_skill tool with the specific skill name parameter. This dynamically registers the module from the local skills directory into the running system without requiring a restart.

How do I make a manually added AI agent capability available immediately?

To make manually added capabilities available, call the load_skill tool with the target skill name. This dynamically registers the new module from the local skills directory into the running system for immediate use.

What directory structure is needed to load local skills dynamically?

Dynamic skill loading requires a local skills directory containing individual skill folders. Each target skill must include a SKILL.md entry point file to successfully register the new module into the running system.

Can I integrate modified skills into the running system without interruption?

Yes, integrating modified skills without interruption is supported. Call load_skill with the skill name to dynamically register the updated module from the local skills directory for immediate use by AI agents.