Schema-aware guidance for validating LlamaFarm configurations. Activates for llamafarm.yaml validation, config errors, schema reference.
/plugin marketplace add llama-farm/claude-code-marketplace/plugin install llamafarm@llama-farm-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
cross-references.mdextractors.mdparsers.mdstrategies.mdSchema-aware guidance for validating LlamaFarm configurations.
Activate this skill when:
llamafarm.yaml files/validate commandversion: v1 # Required, must be "v1"
name: my-project # Required, project identifier
namespace: default # Required, organization/team grouping
runtime: # Required, model configuration
models: []
Valid values for runtime.models[].provider:
openai - OpenAI API or compatible endpointsollama - Ollama local modelslemonade - Lemonade runtime with NPU/GPU accelerationuniversal - LlamaFarm Universal Runtime| Field | Pattern | Example |
|---|---|---|
| Prompt names | ^[a-z][a-z0-9_]*$ | default, system_prompt |
| Database names | ^[a-z][a-z0-9_]*$ | main_db, vectors |
| Dataset names | ^[a-zA-Z0-9_-]+$ | research, fda-letters |
# Using LlamaFarm CLI
lf projects validate --config llamafarm.yaml
# Using Python validator
cd /path/to/llamafarm/config
uv run python validate_config.py llamafarm.yaml --verbose
Exit codes: 0 = valid, 1 = invalid, 2 = error
For detailed references, load these files as needed:
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Activates when the user asks about Agent Skills, wants to find reusable AI capabilities, needs to install skills, or mentions skills for Claude. Use for discovering, retrieving, and installing skills.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.