TA
talos-sdk-parity
Use when a Talos contract, protocol primitive, frame shape, digest rule, capability field, or validation behavior must be propagated across one or more SDKs. Preserve contract ownership, avoid local reimplementation drift, update language-specific conformance tests, and call out which SDKs were inte
Install
mkdir -p .claude/skills/talos-sdk-parity && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14184" && unzip -o skill.zip -d .claude/skills/talos-sdk-parity && rm skill.zipInstalls to .claude/skills/talos-sdk-parity
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when a Talos contract, protocol primitive, frame shape, digest rule, capability field, or validation behavior must be propagated across one or more SDKs. Preserve contract ownership, avoid local reimplementation drift, update language-specific conformance tests, and call out which SDKs were intentionally left unchanged.325 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
About this skill
Talos SDK Parity
Use this skill when a change must remain consistent across multiple language SDKs.
Load only what the task needs:
references/sdk-map.md../planning/program-anchor-index.md- The closest SDK
AGENTS.mdorCLAUDE.md
Workflow:
- Identify the owning contract, vector, or protocol rule first.
- Map impacted SDKs before editing. Python and TypeScript are the most likely first-order consumers, but Go, Java, and Rust may also need parity updates.
- Prefer consuming published contract artifacts or shared generated outputs over re-implementing canonical logic in each SDK.
- For each touched SDK, update the smallest test or conformance path that proves parity.
- State explicitly which SDKs were updated, which were reviewed only, and which still need follow-up.
Guardrails:
- Do not silently fork behavior between SDKs on hashed, signed, or validated payloads.
- Do not bury a protocol change inside one SDK without tracing the others.
- Do not claim multi-SDK parity without naming the validated languages.
Done checklist:
- Source-of-truth artifact identified.
- Impacted SDKs traced.
- Per-language validation updated or justified.
- Final summary names parity status by SDK.