File size: 478 Bytes
542f438
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
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"]