Development Contract Process
Find the repo's contract policy file for paths, record locations, lanes, and
validation profiles. It owns contract mechanics within the host's instruction
hierarchy; it does not override higher-authority task constraints. Inspect a
policy/documentation mismatch before deciding which artifact needs correction.
This is a process overlay, not a thinking aid. Pair it with the repo's implementation skill for the touched code and any repo-local contract overlay that names the actual policy path and helper commands.
Activity and authority
- Review or planning: inspect policy, records, and enforcement; return findings
or a proposed contract without modifying files. Write a record only when the
requested output or an authorized implementation workflow requires it.
- Implementation: maintain the required record as part of the already-authorized
change. Do not ask again for ordinary record updates covered by that scope.
- A policy file or declared command does not authorize installation, publication,
or other consequential side effects. Inspect commands before running them;
executable policy files are code, not inert configuration.
Policy discovery
If the repo-local overlay does not name a policy file, search for likely
contract artifacts before guessing: change-contract-policy, feature_records,
check-change-contracts, lifecycle helper scripts, and AGENTS/README language
about substantive changes or verifier evidence. Once found, treat the policy
file as source of truth.
Use this skill when
- work may trigger a tracked change contract
- a repo requires a plan update for substantive changes
- a checker validates plan structure, ownership, or evidence
- you need to choose the smallest proving validation set for a substantive change
Core workflow
- Read the touched files and the repo contract policy file before editing.
- Decide whether the change is substantive using policy data rather than guesswork.
- For authorized implementation, create or update a non-template record when
policy classifies the change as substantive. During review, assess whether
the existing record satisfies that obligation without repairing it.
- Keep the plan aligned with the repo's enforced template, required evidence lanes, and lifecycle-directory rules.
- Keep implementation ownership and verification ownership explicit.
- Record verifier commands, observed results, and contract mismatches concretely.
- Run the smallest validation profile that proves the change, then extend only when the surface justifies it.
- Before closing implementation, run the checker and required profile checks.
In read-only work, run only safe check modes; report unrun checks explicitly.
Decision rules
- Treat the policy file as the single source of truth for substantive-path detection, plan location, section requirements, lane names, and default validation commands.
- If the repo ships a lifecycle transition helper, prefer it over manual file moves so path and lifecycle state stay synchronized.
- Do not duplicate repo literals across the skill, docs, checker, and template when policy can express them once.
- Keep the schema stable by default; use policy for repo-level variation and only change the schema when portability or correctness requires it.
- Prefer small repo overlays over forking the core skill.
- If a repo needs extra instructions that policy cannot express, add them in a thin overlay skill rather than bloating the core.
- Prefer updating an existing active record over creating scattered new notes for the same change.
- Keep the operator path lightweight: policy decides what is substantive, and the checker enforces the contract.
Output expectations
For implementation, leave behind:
- code or docs aligned with repo guidance and policy
- a plan update when the change is substantive
- explicit verifier evidence
- a concise report of what was validated and what could not be validated
For review or planning, return the assessment or requested draft, its evidence,
and unresolved conflicts. Open findings do not make a completed review unfinished.
References
- Policy reference for policy fields or adoption
- Operator quickstart for a compact operator handoff
- Overlay template when authoring a local overlay
- Release runner example only when
adapting an explicitly requested CMake release runner; it is not a command
implemented by every target repository
1---2name: development-contract-process3description: Portable workflow for repos that require tracked change contracts, verifier evidence, and smallest-proof validation. Use when a repo has a contract policy file or enforced feature-plan checker.4---56# Development Contract Process78Find the repo's contract policy file for paths, record locations, lanes, and9validation profiles. It owns contract mechanics within the host's instruction10hierarchy; it does not override higher-authority task constraints. Inspect a11policy/documentation mismatch before deciding which artifact needs correction.1213This is a process overlay, not a thinking aid. Pair it with the repo's implementation skill for the touched code and any repo-local contract overlay that names the actual policy path and helper commands.1415## Activity and authority1617- Review or planning: inspect policy, records, and enforcement; return findings18 or a proposed contract without modifying files. Write a record only when the19 requested output or an authorized implementation workflow requires it.20- Implementation: maintain the required record as part of the already-authorized21 change. Do not ask again for ordinary record updates covered by that scope.22- A policy file or declared command does not authorize installation, publication,23 or other consequential side effects. Inspect commands before running them;24 executable policy files are code, not inert configuration.2526## Policy discovery2728If the repo-local overlay does not name a policy file, search for likely29contract artifacts before guessing: `change-contract-policy`, `feature_records`,30`check-change-contracts`, lifecycle helper scripts, and AGENTS/README language31about substantive changes or verifier evidence. Once found, treat the policy32file as source of truth.3334## Use this skill when3536- work may trigger a tracked change contract37- a repo requires a plan update for substantive changes38- a checker validates plan structure, ownership, or evidence39- you need to choose the smallest proving validation set for a substantive change4041## Core workflow42431. Read the touched files and the repo contract policy file before editing.442. Decide whether the change is substantive using policy data rather than guesswork.453. For authorized implementation, create or update a non-template record when46 policy classifies the change as substantive. During review, assess whether47 the existing record satisfies that obligation without repairing it.484. Keep the plan aligned with the repo's enforced template, required evidence lanes, and lifecycle-directory rules.495. Keep implementation ownership and verification ownership explicit.506. Record verifier commands, observed results, and contract mismatches concretely.517. Run the smallest validation profile that proves the change, then extend only when the surface justifies it.528. Before closing implementation, run the checker and required profile checks.53 In read-only work, run only safe check modes; report unrun checks explicitly.5455## Decision rules5657- Treat the policy file as the single source of truth for substantive-path detection, plan location, section requirements, lane names, and default validation commands.58- If the repo ships a lifecycle transition helper, prefer it over manual file moves so path and lifecycle state stay synchronized.59- Do not duplicate repo literals across the skill, docs, checker, and template when policy can express them once.60- Keep the schema stable by default; use policy for repo-level variation and only change the schema when portability or correctness requires it.61- Prefer small repo overlays over forking the core skill.62- If a repo needs extra instructions that policy cannot express, add them in a thin overlay skill rather than bloating the core.63- Prefer updating an existing active record over creating scattered new notes for the same change.64- Keep the operator path lightweight: policy decides what is substantive, and the checker enforces the contract.6566## Output expectations6768For implementation, leave behind:6970- code or docs aligned with repo guidance and policy71- a plan update when the change is substantive72- explicit verifier evidence73- a concise report of what was validated and what could not be validated7475For review or planning, return the assessment or requested draft, its evidence,76and unresolved conflicts. Open findings do not make a completed review unfinished.7778## References7980- [Policy reference](references/policy-reference.md) for policy fields or adoption81- [Operator quickstart](references/operator-quickstart.md) for a compact operator handoff82- [Overlay template](references/repo-overlay-template.md) when authoring a local overlay83- [Release runner example](references/run-release-checklist.example.sh) only when84 adapting an explicitly requested CMake release runner; it is not a command85 implemented by every target repository