suede-parity-contract
О программе
Этот навык создает тестовый контракт на основе эталонного источника (например, веб-сайта) и проверяет соответствие других интерфейсов (таких как приложения или документация), автоматически выявляя несоответствия. Используйте его для обеспечения единообразия общих фактов, правил или значений на разных платформах, чтобы предотвратить противоречия для пользователей. Он предназначен для обнаружения расхождений, а не для определения правильной версии.
Быстрая установка
Claude Code
Рекомендуетсяnpx skills add JasonColapietro/suede-creator-skills -a claude-code/plugin add https://github.com/JasonColapietro/suede-creator-skillsgit clone https://github.com/JasonColapietro/suede-creator-skills.git ~/.claude/skills/suede-parity-contractСкопируйте и вставьте эту команду в Claude Code для установки этого навыка
Документация
Suede Parity Contract
Iron Law: generate the contract from the reference surface's live constants.
A contract you transcribe is a second copy, and second copies drift.
A contract you generate cannot disagree with the code it came from.
Silent drift is the failure this prevents. Nothing crashes when a threshold is copied wrong into a second language. The two surfaces simply start answering the same question differently, and a user finds out before you do.
Step 1 — Name one reference surface
Exactly one surface is the reference. Every other surface is a follower that asserts against it. Two references is two sources of truth with extra steps.
Pick the surface where the domain is most complete and most exercised, and write
that choice into the contract's reference field so nobody re-litigates it.
Step 2 — Build the contract by importing, never retyping
The builder imports the constants from the modules the application actually runs on and serializes them. Retyping a value into the builder reintroduces exactly the copy this skill exists to delete.
When a needed value is private, export it rather than duplicating it. That is a one-line change and it keeps the count of definitions at one.
Serialize with stable key order and a trailing newline, because followers vendor the file verbatim and a reformat shows up as a spurious diff.
Step 3 — Make staleness fail on the reference side
One test rebuilds the contract in memory and compares it to the committed file. Without it the JSON is a snapshot someone took once.
Give it a write mode so regeneration is one command, and put that command in the
contract's README and in the file's own note field:
CONTRACT_WRITE=1 <test runner> <contract test>
Compare parsed objects first so the failure names the key that moved, then compare raw bytes so a reformat is caught too.
Step 4 — Vendor byte-identical to each follower
Followers keep a copy at the same relative path. Prove it matches rather than assuming:
shasum -a 256 <reference>/contracts/<name>.json <follower>/contracts/<name>.json
Two identical hashes, or the copy is stale. Record the re-sync command in the follower's README so the next person does not invent one.
Step 5 — Assert through public behavior, not private internals
A follower test that reimplements the reference formula proves only that you can write the same bug twice.
Assert what a user experiences. For a ladder, feed the contract's rung values to the public accessor and check the level it returns. For a threshold, check the boundary and one step below it — a threshold asserted only from above still passes after it moves down.
Start the follower suite with a test that the contract loaded and is non-empty. A file that fails to load makes every assertion after it vacuously true.
Step 6 — Pin the divergences you already have
You will find existing differences. The contract's job on day one is to make them visible and hold them still, not to erase them.
Record each under knownDivergences with the value on each surface and a
reason that survives you leaving. Then add a guard asserting the divergence
list is exactly the expected set, so an entry added elsewhere is a failure
rather than a silence.
Each pinned divergence gets two assertions on the follower: that it still differs by the recorded amount, and that it does not equal the reference. The second one fires when someone closes the divergence and forgets the contract.
Halt format — a divergence found mid-build
Changing a shipped constant changes behavior for real users, and which surface is right is a product decision. At the moment you find one, stop and report:
Divergence: <key>. <reference surface> says <a>, <follower> says <b>.
Both shipped. <one line on what a user feels>.
1. Move <follower> to <a>
2. Move <reference> to <b>
3. Record it and decide later
Then wait. Do not pick for the user, and do not change either side as a side effect of writing a contract.
Step 7 — Prove non-vacuity on both sides, in this run
A parity test that cannot fail is worse than none, because it reads as evidence.
Reference side: change one constant, watch the staleness test fail naming that key, restore it, watch it pass. Follower side: edit one value in the vendored copy, watch exactly the matching assertion fail, restore.
Paste both the failing and the passing output. "The tests pass" is not proof that they can fail.
Step 8 — Closing a divergence is a two-repo operation
Both halves land or neither does:
- Change the constant on the surface that is moving.
- Delete the
knownDivergencesentry and regenerate the contract. - Re-sync the vendored copy to every follower.
- Replace that follower's pinning test with a plain equality assertion.
- Update the divergence-list guard to the new expected set.
Half of this leaves a red suite that names the missing half, which is the design working.
Versioning
Bump version only when the shape changes: a key added, removed, or
renamed. A changed value is never a version bump. A value is the thing the
contract exists to surface, and a follower should meet it as a failing
assertion rather than as a version it is allowed to skip.
Done means
Every line proven by a command in this run:
- The staleness test fails on a changed reference constant and names the key.
- Every follower's vendored copy hashes identical to the reference's.
- Every follower suite passes, and its contract-load test proves the file is really there.
- Both non-vacuity demonstrations from Step 7 have pasted output.
- The divergence-list guard names the same set the follower tests pin.
Boundaries
- Do not decide which surface's value is correct. Record, report, and let the user choose.
- Do not change a shipped constant as a side effect of writing a contract.
- Do not hand-edit a generated contract or a vendored copy. Edit the source constant and regenerate.
- Do not add a value to the contract that no follower asserts. An unasserted key reads as coverage and provides none.
- Do not put credentials, hostnames, or per-environment configuration in a parity contract. It carries domain constants that must agree everywhere.
- Do not let a follower's contract test reimplement the reference's formula. Assert the observable result.
Routing
- Need branch, worktree, or stale-mirror handling for the two repos this touches -> a private Suede Labs companion, not in this pack: suede-git-hygiene.
- Need the resulting tests wired as required checks or merge gates -> use
suede-ci-gate. - Need findings-only review of the contract diff -> use
suede-code-review. - Need findings plus an A-F ship verdict -> use
suede-code. - Need to root-cause why two surfaces behave differently when the constants already match -> a private Suede Labs companion, not in this pack: suede-debug.
- Need to plan a multi-file rollout across surfaces -> use
suede-graph-flo-xr, then return here for the contract itself. - From
suede-code-review: route "these two surfaces hold the same constant twice" findings back tosuede-parity-contract.
GitHub репозиторий
Часто задаваемые вопросы
Что такое Skill suede-parity-contract?
suede-parity-contract — это Claude Skill от JasonColapietro. Skills объединяют инструкции и ресурсы, которые Claude загружает по мере необходимости, чтобы выполнять задачи, связанные с suede-parity-contract, без дополнительных запросов.
Как установить suede-parity-contract?
Используйте команды установки на этой странице: добавьте suede-parity-contract в Claude Code как плагин или клонируйте репозиторий в каталог skills, затем перезапустите Claude, чтобы загрузить Skill.
К какой категории относится suede-parity-contract?
suede-parity-contract относится к категории Мета.
Можно ли использовать suede-parity-contract бесплатно?
Да. suede-parity-contract размещён на AIMCP и доступен для бесплатной установки.
Похожие навыки
Этот навык предоставляет проверенную в продакшене настройку для Content Collections — TypeScript-ориентированного инструмента, который преобразует файлы Markdown/MDX в типобезопасные коллекции данных с валидацией Zod. Используйте его при создании блогов, сайтов документации или контентных приложений на Vite + React для обеспечения типобезопасности и автоматической проверки содержимого. Он охватывает всё: от настройки плагина Vite и компиляции MDX до оптимизации развертывания и валидации схем.
Этот навык позволяет разработчикам создавать приложения на платформе прогнозных рынков Polymarket, включая интеграцию с API для торговли и получения рыночных данных. Он также обеспечивает потоковую передачу данных в реальном времени через WebSocket для отслеживания текущих сделок и рыночной активности. Используйте его для реализации торговых стратегий или создания инструментов, обрабатывающих обновления рынка в реальном времени.
Этот навык помогает разработчикам создавать плагины OpenCode, которые подключаются к более чем 25 типам событий, таким как команды, файлы и операции LSP. Он предоставляет структуру плагина, спецификации API событий и шаблоны реализации для модулей на JavaScript/TypeScript. Используйте его, когда вам нужно перехватывать, отслеживать или расширять жизненный цикл ассистента OpenCode AI с помощью пользовательской событийно-ориентированной логики.
SGLang — это высокопроизводительный фреймворк для обслуживания больших языковых моделей (LLM), специализирующийся на быстрой структурированной генерации JSON, regex и рабочих процессов агентов с использованием кэширования префиксов RadixAttention. Он обеспечивает значительно более высокую скорость вывода, особенно для задач с повторяющимися префиксами, что делает его идеальным для сложных структурированных результатов и многократных диалогов. Выбирайте SGLang вместо альтернатив, таких как vLLM, когда вам требуется ограниченное декодирование или вы создаете приложения с интенсивным совместным использованием префиксов.
