record-architecture-decisions

A preserved method from https://gist.github.com/ericclemmons/96cc6c774e2062e6660f1acb97506940 at 79756870d126, path SKILL.md, MIT. 28 of 82 source lines differ (34%), every difference claimed by an entry of the ledger with its reason. Entries: baseline-copies-2026-09-11, descriptions-practice-the-catalog-2026-09-11, fold-2026-09-11, fold-walk-2026-09-11, ready-copies-2026-09-12, vocabulary-owner-2026-09-12.

  • harness 1
  • lifecycle 3
  • location 2
  • scope 2

Files

Every difference, as it stands

SKILL.md

---
---
harnesschangeddescriptions-practice-the-catalog-2026-09-11

greenline renders its own frontmatter: quoted name and description; the description rewritten without em dashes under the widened rule

name: record-architecture-decisions
name: "record-architecture-decisions"
description: Record small Architecture Decision Records (ADRs) for durable technical choices in this monorepo. Use when a change chooses among meaningful alternatives, moves from an ideal approach to a practical one because of discovered constraints, establishes a cross-component contract or convention, accepts a consequential trade-off, or supersedes an earlier decision. Also use before completing any non-trivial implementation thread or merge request to decide whether its work produced an ADR-worthy decision.
description: "Record small Architecture Decision Records (ADRs) for durable technical choices. Use when a change chooses among meaningful alternatives, abandons an ideal approach over a discovered constraint, establishes a cross-component contract or convention, accepts a consequential trade-off, or supersedes an earlier decision. Also use it before completing any non-trivial ticket, to evaluate whether the work produced an ADR-worthy decision."
---
---
 
 
# Record Architecture Decisions
# Record Architecture Decisions
 
 
scopechangedvocabulary-owner-2026-09-12

one opening paragraph in the skill's voice after the title: the decision harvest at a ticket's close, named by implement and verify-this and also fired on its own by upstream's triggers; it writes in the repository's existing decision home; shaping rulings belong to the initiative's decisions.md and domain words to domain-modeling; it never reopens the decision it records, and the harvest closes the ticket for the request owner to complete (carried from fold-2026-09-11; the word operator became owner where the copy names the workspace's person, and request owner became request holder (the internal refactor's step 1, ruling 10, 2026-09-12))

This skill is the decision harvest at a ticket's close: implement and verify-this name it when a landed change may have settled something durable, and it also fires on its own when a change chooses among meaningful alternatives, abandons an approach over a discovered constraint, establishes a cross-component contract, accepts a consequential trade-off or supersedes an earlier decision. It writes the record in the repository's existing decision home. The shaping rulings that scoped an initiative belong in that initiative's `decisions.md`, and the words of the domain belong to domain-modeling; this skill never reopens the decision it records, and the harvest closes the ticket for the request holder to complete.
 
Capture why a decision made sense with the constraints and evidence available at the time. Keep the record useful after those constraints change.
Capture why a decision made sense with the constraints and evidence available at the time. Keep the record useful after those constraints change.
 
 
## Evaluate the change
## Evaluate the change
 
 
lifecyclechangedfold-2026-09-11

the evaluation happens at the ticket's close over its base_commit..result_commit diff and its outcome is stated in the request owner's handoff; step 3 says a shaping ruling that scoped the work goes to the initiative's decisions.md while an ADR holds the durable technical reasoning the work itself surfaced (a constraint discovered, an approach abandoned); upstream's criteria for writing or skipping an ADR are unchanged

1. Review the conversation, implementation attempts, test results, and diff for durable decisions.
1. At the ticket's close, review the conversation, implementation attempts, test results, and the diff of its `base_commit..result_commit` for durable decisions.
2. Write an ADR when the work:
2. Write an ADR when the work:
- chose among meaningful alternatives;
- chose among meaningful alternatives;
- abandoned a preferred design because evidence exposed a constraint;
- abandoned a preferred design because evidence exposed a constraint;
- established a convention, dependency, interface, data model, deployment pattern, or operational policy;
- established a convention, dependency, interface, data model, deployment pattern, or operational policy;
- accepted a trade-off that a future maintainer may otherwise undo without understanding it; or
- accepted a trade-off that a future maintainer may otherwise undo without understanding it; or
- changes a decision documented by an existing ADR.
- changes a decision documented by an existing ADR.
lifecyclechangedvocabulary-owner-2026-09-12

upstream's merge request is the reviewed ticket's change: the ADR lands with it and a lasting choice is linked from the decisions book .greenline/DECISIONS.md rather than copied there (WORK.md's repository-memory rule), and acceptance is that change landing; the Handoff section names the harvest and the decision home consumed, the ADR in that home linked from the decisions book (docs/adr/YYYY-MM-DD-short-title.md only when seeded), and no next stage (carried from fold-2026-09-11; the word operator became owner where the copy names the workspace's person, and request owner became request holder (the internal refactor's step 1, ruling 10, 2026-09-12))

3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR.
3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR. A deferral is not a decision: a choice put off is a line inside the decision it defers from, never an ADR or a decisions-book entry of its own. A shaping ruling that scoped the work belongs in the initiative's `decisions.md`, not in an ADR; an ADR holds the durable technical reasoning the work itself surfaced, such as a constraint discovered or an approach abandoned.
4. If no ADR is needed, state that explicitly in the final handoff.
4. If no ADR is needed, state that explicitly in the request holder's handoff.
 
 
## Write the ADR
## Write the ADR
 
 
locationchangedfold-walk-2026-09-11

step 1 looks for the repository's existing decision home, a decisions document or an ADR directory of its own, and writes there in that home's format, seeding docs/adr/ from this skill's template only when the repository has none (docs/ledger/evidence/qa-s6-block-fixes/artifact-discipline.md, the home rule)

1. Read `docs/adr/README.md` and `docs/adr/template.md` completely.
1. Find the repository's existing decision home: a decisions document, or an ADR directory of its own. When one exists, write there in that home's format. Only when the repository keeps no decisions anywhere, seed `docs/adr/` on first use from this skill's `template.md` and `README.md` support files, then read `docs/adr/README.md` and `docs/adr/template.md` completely.
2. Create `docs/adr/YYYY-MM-DD-short-title.md`. Use a specific, durable title and avoid sequential numbers that conflict across concurrent branches.
2. In `docs/adr/`, create `docs/adr/YYYY-MM-DD-short-title.md`; in another home, add the entry in that home's own form. Use a specific, durable title and avoid sequential numbers that conflict across concurrent branches. The dated naming is repository-wide and supersedes domain-modeling's `ADR-FORMAT.md` where they disagree.
3. Preserve the facts from the work:
3. Preserve the facts from the work:
- the need or problem;
- the need or problem;
- the constraints encountered;
- the constraints encountered;
6 unchanged lines
- concrete evidence such as failed approaches, validation results, limits, or links;
- concrete evidence such as failed approaches, validation results, limits, or links;
- the chosen approach and meaningful rejected alternatives;
- the chosen approach and meaningful rejected alternatives;
- positive and negative consequences; and
- positive and negative consequences; and
- conditions under which the decision should be reconsidered.
- conditions under which the decision should be reconsidered.
4. Keep the ADR terse and scannable:
4. Keep the ADR terse and scannable:
- Default to one or two concise bullets under each template heading.
- Default to one or two concise bullets under each template heading.
- Use paragraphs only when bullets would obscure necessary reasoning.
- Use paragraphs only when bullets would obscure necessary reasoning.
- Combine closely related alternatives and consequences instead of cataloging every detail.
- Combine closely related alternatives and consequences instead of cataloging every detail.
- Preserve the decision, evidence, trade-off, and reconsideration trigger without narrating the implementation.
- Preserve the decision, evidence, trade-off, and reconsideration trigger without narrating the implementation.
lifecyclechangedfold-2026-09-11

upstream's merge request is the reviewed ticket's change: the ADR lands with it and a lasting choice is linked from the decisions book .greenline/DECISIONS.md rather than copied there (WORK.md's repository-memory rule), and acceptance is that change landing; the Handoff section names the harvest and the decision home consumed, the ADR in that home linked from the decisions book (docs/adr/YYYY-MM-DD-short-title.md only when seeded), and no next stage

5. Include the ADR in the same merge request as the decision whenever possible.
5. Include the ADR in the same ticket's change as the decision whenever possible, and link a lasting choice from the decisions book, `.greenline/DECISIONS.md`, rather than copying it there.
 
 
locationchangedfold-2026-09-11

greenline's paragraph on a decision that spans modules (Ousterhout, 2021) moved from the prelude to the end of Write the ADR: the record stays a dated file in the decision home and the extension point carries the pointer and the in-step checklist; unchanged in substance

A decision that spans modules is recorded where a developer must stand to extend it: the ADR lives at, or is pointed at from, the extension point, and it carries an explicit checklist of the other places that must change in step, because that is the moment the reader is already committed to the change (Ousterhout, 2021). The ADR is still a dated file in the decision home; what stands at the extension point is the record's pointer and the in-step checklist the extending reader must act on. Duplicating the explanation into every dependent site drifts apart, and parking it in one dependent site hides it; where no obvious central location exists, the decision home is the fallback and the extension point gains the pointer.
 
## Preserve history
## Preserve history
 
 
- Do not rewrite a landed ADR to make the old decision appear current.
- Do not rewrite a landed ADR to make the old decision appear current.
- Add a new ADR when a decision changes, and link the earlier record under `Supersedes`.
- Add a new ADR when a decision changes, and link the earlier record under `Supersedes`.
scopechangedvocabulary-owner-2026-09-12

step 3 says a choice put off is a line inside the decision it defers from, never an ADR or a decisions-book entry of its own, so the three readings the S7 series produced (a new entry, nothing, a line inside D6) collapse to one; the routine-maintenance skip list is unchanged (carried from ready-copies-2026-09-12; the word operator became owner where the copy names the workspace's person, and request owner became request holder (the internal refactor's step 1, ruling 10, 2026-09-12))

- Do not add approval or status metadata. Landing through merge request review records acceptance; an unmerged ADR remains a proposal in its branch.
- Do not add approval or status metadata. Landing with the reviewed ticket's change records acceptance; an unmerged ADR remains a proposal in its branch.
 
## Handoff
 
Consumes: the landed change at a ticket's close (the decision harvest) and the repository's existing decision home
Produces: an ADR in that home, linked from the decisions book .greenline/DECISIONS.md; docs/adr/YYYY-MM-DD-short-title.md only when the repository keeps no decisions elsewhere and docs/adr/ is seeded from this skill's template and README on first use
Next: none; the harvest closes the ticket and the request holder completes it

The timeline

Each entry that touched this method, with the differences it claimed as they stood at its commit, read from the repository's history.

2026-09-11 baseline-copies-2026-09-11

the cutover to an edited copy (ADR 0039): the composed output written as the copy, every difference from upstream claimed with the reason of the overlay that produced it

SKILL.md

harnesschangedbaseline-copies-2026-09-11

greenline renders its own frontmatter: quoted name and description, the description from the manifest override where one existed, no upstream activation flag

name: record-architecture-decisions
name: "record-architecture-decisions"
description: Record small Architecture Decision Records (ADRs) for durable technical choices in this monorepo. Use when a change chooses among meaningful alternatives, moves from an ideal approach to a practical one because of discovered constraints, establishes a cross-component contract or convention, accepts a consequential trade-off, or supersedes an earlier decision. Also use before completing any non-trivial implementation thread or merge request to decide whether its work produced an ADR-worthy decision.
description: "Record small Architecture Decision Records (ADRs) for durable technical choices. Use when a change chooses among meaningful alternatives, abandons an ideal approach over a discovered constraint, establishes a cross-component contract or convention, accepts a consequential trade-off, or supersedes an earlier decision and before completing any non-trivial ticket, to evaluate whether the work produced an ADR-worthy decision."
lifecyclechangedbaseline-copies-2026-09-11

greenline prelude, to fold: the decision harvest at completion; repository ADRs versus an initiative's decisions.md; docs/adr/ seeded from this skill's template on first use; the dated naming convention is repository-wide

**greenline prelude: the decision harvest at completion.** Repo-level ADRs record durable technical decisions the work itself surfaced (constraints discovered, approaches abandoned), distinct from an initiative's decisions.md, which records the shaping rulings that scoped it. On first use, seed the repository's docs/adr/ directory from this skill's template.md and README.md support files. Naming inside docs/adr/ follows this skill's dated convention repo-wide; `domain-modeling`'s ADR-FORMAT.md is upstream's format, superseded wherever the two disagree. The request owner's handoff includes the evaluation: an ADR lands with the ticket's change, or the hand-off states plainly that none was needed.
 
A decision that spans modules is recorded where a developer must stand to extend it: the ADR lives at, or is pointed at from, the extension point, and it carries an explicit checklist of the other places that must change in step, because that is the moment the reader is already committed to the change (Ousterhout, 2021). The ADR is still a dated file in the repo's ADR home; what stands at the extension point is the record's pointer and the in-step checklist the extending reader must act on. Duplicating the explanation into every dependent site drifts apart, and parking it in one dependent site hides it; where no obvious central location exists, the repo-level ADR home is the fallback and the extension point gains the pointer.
 

2026-09-11 descriptions-practice-the-catalog-2026-09-11

the em-dash rule now reaches the descriptions (they were manifest overrides, outside the old rule); rewritten without the dashes, meaning kept

SKILL.md

harnesschangeddescriptions-practice-the-catalog-2026-09-11

greenline renders its own frontmatter: quoted name and description; the description rewritten without em dashes under the widened rule

name: record-architecture-decisions
name: "record-architecture-decisions"
description: Record small Architecture Decision Records (ADRs) for durable technical choices in this monorepo. Use when a change chooses among meaningful alternatives, moves from an ideal approach to a practical one because of discovered constraints, establishes a cross-component contract or convention, accepts a consequential trade-off, or supersedes an earlier decision. Also use before completing any non-trivial implementation thread or merge request to decide whether its work produced an ADR-worthy decision.
description: "Record small Architecture Decision Records (ADRs) for durable technical choices. Use when a change chooses among meaningful alternatives, abandons an ideal approach over a discovered constraint, establishes a cross-component contract or convention, accepts a consequential trade-off, or supersedes an earlier decision. Also use it before completing any non-trivial ticket, to evaluate whether the work produced an ADR-worthy decision."

2026-09-11 fold-2026-09-11

the fold (ADR 0039, S3): the prelude is gone; the harvest at a ticket's close, the repository's existing decision home before any seeding of docs/adr/, the split between an initiative's decisions.md and an ADR, the dated naming and the decisions-book link sit at the steps that use them, with the Handoff section the skills-handoff gate parses

SKILL.md

scopechangedfold-2026-09-11

one opening paragraph in the skill's voice after the title: the decision harvest at a ticket's close, named by implement and verify-this and also fired on its own by upstream's triggers; it writes in the repository's existing decision home; shaping rulings belong to the initiative's decisions.md and domain words to domain-modeling; it never reopens the decision it records, and the harvest closes the ticket for the request owner to complete

This skill is the decision harvest at a ticket's close: implement and verify-this name it when a landed change may have settled something durable, and it also fires on its own when a change chooses among meaningful alternatives, abandons an approach over a discovered constraint, establishes a cross-component contract, accepts a consequential trade-off or supersedes an earlier decision. It writes the record in the repository's existing decision home. The shaping rulings that scoped an initiative belong in that initiative's `decisions.md`, and the words of the domain belong to domain-modeling; this skill never reopens the decision it records, and the harvest closes the ticket for the request owner to complete.
 
lifecyclechangedfold-2026-09-11

the evaluation happens at the ticket's close over its base_commit..result_commit diff and its outcome is stated in the request owner's handoff; step 3 says a shaping ruling that scoped the work goes to the initiative's decisions.md while an ADR holds the durable technical reasoning the work itself surfaced (a constraint discovered, an approach abandoned); upstream's criteria for writing or skipping an ADR are unchanged

1. Review the conversation, implementation attempts, test results, and diff for durable decisions.
1. At the ticket's close, review the conversation, implementation attempts, test results, and the diff of its `base_commit..result_commit` for durable decisions.
lifecyclechangedfold-2026-09-11

the evaluation happens at the ticket's close over its base_commit..result_commit diff and its outcome is stated in the request owner's handoff; step 3 says a shaping ruling that scoped the work goes to the initiative's decisions.md while an ADR holds the durable technical reasoning the work itself surfaced (a constraint discovered, an approach abandoned); upstream's criteria for writing or skipping an ADR are unchanged

3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR.
3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR. A shaping ruling that scoped the work belongs in the initiative's `decisions.md`, not in an ADR; an ADR holds the durable technical reasoning the work itself surfaced, such as a constraint discovered or an approach abandoned.
4. If no ADR is needed, state that explicitly in the final handoff.
4. If no ADR is needed, state that explicitly in the request owner's handoff.
locationchangedfold-2026-09-11

the artifact-discipline rule (review of 2026-09-11, item 2): step 1 looks for the repository's existing decision home, a decisions document or an ADR directory of its own, and writes there in that home's format, seeding docs/adr/ from this skill's template.md and README.md only when the repository keeps no decisions anywhere; step 2 creates the dated file in docs/adr/ or adds the entry in another home's own form, and the dated naming is repository-wide, superseding domain-modeling's ADR-FORMAT.md where they disagree

1. Read `docs/adr/README.md` and `docs/adr/template.md` completely.
1. Find the repository's existing decision home: a decisions document, or an ADR directory of its own. When one exists, write there in that home's format. Only when the repository keeps no decisions anywhere, seed `docs/adr/` on first use from this skill's `template.md` and `README.md` support files, then read `docs/adr/README.md` and `docs/adr/template.md` completely.
2. Create `docs/adr/YYYY-MM-DD-short-title.md`. Use a specific, durable title and avoid sequential numbers that conflict across concurrent branches.
2. In `docs/adr/`, create `docs/adr/YYYY-MM-DD-short-title.md`; in another home, add the entry in that home's own form. Use a specific, durable title and avoid sequential numbers that conflict across concurrent branches. The dated naming is repository-wide and supersedes domain-modeling's `ADR-FORMAT.md` where they disagree.
lifecyclechangedfold-2026-09-11

upstream's merge request is the reviewed ticket's change: the ADR lands with it and a lasting choice is linked from the decisions book .greenline/DECISIONS.md rather than copied there (WORK.md's repository-memory rule), and acceptance is that change landing; the Handoff section names the harvest and the decision home consumed, the ADR in that home linked from the decisions book (docs/adr/YYYY-MM-DD-short-title.md only when seeded), and no next stage

5. Include the ADR in the same merge request as the decision whenever possible.
5. Include the ADR in the same ticket's change as the decision whenever possible, and link a lasting choice from the decisions book, `.greenline/DECISIONS.md`, rather than copying it there.
locationchangedfold-2026-09-11

greenline's paragraph on a decision that spans modules (Ousterhout, 2021) moved from the prelude to the end of Write the ADR: the record stays a dated file in the decision home and the extension point carries the pointer and the in-step checklist; unchanged in substance

A decision that spans modules is recorded where a developer must stand to extend it: the ADR lives at, or is pointed at from, the extension point, and it carries an explicit checklist of the other places that must change in step, because that is the moment the reader is already committed to the change (Ousterhout, 2021). The ADR is still a dated file in the decision home; what stands at the extension point is the record's pointer and the in-step checklist the extending reader must act on. Duplicating the explanation into every dependent site drifts apart, and parking it in one dependent site hides it; where no obvious central location exists, the decision home is the fallback and the extension point gains the pointer.
 
lifecyclechangedfold-2026-09-11

upstream's merge request is the reviewed ticket's change: the ADR lands with it and a lasting choice is linked from the decisions book .greenline/DECISIONS.md rather than copied there (WORK.md's repository-memory rule), and acceptance is that change landing; the Handoff section names the harvest and the decision home consumed, the ADR in that home linked from the decisions book (docs/adr/YYYY-MM-DD-short-title.md only when seeded), and no next stage

- Do not add approval or status metadata. Landing through merge request review records acceptance; an unmerged ADR remains a proposal in its branch.
- Do not add approval or status metadata. Landing with the reviewed ticket's change records acceptance; an unmerged ADR remains a proposal in its branch.
 
## Handoff
 
Consumes: the landed change at a ticket's close (the decision harvest) and the repository's existing decision home
Produces: an ADR in that home, linked from the decisions book .greenline/DECISIONS.md; docs/adr/YYYY-MM-DD-short-title.md only when the repository keeps no decisions elsewhere and docs/adr/ is seeded from this skill's template and README on first use
Next: none; the harvest closes the ticket and the request owner completes it

2026-09-11 fold-walk-2026-09-11

the coherence walk: the home rule's reason names its source

SKILL.md

locationchangedfold-walk-2026-09-11

step 1 looks for the repository's existing decision home, a decisions document or an ADR directory of its own, and writes there in that home's format, seeding docs/adr/ from this skill's template only when the repository has none (docs/ledger/evidence/qa-s6-block-fixes/artifact-discipline.md, the home rule)

1. Read `docs/adr/README.md` and `docs/adr/template.md` completely.
1. Find the repository's existing decision home: a decisions document, or an ADR directory of its own. When one exists, write there in that home's format. Only when the repository keeps no decisions anywhere, seed `docs/adr/` on first use from this skill's `template.md` and `README.md` support files, then read `docs/adr/README.md` and `docs/adr/template.md` completely.
2. Create `docs/adr/YYYY-MM-DD-short-title.md`. Use a specific, durable title and avoid sequential numbers that conflict across concurrent branches.
2. In `docs/adr/`, create `docs/adr/YYYY-MM-DD-short-title.md`; in another home, add the entry in that home's own form. Use a specific, durable title and avoid sequential numbers that conflict across concurrent branches. The dated naming is repository-wide and supersedes domain-modeling's `ADR-FORMAT.md` where they disagree.

2026-09-11 ready-copies-2026-09-12

The readiness plan R5: a deferral is not a decision.

SKILL.md

scopechangedready-copies-2026-09-12

step 3 says a choice put off is a line inside the decision it defers from, never an ADR or a decisions-book entry of its own, so the three readings the S7 series produced (a new entry, nothing, a line inside D6) collapse to one; the routine-maintenance skip list is unchanged

3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR.
3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR. A deferral is not a decision: a choice put off is a line inside the decision it defers from, never an ADR or a decisions-book entry of its own. A shaping ruling that scoped the work belongs in the initiative's `decisions.md`, not in an ADR; an ADR holds the durable technical reasoning the work itself surfaced, such as a constraint discovered or an approach abandoned.
4. If no ADR is needed, state that explicitly in the final handoff.
4. If no ADR is needed, state that explicitly in the request owner's handoff.

2026-09-12 vocabulary-owner-2026-09-12

The workspace's person is the owner: the word operator became owner where the copy names the workspace's person, and request owner became request holder (the internal refactor's step 1, ruling 10, 2026-09-12); every earlier claim on a re-measured hunk is carried forward under its own kind, with its authority where it had one.

SKILL.md

retiredchangedvocabulary-owner-2026-09-12

re-measured after the word change; its claim (scope from fold-2026-09-11) carries to the hunk that replaced it

This skill is the decision harvest at a ticket's close: implement and verify-this name it when a landed change may have settled something durable, and it also fires on its own when a change chooses among meaningful alternatives, abandons an approach over a discovered constraint, establishes a cross-component contract, accepts a consequential trade-off or supersedes an earlier decision. It writes the record in the repository's existing decision home. The shaping rulings that scoped an initiative belong in that initiative's `decisions.md`, and the words of the domain belong to domain-modeling; this skill never reopens the decision it records, and the harvest closes the ticket for the request owner to complete.
 
retiredchangedvocabulary-owner-2026-09-12

re-measured after the word change; its claim (scope from ready-copies-2026-09-12) carries to the hunk that replaced it

3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR.
3. Skip an ADR for routine maintenance, implementation details, straightforward bug fixes, and choices already dictated by an accepted ADR. A deferral is not a decision: a choice put off is a line inside the decision it defers from, never an ADR or a decisions-book entry of its own. A shaping ruling that scoped the work belongs in the initiative's `decisions.md`, not in an ADR; an ADR holds the durable technical reasoning the work itself surfaced, such as a constraint discovered or an approach abandoned.
4. If no ADR is needed, state that explicitly in the final handoff.
4. If no ADR is needed, state that explicitly in the request owner's handoff.
retiredchangedvocabulary-owner-2026-09-12

re-measured after the word change; its claim (lifecycle from fold-2026-09-11) carries to the hunk that replaced it

- Do not add approval or status metadata. Landing through merge request review records acceptance; an unmerged ADR remains a proposal in its branch.
- Do not add approval or status metadata. Landing with the reviewed ticket's change records acceptance; an unmerged ADR remains a proposal in its branch.
 
## Handoff
 
Consumes: the landed change at a ticket's close (the decision harvest) and the repository's existing decision home
Produces: an ADR in that home, linked from the decisions book .greenline/DECISIONS.md; docs/adr/YYYY-MM-DD-short-title.md only when the repository keeps no decisions elsewhere and docs/adr/ is seeded from this skill's template and README on first use
Next: none; the harvest closes the ticket and the request owner completes it