FrostyJay7813's picture
Upload README.md with huggingface_hub
188c5d7 verified
|
Raw
History Blame Contribute Delete
954 Bytes
---
license: apache-2.0
language: en
tags:
- agentic-ai
- agent-specifications
- capability-manifest
- skills
pretty_name: AIF Agent Specifications
size_categories: n<1K
---
# AIF Agent Specifications
Structured agent definitions, capability manifests, and skill contracts for the AIF platform.
## Contents
- **Agent Definitions**: Name, role, capabilities, constraints
- **Capability Manifests**: What each agent can and cannot do
- **Skill Contracts**: Input/output schemas for composable skills
- **Dependency Maps**: Inter-agent communication patterns
## Schema
```json
{
"agent_id": "string",
"name": "string",
"role": "planner|engineer|verifier|executor|reviewer",
"capabilities": ["string"],
"skills": ["string"],
"constraints": {"max_tokens": "int", "allowed_tools": ["string"]},
"version": "string"
}
```
## Usage
```python
from datasets import load_dataset
ds = load_dataset("FrostyJay7813/aif-agent-specifications")
```