mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-04 16:52:37 +00:00
introduce the agent skills standard for packaging reusable instructions that agents can discover and activate at runtime. - skills defined via SKILL.md with yaml frontmatter and markdown body - three-level progressive disclosure: metadata, instructions, resources - filesystem discovery with directory name validation - skill lifecycle events (discovery, loaded, activated, failed) - crew-level skills resolved once and shared across agents - skill context injected into both task execution and standalone kickoff
23 lines
406 B
Markdown
23 lines
406 B
Markdown
---
|
|
name: valid-skill
|
|
description: A complete test skill with all optional directories.
|
|
license: Apache-2.0
|
|
compatibility: crewai>=0.1.0
|
|
metadata:
|
|
author: test
|
|
version: "1.0"
|
|
allowed-tools: web-search file-read
|
|
---
|
|
|
|
## Instructions
|
|
|
|
This skill provides comprehensive instructions for the agent.
|
|
|
|
### Usage
|
|
|
|
Follow these steps to use the skill effectively.
|
|
|
|
### Notes
|
|
|
|
Additional context for the agent.
|