CoolFace
Modelpublic

FrostyJay7813/aif-agent-specifications

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes
Model Card

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")