> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Skill Requirements • AI Agent SDK

> SkillRequirements: Capability requirements for a skill.

# SkillRequirements

> Defined in the [**models**](../modules/models) module.

<Badge color="blue">AI Agent</Badge>

Capability requirements for a skill.

This represents the parsed and normalized requirements from skill frontmatter.
Supports both Hermes/OpenClaw conventions and PraisonAI-specific extensions.

Attributes:
servers: Required MCP servers or service endpoints
tools: Required tool names (from tool registry)
env\_vars: Required environment variables (use sparingly)
openclaw\_hints: OpenClaw-specific metadata (passthrough)
fallback\_for\_tools: Tools this skill is a graceful fallback for. The
skill is offered only when *none* of these tools are present,
keeping capable agents free of redundant fallback guidance.
fallback\_for\_servers: MCP servers this skill is a graceful fallback
for. The skill is offered only when *none* of these servers are
present.

## Properties

<ResponseField name="servers" type="List[str]">
  No description available.
</ResponseField>

<ResponseField name="tools" type="List[str]">
  No description available.
</ResponseField>

<ResponseField name="env_vars" type="List[str]">
  No description available.
</ResponseField>

<ResponseField name="openclaw_hints" type="dict">
  No description available.
</ResponseField>

<ResponseField name="fallback_for_tools" type="List[str]">
  No description available.
</ResponseField>

<ResponseField name="fallback_for_servers" type="List[str]">
  No description available.
</ResponseField>

## Methods

<CardGroup cols={2}>
  <Card title="from_frontmatter()" icon="function" href="../functions/SkillRequirements-from_frontmatter">
    Parse requirements from skill frontmatter.
  </Card>

  <Card title="is_empty()" icon="function" href="../functions/SkillRequirements-is_empty">
    Check if no requirements are specified.
  </Card>
</CardGroup>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/skills/models.py#L28">
  `praisonaiagents/skills/models.py` at line 28
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Skills Concept" icon="wand-magic-sparkles" href="/docs/docs/concepts/skills" />

  <Card title="Skills Feature" icon="star" href="/docs/docs/features/skills" />
</CardGroup>
