my-skill

Load SKILL.md definitions to augment agent prompts with context.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/odellus/crow --skill my-skill-odellus
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: my-skill
Source: https://github.com/odellus/crow/tree/main/docs/openhands_book/docs/sdk/guides
Command: npx skills add https://github.com/odellus/crow --skill my-skill-odellus

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables modular, context-aware enhancements for agents by loading SKILL.md definitions.

Core Features & Use Cases

  • Always-loaded context: Provides persistent knowledge in the system prompt to guide decisions.
  • Trigger-loaded context: Injects content when keywords appear in user messages.
  • Progressive disclosure: Supports on-demand loading of skill content and resources to keep interactions lean.

Quick Start

Load skills from a directory containing SKILL.md files and optional resources, initialize an AgentContext with the loaded skills, and attach it to an Agent to begin using the loaded skills in conversations.

Frequently Asked Questions about my-skill

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

FAQPage Schema
How do I add contextual, keyword-activated skills to an AI agent?

Trigger-loaded context works by injecting content into the agent prompt only when specific keywords appear in user messages. This progressive disclosure keeps interactions lean while providing necessary context on demand.

What is the difference between always-loaded and trigger-loaded agent context?

Always-loaded context provides persistent knowledge in the system prompt to guide decisions, whereas trigger-loaded context injects content only when specified keywords appear in user messages, optimizing prompt size.

How do I load modular skills from a directory into an agent workflow?

To load modular skills, point the loader to a directory containing SKILL.md files and optional resources like scripts. Initialize an AgentContext with the loaded skills and attach it to your Agent to begin using them in conversations.

Do I need dependencies to use modular skills for agent prompt loading?

No external dependencies are required to use modular skills for agent prompt loading. You only need to provide a SKILL.md file with a name and description, alongside optional scripts, references, and assets for additional knowledge.

Can I load optional scripts and references on demand to keep agent interactions lean?

Yes, the system supports progressive disclosure by loading optional scripts, references, and assets on demand. This on-demand loading keeps agent interactions lean by only injecting content when required.