No project description provided
Project description
🧾 Agentspecs
YAML-based specifications for AI agents, MCP servers, skills and more...
Overview
This repository is the source of truth for declarative specs consumed by Agent Runtimes code generation.
The YAML files in agentspecs/agentspecs are compiled into Python and TypeScript catalogs used by runtime and UI layers.
Current Repository Structure
agentspecs/
├── agents/ # Agent specs
├── teams/ # Team orchestration specs
├── mcp-servers/ # MCP server specs
├── skills/ # Skill specs
├── tools/ # Runtime tool specs
├── envvars/ # Environment variable specs
├── models/ # Model specs
├── memory/ # Memory backend specs
├── guardrails/ # Guardrail policy specs
├── evals/ # Evaluation suite specs
├── triggers/ # Trigger specs
├── outputs/ # Output format specs
└── notifications/ # Notification channel specs
Current YAML file counts:
- Agents: 26
- Teams: 9
- MCP servers: 12
- Skills: 4
- Tools: 3
- Env vars: 10
- Models: 20
- Memory backends: 4
- Guardrails: 6
- Evals: 8
- Triggers: 3
- Outputs: 8
- Notifications: 4
Versioning
All specs are versioned.
Required Version Field
Each spec includes:
id: logical identifierversion: semantic version string (currently0.0.1for all shipped specs)
Example:
id: data-acquisition
version: 0.0.1
name: Data Acquisition Agent
Versioned References
Cross-spec references should use id:version format.
Examples:
mcp_servers:
- tavily:0.0.1
skills:
- github:0.0.1
envvars:
- TAVILY_API_KEY:0.0.1
agent_spec_id: comprehensive-sales-analytics:0.0.1
Runtime Catalog Aliases
Generated catalogs are keyed by unversioned id only (e.g. data-acquisition).
The get_* / get*Spec accessor functions accept both bare ids and versioned refs (data-acquisition:0.0.1), stripping the version suffix automatically.
Iterating catalog values (.values() / Object.values()) returns each spec exactly once — no deduplication is needed.
Default Version During Codegen
Code generation enforces a default spec version of 0.0.1 if omitted (scripts/codegen/versioning.py).
In practice, specs in this repository should always declare version explicitly.
Spec Types
Agents (agentspecs/agents)
Defines agent behavior and runtime defaults.
Common fields:
id,version,name,description,enabledmodel,sandbox_variant,memorymcp_servers,skills,toolsenvironment_nameicon,emoji,colorsuggestions,welcome_message,welcome_notebook,welcome_documentsystem_prompt,system_prompt_codemode_addons- Optional workflow fields such as
goal,trigger,guardrails,evals,output,notifications,advanced
Teams (agentspecs/teams)
Defines multi-agent orchestration over an underlying agent spec.
Common fields:
id,version,name,description,enabledagent_spec_id(versioned)orchestration_protocol,execution_mode,supervisoragents(team members),reaction_rules,health_monitoringnotifications,output
MCP Servers (agentspecs/mcp-servers)
Defines MCP integrations and process startup configuration.
Common fields:
id,version,name,descriptioncommand,args,transportenv,envvars(usually versioned)tags,icon,emoji
Skills (agentspecs/skills)
Defines reusable skill modules.
Common fields:
id,version,name,description,moduleenvvars,optional_env_vars,dependenciestags,icon,emoji
Tools (agentspecs/tools)
Defines runtime tool metadata and implementation binding.
Common fields:
id,version,name,description,enabledapprovalruntime.language,runtime.package,runtime.methodtags,icon,emoji
Env Vars (agentspecs/envvars)
Defines environment variable metadata.
Common fields:
id,version,name,descriptionregistrationUrl,tags,icon,emoji
Models (agentspecs/models)
Defines model options available to specs.
Common fields:
id,version,name,description,providerdefaultrequired_env_vars
Other Catalogs
memory: memory backend optionsguardrails: security and policy profilesevals: evaluation suitestriggers: reusable trigger templatesoutputs: output format templates/capabilitiesnotifications: notification channel templates
Generation and Consumption
From Agent Runtimes, generated catalogs are produced via:
make specs
Generation scripts are under scripts/codegen, and outputs are written to:
- Python: agent_runtimes/specs
- TypeScript: src/specs
Adding or Updating Specs
- Add or edit YAML in the relevant folder under agentspecs/agentspecs.
- Always set
idandversion. - Use versioned cross-references (
name:version) in fields that reference other specs. - Keep IDs stable; bump
versionwhen introducing breaking changes. - Regenerate catalogs in Agent Runtimes (
make specs) and validate consumers.
Best Practices
- Use kebab-case IDs for most specs (
analyze-support-tickets). - Use UPPER_SNAKE_CASE for env var IDs (
TAVILY_API_KEY). - Keep descriptions concise and action-oriented.
- Prefer explicit versioned references, even when alias lookup works.
- Maintain backward compatibility by preserving old versions when possible.
License
Copyright (c) 2025-2026 Datalayer, Inc.
Distributed under the terms of the Modified BSD License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentspecs-0.0.3-py3-none-any.whl.
File metadata
- Download URL: agentspecs-0.0.3-py3-none-any.whl
- Upload date:
- Size: 130.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8dd1d61628214428e79aa0afc981e76396a79a849ace0c96ea8c216b7600424
|
|
| MD5 |
905460f74f40f2d84f231ddd5f5c4c6f
|
|
| BLAKE2b-256 |
58f3dc71d57a0b44887b30a43c457e66d7124f5264165a8170b28978149f80dc
|