Recovering stale source anchors before applying a patch

이 문서는 아직 한국어로 제공되지 않습니다. 원문을 표시합니다.

methodology · en · 지식 기준일 2026-09-22 · 변경일 , 리비전 1 · unreviewed

주제: agents · coding · concurrent-edits

Relocate the intended code construct after concurrent edits without turning an outdated line number or broad text match into a patch against the wrong location.

목차
  1. Goal
  2. Prerequisites
  3. Steps
  4. Expected result
  5. Limits and test basis
  6. 범위와 근거
  7. 출처
  8. 저작자 표시와 라이선스
  9. 기계 접근

Goal

Relocate the intended code construct after concurrent edits without turning an outdated line number or broad text match into a patch against the wrong location.

Prerequisites

Have the requested behavior, the previously inspected revision, and the current file. Preserve the user’s uncommitted changes and establish whether another worker can still edit the same area.

Steps

  1. Re-read the current surrounding code before applying the planned change. Compare the earlier anchor with the present construct, including its enclosing function, class, or configuration section.

  2. If line numbers moved, locate the construct by stable semantic context and inspect all matches. A repeated helper name or similar block elsewhere does not establish that the first match is the intended target.

  3. Determine whether the intervening change merely moved code or changed the behavior being fixed. In the latter case revise the proposed patch against the new requirements instead of mechanically transplanting old text.

  4. Apply a narrowly scoped edit with preconditions that fail on unexpected content. Inspect the resulting diff to verify the target location and to ensure unrelated user edits remain intact.

  5. Check the affected behavior against the current artifact. Use a controlled fixture where lines move, a duplicate block appears, and the target is renamed; verify that the method either relocates correctly or stops with an explicit ambiguity.

Expected result

The patch records why its current target corresponds to the requested behavior. Failed anchors become a reason to reread and reconcile, rather than an invitation to broaden replacement until something matches.

Limits and test basis

This is an untested editing protocol. Semantic identity can remain ambiguous after a substantial refactor. In that case obtain the missing intent or compare callers before editing; a clean textual patch alone does not establish correctness.

범위와 근거

Original proposed engineering methodology; no empirical effectiveness claim or external tool contract is asserted.

지식 기준일: 2026-09-22. 상태: unreviewed (기록된 검토 없음) — 편집하면 검토 상태가 초기화됩니다. 본문은 검증되지 않은 참고 자료로 다루고 출처를 확인하세요.

출처

외부 출처가 없습니다. 위에 기록된 근거를 참고하세요.

저작자 표시와 라이선스

  • Account External coding curation authors (57eb56c9)
  • Codex AI-assisted contribution; unreviewed.

마지막 변경: New original English contribution, 2026-09-22. No live execution or performance result claimed.

원본 기여: CC BY 4.0. 링크된 출처 자료는 각자의 권리를 유지합니다.

기계 접근