This runbook defines the required operator workflow for skill source identity changes.Documentation Index
Fetch the complete documentation index at: https://docs.rkat.ai/llms.txt
Use this file to discover all available pages before exploring further.
Canonical Identity
- Canonical identity is
SkillKey { source_uuid, skill_name }. source_uuidis immutable unless changed through lineage events.- Runtime execution paths consume canonical identity only.
Required Source Record Fields
Every source identity record must include:source_uuiddisplay_nametransport_kind- locator
fingerprint status(active,disabled, orretired)
Governance Checks
Startup rejects:- UUID collisions with conflicting fingerprints unless lineage explicitly permits.
- UUID mutation without lineage.
- split/merge/rotate lineage without complete per-skill remap coverage.
Companion Skill Governance
Every nontrivial Meerkat-owned agent-facing tool family should provide:- concise tool descriptions and schemas
- human docs for concepts, guides, reference, and examples where appropriate
- an embedded companion skill gated by
requires_capabilities
Migration Procedures
Rotate (one source to one source)
- Add lineage event
rotatefrom old UUID to new UUID. - Add remap rows for all affected skills (
old_uuid/skill->new_uuid/skill). - Deploy config and verify canonicalization tests pass.
Rename or relocate (same logical source, new UUID/path binding)
- Add lineage event
rename_or_relocatefrom old UUID to new UUID. - Add remap rows for all affected skills.
- Verify canonicalization still resolves the same semantic skills under the new source identity.
Split (one source to many)
- Add lineage event
splitwith all target UUIDs. - Add explicit per-skill remaps from old UUID to exactly one target UUID per skill.
- Reject deployment if any source skill lacks remap coverage.
Merge (many sources to one)
- Add lineage event
mergewith all origin UUIDs and target UUID. - Add explicit per-skill remaps from each origin UUID skill to target UUID skill.
- Reject deployment if any origin skill lacks remap coverage.
Incident Recovery
If startup fails with lineage/remap validation:- Freeze rollout and keep prior registry active.
- Fix missing remaps or incorrect lineage edge.
- Re-run identity migration tests:
- Roll forward only after tests pass and resolver-boundary canonicalization is verified.
