Pydantic Contracts Skill
Skill: Pydantic Contracts (process boundary) Published by microsoft in AKS-Lab-GitHubCopilot.
What is Pydantic Contracts Skill?
Skill: Pydantic Contracts (process boundary) Published by microsoft in AKS-Lab-GitHubCopilot. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use Pydantic Contracts Skill
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/AKS-Lab-GitHubCopilot
- Skill file: .github/skills/pydantic-contracts/SKILL.md
What it does
Skill: Pydantic Contracts (process boundary)
Skill instructions
Skill: Pydantic Contracts (process boundary) Any data crossing HTTP, A2A, MCP, or a queue is a frozen Pydantic v2 model. A2A envelope (in src/shared/server.py) python from pydantic import BaseModel, ConfigDict, Field class InvokeRequest(BaseModel): modelconfig = ConfigDict(frozen=True, extra="forbid") runid: str = Field(minlength=1, maxlength=64) goal: str = Field(minlength=1, maxlength=4000) context: dict[str, str] = Field(defaultfactory=dict) class InvokeResponse(BaseModel): modelconfig = ConfigDict(frozen=True) runid: str output: str toolcalls: list[str] = Field(defaultfactory=list) Orchestrator workflow contracts python class Goal(BaseModel): modelconfig = ConfigDict(frozen=True) goal: str sku: str | None = None storeid: str | None = None class Plan(BaseModel): modelconfig = ConfigDict(frozen=True) stockview: str priceview: str poview: str shippingview: str summary: str Per-agent tool inputs Each agent's tools.py defines its own pair. Examples: python class StockQuery(BaseModel): m
Explore related resources
Frequently asked questions
What is Pydantic Contracts?
Pydantic Contracts is a open-source AI agent skill with Copy skill directory. Skill: Pydantic Contracts (process boundary)
Who is Pydantic Contracts best for?
Pydantic Contracts is best for reusing agent instructions, scripts, and references, data analysis workflows.
How do I install Pydantic Contracts?
Install or run Pydantic Contracts using Copy skill directory. Check Pydantic Contracts for the latest setup command.
Is Pydantic Contracts actively maintained?
Pydantic Contracts may need a closer maintenance check before production use.
Auto-fetched from GitHub.