Rohan03's picture
Sprint 7: skills package — SkillCard schema, runtime, CI, export
542f438 verified
raw
history blame contribute delete
478 Bytes
"""
Purpose Agent Skills — Persistent, versioned, testable skill artifacts.
A skill is a learned procedure that:
- Has a trigger (when to apply)
- Has a procedure (what to do)
- Has tests (how to verify it works)
- Evolves over time (versions, mutations, rollback)
- Is immune-scanned before activation
"""
from purpose_agent.skills.schema import SkillCard, SkillGenome
from purpose_agent.skills.ci import SkillCI
__all__ = ["SkillCard", "SkillGenome", "SkillCI"]