Skip to content

feat(lastcode): make worktree cleanup durable - #76

Merged
lastobelus merged 22 commits into
lastcode/mainfrom
lastcode/durable-worktree-cleanup
Aug 24, 2026
Merged

feat(lastcode): make worktree cleanup durable#76
lastobelus merged 22 commits into
lastcode/mainfrom
lastcode/durable-worktree-cleanup

Conversation

@lastobelus

@lastobelus lastobelus commented Aug 24, 2026

Copy link
Copy Markdown
Owner

Deleting a thread could remove the conversation before its worktree cleanup finished, leaving failures visible only in a short-lived toast and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The deletion event records deleting, queued, or failed cleanup state; same-repository removals run in order; restart resumes unfinished jobs; and the thread remains as a non-openable sidebar row until cleanup succeeds or the user explicitly keeps the worktree. Legacy, v2, and mobile sidebars observe the state. Web and desktop provide retry, copy-details, and keep-worktree controls for failures; mobile provides Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove large worktrees while retaining a finite deadline for stalled filesystems.

Validation:

  • focused contract, capability, decider, reactor, projection, migration, web, and mobile tests
  • contracts, client-runtime, server, web, and mobile typechecks
  • three sequential Luna/high review rounds covering correctness, UI/UX, KISS, and best practices; accepted findings are fixed on the current head
  • LastCode guarded full CI on the exact head: formatting/lint, all workspace typechecks and tests, desktop build, native static checks, and release smoke
  • integrated visual QA in the retained web client across legacy and v2 sidebar states, failure controls, queued deletion, light/dark themes, and cleanup-detail hovers; the final pass also corrected path font size and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer server may not render cleanup tombstones correctly. We intentionally do not add a presentation shim; clients and server should be upgraded together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.

@lastobelus
lastobelus force-pushed the port/upstream/pr-3902-worktree-remove-timeout branch 5 times, most recently from 02ee1e5 to eea7b6f Compare August 24, 2026 15:19
@lastobelus
lastobelus deleted the branch lastcode/main August 24, 2026 15:29
@lastobelus lastobelus closed this Aug 24, 2026
@lastobelus lastobelus reopened this Aug 24, 2026
@lastobelus
lastobelus changed the base branch from port/upstream/pr-3902-worktree-remove-timeout to lastcode/main August 24, 2026 15:30
@lastobelus
lastobelus marked this pull request as ready for review August 24, 2026 15:30
@lastobelus
lastobelus force-pushed the lastcode/durable-worktree-cleanup branch from 7cfdac6 to d28d55f Compare August 24, 2026 15:35
@lastobelus

Copy link
Copy Markdown
Owner Author

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: d28d55fe0c

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread apps/server/src/orchestration/Layers/ThreadDeletionReactor.ts
Comment thread apps/mobile/src/features/threads/thread-list-v2-items.tsx Outdated
Comment thread docs/lastcode/durable-worktree-cleanup-plan.md Outdated
@lastobelus

Copy link
Copy Markdown
Owner Author

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 5b6f29f22e

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread apps/server/src/orchestration/decider.ts
Comment thread apps/mobile/src/features/threads/thread-list-items.tsx Outdated
@lastobelus

Copy link
Copy Markdown
Owner Author

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 2cd0853416

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread apps/server/src/orchestration/Layers/ThreadDeletionReactor.ts Outdated
Comment thread apps/mobile/src/features/threads/thread-list-items.tsx Outdated
Comment thread packages/contracts/src/orchestration.ts
@lastobelus

Copy link
Copy Markdown
Owner Author

@codex review

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: b1577c40a2

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread apps/server/src/orchestration/Layers/ThreadDeletionReactor.ts Outdated
Comment thread apps/server/src/orchestration/Layers/ThreadDeletionReactor.ts Outdated
Comment thread apps/server/src/orchestration/Layers/ThreadDeletionReactor.ts Outdated
@lastobelus

Copy link
Copy Markdown
Owner Author

@codex review

lastobelus added a commit that referenced this pull request Sep 1, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 1, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 1, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 1, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 2, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 2, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 2, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 2, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 2, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 2, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 3, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 3, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 3, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 3, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 3, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 5, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 5, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 5, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 5, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 5, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus added a commit that referenced this pull request Sep 5, 2026
Deleting a thread could remove the conversation before its worktree
cleanup finished, leaving failures visible only in a short-lived toast
and losing the cleanup entirely across a disconnect or restart.

This makes worktree cleanup a durable server-owned lifecycle. The
deletion event records deleting, queued, or failed cleanup state;
same-repository removals run in order; restart resumes unfinished jobs;
and the thread remains as a non-openable sidebar row until cleanup
succeeds or the user explicitly keeps the worktree. Legacy, v2, and
mobile sidebars observe the state. Web and desktop provide retry,
copy-details, and keep-worktree controls for failures; mobile provides
Retry and Keep worktree from the failed row's long-press menu.

This builds on merged #74, which gives native Git enough time to remove
large worktrees while retaining a finite deadline for stalled
filesystems.

Validation:

- focused contract, capability, decider, reactor, projection, migration,
web, and mobile tests
- contracts, client-runtime, server, web, and mobile typechecks
- three sequential Luna/high review rounds covering correctness, UI/UX,
KISS, and best practices; accepted findings are fixed on the current
head
- LastCode guarded full CI on the exact head: formatting/lint, all
workspace typechecks and tests, desktop build, native static checks, and
release smoke
- integrated visual QA in the retained web client across legacy and v2
sidebar states, failure controls, queued deletion, light/dark themes,
and cleanup-detail hovers; the final pass also corrected path font size
and premature balanced-text wrapping

Compatibility boundary: pre-feature clients connected to the newer
server may not render cleanup tombstones correctly. We intentionally do
not add a presentation shim; clients and server should be upgraded
together for this feature.

Implemented by GPT-5.6-sol through the Codex harness in T3 Code.
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: tooling
Carry-Contribution: {"sourceCommit":"08f6973dfdca692a18c2f34d6c040c31f3b097c1","subject":"carry(tooling): document fork evaluation conventions","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/b395cfc734c2e505f7b7e23fefd005a3d530ad9b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b50ef10425fee54a114f76388abd20de13cd4c75","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly-sync command registration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"32526962a05a7c84266a425a58f50abbbdb0d9a9","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly source-tracking guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f4e928c74e765680867215d37880791e28fe544","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e7e7e51204f1a6120693f3115a8348be21a823ca","subject":"carry(tooling): Add LastCode plan and PR review skills","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/8a60d13faa5b87ff669b426361990ee0b4ccf6b3"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d71838a6f8507c044e35b2aa83c2af11d5cf6a23","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, checkpoint-service, and merge command registration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"46649b79c975002925af314dd71dc022922e1ca1","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint creation, recovery, promotion, and service-operation guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"994c7d784ed6316d969f792292ef8e0e51468fca","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Nightly-tracking reference, runtime identity, and local orchestration guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"da34807d9c3948790a0b7956f46c662e2de5351d","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"de8b3f09a005cb7b0a9265eace5e42ceee35317c","subject":"carry(tooling): fix(release): create checkpoint worktree branch (#2)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/2"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bf49a89a847ba495076c71c395194bdc342279a8"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5e790ea3e0beffbb6813f9fab23b278d5abf755b","subject":"carry(tooling): fix(release): isolate checkpoint smoke runner (#3)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/3"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/40c613b75193dfaeab3e8d25107f08a35f17d9a4"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"946269e9b272c1d7cfde43fb3bd2d49fe0708c0d","subject":"carry(tooling): fix(release): provision nightly service worktree (#4)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/4"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/217560dd91515ed8f00720a7df9507a71071e9ac"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"15944f05e40b95f9763b033563a13ddf3f001194","subject":"carry(tooling): fix(release): bootstrap checkpoint dependencies locally (#5)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/5"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/407dee55370022a5647ae404207b2d22dbc51c59"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7285083370982ecabb3dadc688b205569977eae1","subject":"carry(tooling): feat(release): add checkpoint dashboard (#6)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/6"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/7d3cf7397aa321b0c591c3afbb2d3a32b0327aab"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7e4df1e28077022a4aacb11e65cec661b4615435","subject":"carry(tooling): fix(release): avoid duplicate checkpoint tag CI (#8)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/8"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fecef09c3975834160640d7891da0d3cb0ea6d1e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0bafcf129154615b8020d5150e365e7e700550f0","subject":"carry(tooling): fix(release): retry published checkpoint promotion (#9)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/9"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/119973cf3bbd064d25fc8545c31d601c3273d8bf"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e5209a2a0258a77b57b4c8bd8c677b1fa817541f","subject":"carry(tooling): docs(lastcode): define contribution workstreams (#10)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/10"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/dcb4379d7e822e0fee18cc054f7b108ea4192511"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"abbd722e028917d51ae0ce025c5e63e80820b087","subject":"carry(tooling): fix(lastcode): stabilize local nightly updates (#14)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/14"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint recovery, promotion, service, and dashboard-operation guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5c99904dadcdd1cf44f3bae80c081f50c4c77abe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ad1cf74a6b4ae27427a2a0740f62415c362a204f","subject":"carry(tooling): fix(lastcode): stabilize local nightly updates (#14)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/14"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5c99904dadcdd1cf44f3bae80c081f50c4c77abe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"acaeacdd84f1e85ca5e08c43573b8513856a2466","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Revision creation, recovery, references, and checkpoint promotion belong to Tooling. Evidence: These hunks extend checkpoint orchestration from checkpoint-only state to ordered revisions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e72738d6d80d3578e1baf1edfffc3d023af6e115","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["The merge handoff's checkpoint-daemon request remains Tooling. Evidence: Only this hunk asks the daemon to publish a revision after a completed merge."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9858423e46459caa51600182b6d90ebcb7cb76b6","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Revision lifecycle framing belongs to Tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f2e790938a48588cfe000d377931b617b25f128","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f4f6033cc2730068b3e4246098364e6f8ce1c315","subject":"carry(tooling): fix(lastcode): validate daemon pushes before connecting (#17)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/17"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a75a3295fb10fd6733a65e4292667b668da1b4a9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"173e9186a55db6bbbb6510d72dc54bbf0aca5bae","subject":"carry(tooling): feat(lastcode): show local nightly build activity (#25)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/25"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c4c8e9a395c16f58ec8a148149d3e54cb121f7fe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e2e61a08194fec95b45e57792652f081595bfc48","subject":"carry(tooling): feat(lastcode): add upstream PR import skill (#27)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/27"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/730e934971fee80c1dda117519ff74b5823a7a5f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e04399d1f3b6cedb578394fdc0e1f6eff0111983","subject":"carry(tooling): feat(lastcode): add personal setup bootstrap (#37)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/37"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/645917073a28747e9fa364d70a6164ebde41b48b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"881b1389ec9a40ecb33bad124dfd9cc0a785341f","subject":"carry(tooling): fix(server): lease Darwin server ownership (#57)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/57"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c42208596884dec2678b8afa8918a69ca7fbe6bb"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7c37ac8b5f04d5877b2b83ce18ed95835383f066","subject":"carry(tooling): feat(lastcode): add durable remote update drain state (#60)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/60"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/db6d3b9dedab7df287bc72e9163a0104edd92ec9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6756c86f7e849831224a84e87aa80472baa18b69","subject":"carry(tooling): feat(server): gate work during update drain (#64)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/64"],"Carry-Upstream":[],"Carry-Observation":["Durable update-drain operation, persistence, terminal gating, authorization, and release operations. Evidence: These paths define the drain lifecycle and its durable command/receipt infrastructure rather than Action behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e5f50b65f6785b84d791be4b801292238c3fb8c6"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c7773ff356bf89461e6f0c033e569886ea5d4aff","subject":"carry(tooling): fix(lastcode): deduplicate reconciled contract import","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ef2a3a47bace8477605aa6d173f6d084ee1d6f3"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ac7512bf821c37a6f6ca3b6de740ecbc5623b43c","subject":"carry(tooling): fix(lastcode): explain checkpoint rebase conflicts (#67)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/67"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d75b690c043c6c841c7051df3b0da7c4d23c979e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7d3d081d457bc09790aca6092c7200be38313c1d","subject":"carry(tooling): fix(lastcode): wait for active checkpoint recovery (#70)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/70"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c7c8339f06ce2193ad05d1fb758f713e9ee46214"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ce1702b0eea10aa20304132a4c92816d74691f02","subject":"carry(tooling): feat(lastcode): update managed server on its configured schedule (#81)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/81"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f13011efa84a50bef50e38758bd60f96b358abee"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"66fc535cbfca92a5cde12d5b205f54e40b656f35","subject":"carry(tooling): feat(lastcode): make worktree cleanup durable (#76)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Durable worktree-cleanup state, deletion reactor, VCS retry, command, and contract implementation. Evidence: These hunks define cleanup persistence and recovery behavior independently of its presentation surfaces."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e7ff623e4465de97c94bbbae286941f081027992","subject":"carry(tooling): fix(lastcode): describe nested vendor gitlink (#83)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/83"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a1ef4ba683b76c622ee5971d652fe9520fc1c66"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2ea240ee575d98be7528939eaa0b9d4115e8e392","subject":"carry(tooling): fix(lastcode): repair nightly promotion after replay (#89)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/89"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/47b5a372a0cb0562c1b506f7e1cc649ee2cfc293"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"902cb01a6b890d31c7bceecea8236d8a9ab2fa46","subject":"carry(tooling): feat(lastcode): run managed server headlessly (#90)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/90"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f057bb00849df8a9b6852aee2de2f19a8cb9885b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e2c9440d78272c0f0558a9968a16607e695f4982","subject":"carry(tooling): fix(lastcode): retry headless readiness probes (#94)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/94"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c7dda8c9e52d1f6200f975c6bc2d30859b091899"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"606dd068b5590d3ba4cc3a0ad06906495ecd1cb9","subject":"carry(tooling): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint migration replay maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e14486d84cdabed1cd738b65289092ac02f0d2ba","subject":"carry(tooling): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint failure reporting and service maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a9390bdd0c46b77303d186911883e18f4907bf58","subject":"carry(tooling): fix(lastcode): keep replay fixtures forward-compatible (#105)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/105"],"Carry-Upstream":[],"Carry-Observation":["Replay fixture maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4c07357b47e371a96d6aebb7259a5676753e5be9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7f94d7095969f34a9f09430efd3f7b5664c951e8","subject":"carry(tooling): refactor(lastcode): separate deployment infrastructure (#109)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e14c51bd78fbdd94e523273c0480fe92036e9a05","subject":"carry(tooling): fix(lastcode): remove deployment-specific infrastructure details (#116)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/116"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint-service wording and topology-neutral deployment primitives belong to Tooling. Evidence: These hunks describe release orchestration and environment-neutral deployment composition rather than producing or validating an artifact."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a36a736fb8d32b0b6b468a346ee00d431698d08"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d8778bc51ff8c5101b51af40e8616144157b5cff","subject":"carry(tooling): fix(lastcode): remove deployment-specific infrastructure details (#116)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/116"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a36a736fb8d32b0b6b468a346ee00d431698d08"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"12a7d260043671fc9ac528416666df531f032046","subject":"carry(tooling): fix(lastcode): silence absent checkpoint service (#118)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/118"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/004722575f86b31c9610514707bf71a27626e719"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4e65508273afbfff6c00907ab23ff0785bcdaa73","subject":"carry(tooling): fix(lastcode): finish checkpoints safely (#119)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/119"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/373878ffad42b4eaae6903ef5c302efe0032217f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6b8e557ee69e4fd32ea25e822da26a658ff63991","subject":"carry(tooling): fix(lastcode): validate checkpoint lint before publish (#120)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint lint gate and service scripts."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"56c3fcd3e0c830571318f2cff320412bb1e5c1a4","subject":"carry(tooling): fix(lastcode): keep checkpoint freshness current (#139)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/139"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/71f4104371ffa557a903a0e791e630da5bf1a297"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cbbd1e7741554a94519815d3b2873cf851decc6e","subject":"carry(tooling): fix(lastcode): keep theme replay smoke compatible (#140)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/140"],"Carry-Upstream":[],"Carry-Observation":["Replay smoke compatibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f2ef9b3c5489413af42d46679315dc95a4a2a9c2"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1f2455eb195c476c9fe0b3c980c739ad4a173f4d","subject":"carry(tooling): fix(lastcode): include remote checkpoint tags in status (#142)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/142"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/233b1ae1ee1212351117f16497d9c86343dbb8ea"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3a59b470e62066043070bd2095b5e3e5c5126b8a","subject":"carry(tooling): feat(lastcode): inventory downstream carry set (#149)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/149"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/278445fada2399bdfc056d35c548e5059f394daa"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5e9232ecae59252a092827138b93cf3fd5bfc442","subject":"carry(tooling): feat(lastcode): add public docs feature registry (#167)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/167"],"Carry-Upstream":[],"Carry-Observation":["LastCode public documentation tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fccaf4ecbf4165cec8947f0b14de41d071ed8851"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f8d8288fe0b407193ef94dca955461b3e016bd23","subject":"carry(tooling): fix(lastcode): skip superseded checkpoint recoveries (#166)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/166"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e727f507b84321e9e35fc815a6aef2e953149172"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2f1c9fb594247ce1b333580d737eccb8a5083717","subject":"carry(tooling): feat(lastcode): add public docs fixtures (#170)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/170"],"Carry-Upstream":[],"Carry-Observation":["Public documentation fixtures."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/be4dfff50979a13be1c2bc1493d392a32de257fa"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2790665ba1e730e0abef2a7e0f996b55f89c9626","subject":"carry(tooling): feat(lastcode): shadow-check checkpoint carry sets (#171)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/171"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c604b14d812a904ba64ce41f6e98c74985cd4e9f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4cfcf67f7f012baf28f7c0fc467c06b94f673b9d","subject":"carry(tooling): fix(lastcode): typecheck checkpoints before publishing (#176)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/176"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint pre-publication typecheck."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bd13a1ccdb354301654ffd6cf14e8cbcdabfb861"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"66d8c2e79bcc3c27c6231d7febef1d71aeca8994","subject":"carry(tooling): feat(lastcode): reconcile managed project actions (#174)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/174"],"Carry-Upstream":[],"Carry-Observation":["Project action reconciliation and service orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ffe7eaed597b2ff7065f0f2ee163c516c2cd1c4b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f872def2b0787dc802aa9d1df756d2fbf81cf73a","subject":"carry(tooling): fix(lastcode): keep docs fixture commands live (#177)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/177"],"Carry-Upstream":[],"Carry-Observation":["Documentation fixture command maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9f3924cad6a0c30029a5058dc09745410637b942"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"14d5735b50fe46f4714ac82c4962481442f18dcf","subject":"carry(tooling): feat(lastcode): safeguard persistent threads (#178)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/178"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/94389c9600931744389cd12691e5645831a3a12d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b754de22a3e4e632908a6b98b692e29ed9e8d000","subject":"carry(tooling): fix(server): combine CLI environment test layers","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["CLI test layer maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/781e7c5031e26150eacc5a235e40d6e5ec215233"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a12d0bca5e890283f9728dbc3742598bff69a83d","subject":"carry(tooling): fix(lastcode): reconcile nightly web tests","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Format-only settings cleanup with no Action or sidebar behavior. Evidence: The only useSettings hunk deletes a blank line; it has no feature owner and remains Tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74b09f641067199195272daf129b4c3dd5196a15"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"893f21c6107fd699676c04e7854aae856995ac00","subject":"carry(tooling): fix(lastcode): reconcile nightly 1253 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly integration repair spans updater and service tests."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/dc4f6dec7a783c9531aaeeb6270ecc85e5bec799"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2e23ea9eacd7e6ffef32eb78d894be924e13bb10","subject":"carry(tooling): fix(lastcode): reconcile nightly 1256 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Mixed nightly reconciliation repairs with no shared product owner. Evidence: The remaining hunks remove an obsolete model seed and renumber a migration fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f8418eb9c9b87164768bff5f2f0bf1e0ec886e6"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"76acc15a59587f1e81bcb94b610062e82b35a10a","subject":"carry(tooling): fix(lastcode): reconstruct renamed carry-set paths","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Carry-set reconstruction tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb2b9fbc698775b92471d6c7c7b2d92c7474832e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9d29c2bf71f2dd8f8ed3cfef3f313065e8f50e51","subject":"carry(tooling): fix(lastcode): reconcile nightly 1262 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly integration migration and UI repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0304b910fa7dc1c592588caf8bf46cd1a3e38c39","subject":"carry(tooling): fix(lastcode): clean replay migration fixtures","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Replay migration fixture cleanup."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8c626ffd49b0f7d196c73e2dea314c9781242a8c","subject":"carry(tooling): fix(lastcode): align checkpoint smoke with replayed tree","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint smoke and managed checkout maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2b18f50d5d320f3888db1d72312dbc2cd7f13c1e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c542e5f49fe343749dabe96884fef9b2fa038812","subject":"carry(tooling): fix(lastcode): reconcile nightly typechecks","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Server test-harness repair. Evidence: The remaining server hunk extracts a shared test layer and has no feature owner."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e03889de8306df08ba2f5b38eb3df8707c17ace0","subject":"carry(tooling): fix(lastcode): reconcile nightly formatting","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly formatting repair in a server test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/30d2513b98114564bf62a25d026cdcf71d234b33"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"60386b06fe16f34248f8ad2ad38cf02d2a7d6e76","subject":"carry(tooling): fix(web): update file save test import after nightly rebase","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly test import repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0c10ddd13e4470e1e96d8fe35c9de1a217b2d074"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3c862d17bd3d10313a2de7380576e754c474daff","subject":"carry(tooling): fix(lastcode): resume maintenance waits without agent polling (#194)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/194"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/77a8cdc5eed130628418671f7ba361b6fa4fb87b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e03effd20aa55a5e4a3b9a8922f98c69ffc3ae13","subject":"carry(tooling): fix(lastcode): recover revision provenance across nightlies (#195)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/195"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint revision provenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/13a66dfe35f8e80ff96de2aae21a80e35eaf4067"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1b1c0dda9eab6a808fb493d3176946e91eb5fbdb","subject":"carry(tooling): feat(lastcode): resume threads after local package builds (#197)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/197"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f7348c54703d8e107ecdf693b477c923cb7f137f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e4f4d7a22811faf04abb40f21955f31117d31a21","subject":"carry(tooling): fix(server): align nightly import tests with LastCode services","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly import test compatibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5d76ad48ac5b06a56af25f993348ed39371e870d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b2ab02a7e9860ba04328ca98a7ad9d9fabf9f451","subject":"carry(tooling): feat(lastcode): resume repaired nightly checkpoints (#201)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/201"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f90115b9bda253c98d7d5db6abedc41ff046559"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c2d90798c8b1179f7daaa184cc276db81a0a2aab","subject":"carry(tooling): compile surviving shared release guidance","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Synthetic bootstrap-only shared-guide slice; docs/lastcode/nightly-workflow.md: 396 surviving lines; docs/lastcode/release.md: 152 surviving lines."],"Carry-Evidence":["4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03; frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"47a8148197545734eb9ce985065a4b4151455b6c","subject":"carry(tooling): retire obsolete checkpoint alerts after recovery","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/208"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint supervision retires queued alerts after a successful recovery, preserves uncertain delivery recipients, and keeps failed-run retries. The operating guidance and focused supervisor coverage belong with the checkpoint tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/42e0e48674ed661ddf49adebc0769d90d458ee66"],"Carry-Applies-To":["upstream f8b4c464b4760d73e0ece7e68011c738803d8b69 (v0.0.39-nightly.20260905.1290); historical source 42e0e48674ed661ddf49adebc0769d90d458ee66"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e25abe7f1beb29ab2e4b68d74a55e9ec7bec29de","subject":"feat(lastcode): implement compact carry replay foundation","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Implements replay and source retention; bootstrap activation and full production lifecycle proof remain outstanding."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ddad73b14eba13523b333f0b1567192c5143846d","subject":"fix(lastcode): preserve historical carry bootstrap","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Synthetic lifecycle coverage now preserves a latest historical checkpoint baseline and its represented main tail; live production acceptance remains separate."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0c128b3d754fb2cd7abf06cc35c0d71e9df05667","subject":"feat(lastcode): validate carry ownership in CI","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":[],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9bc9ac33f22187d525aafc34250c288eb6a375ad","subject":"fix(lastcode): isolate carry replay from rerere locks","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Automatic rebase does not inherit rerere writes; retained conflicts remain available for explicit recovery."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7094216b3ef1b000a1f06306ecde6d2ddcf29da2","subject":"feat(lastcode): activate six-group carry replay from verified revision","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["The bootstrap preserves the complete immutable 1290.1 tree while separating six ordered owners and retaining descriptive fix evidence. Historical replay remains an explicit rollout escape hatch until the full production lifecycle is proven."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/releases/tag/lastcode%2Frevision%2Fv0.0.39-nightly.20260905.1290.1"],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"40c21e575aaa6247a09750213f26a116eb937222","subject":"fix(lastcode): retain prepared compact provenance","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Prepared compact bootstraps preserve validated nested contribution metadata when recompiled."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"829a014771eb0745acb093605e72839aaa3edd7c","subject":"fix(lastcode): fetch carry activation refs for checkpoints","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Carry activation and later checkpoint runs require remote-only retained source commits and the immutable prepared bootstrap partition."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts remote-only carry ref lifecycle"],"Carry-Applies-To":["carry replay checkpoint activation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"13948c94f34663ac146e49a9990f0d6d406733b2","subject":"test(lastcode): keep carry collision fixture on source branch","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["The checkpoint lifecycle fixture must run from its LastCode source branch so remote bootstrap fetching does not read the repository's production manifest."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts full three-test lifecycle"],"Carry-Applies-To":["carry replay checkpoint activation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"00148cefac51ffa1d8f73961b327bab2a39fecc2","subject":"test(lastcode): isolate historical rename fixture configuration","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Historical reconstruction coverage uses its own manifest so production carry activation cannot change the fixture mode."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"47b28d233b70fb902548ac831c692f9e47b2647e","subject":"fix(lastcode): validate advanced carry squash bases","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["A carry squash may follow a base advance only when Git reconstructs its exact tree from the reviewed base, advanced parent, and immutable source head."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ea133798d8701e48fe40742884ae7f3368709d08","subject":"test(lastcode): make carry lifecycle fixtures self-contained","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["The checkpoint lifecycle fixture belongs to Tooling and must run from GitHub Actions partial checkouts without lazy object fetching."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts full three-case lifecycle with GIT_NO_LAZY_FETCH=1"],"Carry-Applies-To":["carry replay checkpoint lifecycle validation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f66ba6040c860449493330dc649a0c1bdd3d409c","subject":"fix(lastcode): honor rollback and retain bootstrap failures","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Explicit historical rollback must publish its mode and reason, while carry bootstrap failures must either clean proven-retryable publication state or retain an identified recovery branch."],"Carry-Evidence":["scripts/lastcode-checkpoint.test.ts and scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["carry replay checkpoint revisions and initial bootstrap publication"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"32bb0d34f0bc76ff3a8661cab82433e68fc95529","subject":"fix(lastcode): record failed bootstrap cleanup","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Failed bootstrap cleanup must still leave an actionable recovery record, and explicit historical rollback must publish its requested metadata."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["initial carry bootstrap failure handling and same-source historical rollback"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6836d255ba8470c6f92f39709aad90d6e3824ee8","subject":"fix(lastcode): retain same-file historical repairs","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Historical replacement candidates must match Git’s exact merge of the previous checkpoint and current source, including separate hunks in shared files."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"966e11dee89d86711624a5944744076d9f301fc6","subject":"fix(lastcode): keep recovery previews read-only","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Previewing a retained recovery must not complete its plan, rebase its branch, update refs, or record a selection."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["dry-run recovery selection for persisted carry replay plans"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cc9ef26673897297a6cc599eedce5526cf9c814e","subject":"fix(lastcode): validate shadow checks by published replay mode","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Immutable tag metadata selects historical reconstruction or compact validation independently of the current carry configuration; legacy tags retain historical validation."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: legacy-sidebar
Carry-Contribution: {"sourceCommit":"ae773fe2a7268594fe49f2813649cb74d06534d4","subject":"carry(legacy-sidebar): fix(lastcode): use LastCode project icon (#15)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/15"],"Carry-Upstream":[],"Carry-Observation":["Project icon configuration supports sidebar identity."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/080586bef5d1edb66abeafe9bbc40737238b0e23"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"67b24c77989c78c0eefa4bced628efcdcce52c29","subject":"carry(legacy-sidebar): feat(web): toggle sidebar mode with a keybinding (#23)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/23"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ca68cb7e8e1c8ba78254a7cd406f97ca4687c6ab"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"760aef5ea069979b30a1de6f45a1e7b0aaee45b6","subject":"carry(legacy-sidebar): feat(lastcode): resume agents after opted-in Actions (#28)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/28"],"Carry-Upstream":[],"Carry-Observation":["Optional sidebar Action status, terminal-open/cancel controls, and their sidebar-only tests. The Action lifecycle and MCP/orchestration contracts remain with Resumable Actions. Evidence: PR #28 sidebar hunks add the Waiting pill, Action popover controls, and desktop running-count presentation only."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a4224354633307a3c934f4e6d6b90f602985a47a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8da727f0e224c7584e2a79b95bc37b136a44e0d9","subject":"carry(legacy-sidebar): feat(lastcode): scale legacy sidebar (#32)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/32"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c36677746e78c72371a30f4a3517f6b28f07f385"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1bc86c26c8a4734f2a089440c6182d171e5fee2d","subject":"carry(legacy-sidebar): fix(lastcode): keep legacy sidebar icons full size (#35)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/35"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/791c9bab48d06ca6f61bab0590149bd7236d0c74"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fcac521cc831a210ca1ef1208661b33b9c7d9204","subject":"carry(legacy-sidebar): feat(lastcode): make project icon rounding optional (#40)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/40"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2d7c0871cfb9048469aafd297ea10d03ad9f8553"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b560d7bc06acd9b4d447a1ee819e4447238de80f","subject":"carry(legacy-sidebar): fix(lastcode): keep sidebar metadata full size (#42)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/42"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0be17993e73b50254940b7bb75babe6bb6d18a7e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3d34dcf96214bf522ecfd0de41df9e7572c3259b","subject":"carry(legacy-sidebar): fix(web): align sidebar toggle keybinding label (#43)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/43"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/cbb165caa0232e865377bd4980058a47951665b7"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9d62a53b99981e3e3a7b39b2840ccaec29f32a0e","subject":"carry(legacy-sidebar): fix(lastcode): align remote sidebar metadata (#44)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/44"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/67d93a2df5904bea81c463a0059fc7d19cfa873d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1b9520436cac0a3cee00d0674e27c24dd4e1e7f9","subject":"carry(legacy-sidebar): feat(lastcode): add thread annotations (#50)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/50"],"Carry-Upstream":[],"Carry-Observation":["The reusable legacy thread-details hover component belongs to Legacy Sidebar. Evidence: Although introduced beside annotations, this standalone component renders generic project, environment, branch, provider, terminal, and error details and is subsequently extended by Legacy Sidebar hover and cleanup fixes."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52f03065c5b642ffa054d815ded9ed28c5c5efdc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ff599416c5a923cd2b7d1c52f2626fa1fbcaa2eb","subject":"carry(legacy-sidebar): fix(web): make legacy thread hovers consistent (#75)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/75"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fc769752c422beca2a6f0766e97677ba97e0e8cd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0cf9ff0c0200d7aa9d8715d6d8abc5261304d3cb","subject":"carry(legacy-sidebar): feat(lastcode): make worktree cleanup durable (#76)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar cleanup status, retry/keep controls, dialog, hover state, and user guidance. Evidence: These hunks render or invoke the cleanup recovery actions from the legacy thread sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b1cc74e12ccaed3c004e68b610d2457037752175","subject":"carry(legacy-sidebar): feat(lastcode): customize environment icons (#91)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/91"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a370244e6e885580bdf5ab6f2ad463e8603bee83"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"321162f6f3c7da0ea78b099f481cfb0d3d84bedc","subject":"carry(legacy-sidebar): feat(web): add compact status indicators setting (#96)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/96"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/33784dad67329ea4866ef40c2dcbc4ac881503df"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"993ced5dc59a374db4914107b6032cbb8a38a8ed","subject":"carry(legacy-sidebar): feat(web): add worktree indicator preference (#100)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/100"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/465b75a4a5db8b01fbd244c005b941c0696e13f4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"40c0dbed425436f56fbec9a09eedcd4e09f37992","subject":"carry(legacy-sidebar): fix(web): keep resumable actions visible while working (#98)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/98"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar presentation of running Action status and its user guidance belongs to Legacy Sidebar. Evidence: These hunks add the yellow waiting indicator to legacy thread rows and document that sidebar-only presentation; mobile rows and composer behavior remain Resumable Actions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a328a6c695f63290dd521e202988b6364be41c31"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1a69d4e43685390023f5157980274f1a793f81eb","subject":"carry(legacy-sidebar): fix(web): align legacy thread metadata columns (#99)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/99"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a34c2433f75698a7f3b861626c8efccc58c28359"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0113abc0b5cad916a12474409e60ec1302646822","subject":"carry(legacy-sidebar): fix(web): improve sidebar and minimap indicator legibility (#113)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/113"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar icon visibility, status legibility, alignment, and preference previews. Evidence: The remaining files affect legacy thread rows, their settings, and shared status indicators used by that sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/84380d167b0c6c09be7376e5328506ca4e2c5d87"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2269e37f62f31d94b9bea5ebb1dc354da883da7f","subject":"carry(legacy-sidebar): refactor(lastcode): separate deployment infrastructure (#109)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Environment-label coverage follows Legacy Sidebar's environment-icon settings feature. Evidence: The sanitized label expectation changes a test introduced by PR #91 for legacy-thread environment presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"56340ad03aec2113cb7f42a00b5f6344e57b9a70","subject":"carry(legacy-sidebar): refactor(lastcode): separate deployment infrastructure (#109)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Legacy-thread environment icon presentation coverage belongs to Legacy Sidebar. Evidence: The hunk exercises legacyThreadEnvironmentPresentation and its sidebar-facing local-label output."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"bdc605cf5c18179f2b5f941a64c51ae3baba07cc","subject":"carry(legacy-sidebar): feat(lastcode): standardize resumable Action reporting (#168)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/168"],"Carry-Upstream":[],"Carry-Observation":["Optional legacy/sidebar presentation of structured Action progress, including status-pill priority, popovers, and hover text. Evidence: PR #168 sidebar hunks only convert Action progress into sidebar labels, colours, tooltips, and controls."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fca3acbc0926c1f1e2663176c6d6f99d22789a90"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"42141625e72500c51344495466cf377a954cbfa7","subject":"carry(legacy-sidebar): fix(lastcode): carry project icons into legacy drafts","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar project icon behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/821835214c38550469c0ed276de8f142feaf9a28"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"826a02947d1755c2202cabd31a7096046b10ded5","subject":"carry(legacy-sidebar): fix(lastcode): clear obsolete settings lint suppression","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Settings import lint maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/380f49a1805f1d9fafddc509f6c87605cb70cbca"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d708cc484b245bb957c4c360e0104da0f4c264b5","subject":"carry(legacy-sidebar): fix(web): theme sidebar status and local identity (#188)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/188"],"Carry-Upstream":[],"Carry-Observation":["Sidebar theme, identity, and hover presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9c6fc07406ed740054aff567a616c9276d2151e5"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6033a3beb97222acefa0e8985c6a9517544a8437","subject":"carry(legacy-sidebar): fix(lastcode): reconcile nightly typechecks","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Legacy-sidebar draft and hover project-name repair. Evidence: Both hunks pass or render projectTitleByKey/projectDisplayName; they do not change Action behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"acd337d250c264ae58869ef018ab71cd1bf4c291","subject":"carry(legacy-sidebar): fix(web): restore sidebar in-flight state after nightly rebase","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Sidebar in-flight state presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/1f85c6c1e9a2eff43e2aca46213ca0c14c66643b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a780e50c903ededd6b456028d27b8bf14945588f","subject":"carry(legacy-sidebar): style(web): format reconciled sidebar selection","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Sidebar formatting repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: incubator
Carry-Contribution: {"sourceCommit":"11f888d75eb7449c0429a5ff7b0dbd5bda970e72","subject":"carry(incubator): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Separated from a mixed historical contribution by behavioral ownership."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cc9ba6aa7f235c42c25e48b242b64cea12602485","subject":"carry(incubator): feat(lastcode): import settings from T3 Code (#12)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/12"],"Carry-Upstream":[],"Carry-Observation":["Standalone settings-import capability without an owning essential carry group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bd131c31167d485c5ccc98fe16a6398a1648c932"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ff89da71bcec43c8f64dcbf61fa4f994e660e0a6","subject":"carry(incubator): feat(lastcode): add thread annotations (#50)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/50"],"Carry-Upstream":[],"Carry-Observation":["Thread annotation capability, persistence, contracts, and annotation-specific presentation. Evidence: The remaining contribution defines annotation state and interactions; the extracted hover component contains no annotation behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52f03065c5b642ffa054d815ded9ed28c5c5efdc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b47cc3e3fe4b97f4bac462c65090ec19ece8a5e8","subject":"carry(incubator): fix(web): keep annotation actions attached to dialog","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/aeeea4954879687dc15e66b05d6ae5cc259859d5"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"67cc385bec9a9eb23ad12a59e39533b1dd5897e9","subject":"carry(incubator): Revert \"fix(web): keep annotation actions attached to dialog\"","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Reverts annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fa11611c2e47cca48ee9a0730fb99aaf2e54c6c6"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7183a15901eb52939b5b085d1eb81631a480c883","subject":"carry(incubator): fix(web): keep annotation actions attached to dialog (#73)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/73"],"Carry-Upstream":[],"Carry-Observation":["Annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/475e810208efdd1a5271fcb7687159056ddb5863"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3d8c92c799fc7680d664593e510c195465c79a54","subject":"carry(incubator): feat(lastcode): add Codex thread tools (#52)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/52"],"Carry-Upstream":[],"Carry-Observation":["Codex thread tools are a separate capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d96a3e6b4aa675df2a2b0098fd719f5d23a353c3"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9c7b55f0fb7d24a9e968bfafbaf86836c7dbf5ed","subject":"carry(incubator): feat(lastcode): make worktree cleanup durable (#76)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Mobile thread-row cleanup presentation and the experimental thread-annotation interaction. Evidence: No agreed carry group owns the mobile cleanup surface; Thread Annotation remains an Incubator feature."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0b026d71fc1a4bc52b3c4ee52d17bcbd9b8d2e5d","subject":"carry(incubator): fix(web): dialogs no longer block clicks after closing (#86)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/86"],"Carry-Upstream":[],"Carry-Observation":["Shared UI dialog primitives, no owning group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/07c2966d5baad3e6624d3fb4621289698b974180"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2fb831f0f6b82395cbf95309e106916e49c8f063","subject":"carry(incubator): style(web): use warning color for annotations (#93)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/93"],"Carry-Upstream":[],"Carry-Observation":["Annotation presentation styling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/55bf565530762045987bd1728a84cb3a71018ef9"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"265bd4c85030a58ebb3d0bd7ccef52994a7e7173","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation migration fixture maintenance follows the annotation feature. Evidence: The only changed behavior advances the 048 annotation migration fixture; the annotation implementation is Incubator-owned."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2906b7a2c862ec32d946a1155547596196deaeac","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-tool correlation and annotation replay compatibility follow their Incubator features. Evidence: The 051 fixture and latestUserMessageId persistence support the Codex thread-tools send/wait contract from PR #52; the remaining field preserves annotations."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"69d6a070f137ca0ac722eff046a72242f952e756","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-tool correlation and annotation upsert compatibility follow their Incubator features. Evidence: The optional latestUserMessageId field supports PR #52's thread wait correlation and the annotation field supports PR #50."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"12c23689cfbb07b7394f751dbed71f7a4951928d","subject":"carry(incubator): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation migration fixture maintenance follows the annotation feature. Evidence: The hunk only advances the annotation migration test fixture after the checkpoint repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d09432afece5fba9206fe0d9509cdb0306d8efde","subject":"carry(incubator): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Turn-request correlation migration fixture maintenance follows Codex thread tools. Evidence: The hunk only advances the PR #52 send/wait correlation fixture after the checkpoint repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a6b8dc067f5500d62e70fd63e9853fbe4c879763","subject":"carry(incubator): fix(web): improve sidebar and minimap indicator legibility (#113)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/113"],"Carry-Upstream":[],"Carry-Observation":["Annotation minimap contrast and clustered marker rendering follow the Incubator-owned annotation feature. Evidence: These hunks exclusively restyle and test annotation markers in the message minimap; sidebar indicators and their settings remain Legacy Sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/84380d167b0c6c09be7376e5328506ca4e2c5d87"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1202adde292e6d00cf8acfbf73de98c567040b51","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Adaptive cleanup-state colours follow the Incubator-owned mobile worktree-cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1407441d4f9d5b00c88199707fb02ed80a30336f","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Adaptive cleanup-state colour declarations follow the Incubator-owned mobile worktree-cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"abddc08a7977b330c1cabe46b5bd9200caf6017f","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Cleanup failed, queued, and deleting colour conversions follow the Incubator-owned mobile cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"59cdf5258cba62f6e5068617dba6ee14839b6b3d","subject":"carry(incubator): fix(web): make annotation post-it readable (#121)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/121"],"Carry-Upstream":[],"Carry-Observation":["Annotation post-it presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/62bd601b1e2c94eb94c6ed66233517f5ffb2337a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f49064aa1c325f96d97f7d78432491c3d39f7e86","subject":"carry(incubator): feat(web): identify cross-thread agent messages (#169)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/169"],"Carry-Upstream":[],"Carry-Observation":["Cross-thread message capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e0e20051ae6e3d782f1daf8e82d697cceb465f5c"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2f70545896915e687f5b28f81fdada37ad06da12","subject":"carry(incubator): fix(web): keep thread annotation typing responsive (#173)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/173"],"Carry-Upstream":[],"Carry-Observation":["Annotation editor responsiveness."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/286ca605790d31628861468caf474a8ebf60ba38"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"416eb1b64c8d3b75d4e9a5fa5bbce4f8baf4cdf0","subject":"carry(incubator): feat(lastcode): safeguard persistent threads (#178)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/178"],"Carry-Upstream":[],"Carry-Observation":["Persistent thread product capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/94389c9600931744389cd12691e5645831a3a12d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"efdb15c1f90d160f4936f53f39e6cffc1acf6c61","subject":"carry(incubator): feat(lastcode): integrate resumable actions with composer stack (#180)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/180"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation composer-banner integration follows the Incubator-owned annotation feature. Evidence: These hunks move the annotation post-it into ComposerBannerStack while preserving edit, resolve, dismiss, and pending behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9a2fc4d9716475a574aa9bf8eec79bced3e457bd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6966d2c403767b516b6363d58e3a9b705ccd649c","subject":"carry(incubator): feat(lastcode): integrate resumable actions with composer stack (#180)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/180"],"Carry-Upstream":[],"Carry-Observation":["Separated from a mixed historical contribution by behavioral ownership."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9a2fc4d9716475a574aa9bf8eec79bced3e457bd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"24df2793585aa5448f3c7b8eab77adfd7c7713f4","subject":"carry(incubator): fix(lastcode): reconcile nightly 1256 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation timeline coverage follows the Incubator-owned annotation feature. Evidence: The changed assertions belong to a test introduced by PR #50 with the annotation minimap and its top-fade interaction."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f8418eb9c9b87164768bff5f2f0bf1e0ec886e6"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"60f24c6960a968c226f1d91b75f128e6b27abcad","subject":"carry(incubator): fix(lastcode): format nightly 1256 revision","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Electron protocol coverage follows the Incubator-owned LastCode desktop identity feature. Evidence: The format-only hunk changes a test introduced with the LastCode protocol and brand identity; it has no checkpoint/tooling behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9169a9791ec5add68e31ea59f472f86f32de609f"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"446e321f290b637fef6e0cf3f5d88bb821a16b3a","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation fixture reconciliation remains with the annotation feature. Evidence: The path's two-line reconciliation only changes its annotation migration fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5307f08b19b94083a44e43ed801261dfd256d844","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Correlation fixture reconciliation follows Codex thread tools. Evidence: The path's two-line reconciliation only changes the PR #52 send/wait correlation fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d17b547cccfa6d47a3c7dd6f46ba717068c37735","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Feature-specific migration and UI reconciliation follows the Incubator features that own these paths. Evidence: The 055 and 056 fixtures belong to cross-thread message provenance and persistent-thread safeguards; the UI import cleanups affect annotation and cross-thread-message code introduced by Incubator contributions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8ef35cea5ba323a9be5f1d7ea91baab870b8efef","subject":"carry(incubator): fix(server): preserve latest user message identity on replay (#182)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/182"],"Carry-Upstream":[],"Carry-Observation":["Server message identity behavior; no existing group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a292664c7b7344950cea6a7c7e49425e44afd388"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c9bcdd87cc26f3ed62ae781a9ee3f9207d244f32","subject":"carry(incubator): fix(lastcode): clean replay migration fixtures","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation fixture cleanup follows the annotation feature. Evidence: The deleted duplicated replay fixture text is exclusively in the annotation migration test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b90161fdc1923a750d7e73b95e40767d1d1f565f","subject":"carry(incubator): fix(lastcode): clean replay migration fixtures","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Correlation fixture cleanup follows Codex thread tools. Evidence: The deleted duplicated replay fixture text is exclusively in the PR #52 send/wait correlation migration test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1481e9059ccc0f3527cff8ec57b539b5df797941","subject":"carry(incubator): fix(lastcode): carry attachment types into mobile previews","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Mobile attachment preview behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ae64ed8f9420b128677c80f1adfe2cad4d7eb274"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"70f0bc747510087db74c8d3ab5c70e52351fa1b3","subject":"carry(incubator): fix(lastcode): keep local update builds reproducible (#183)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/183"],"Carry-Upstream":[],"Carry-Observation":["Thread CLI source-context isolation follows the Incubator-owned thread-tools feature. Evidence: The hunk scopes source-thread metadata and wait self-rejection inside the CLI introduced by PR #52 and extended by the cross-thread-message and persistent-thread Incubator contributions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/6daea8ef0de1c9df9e28b9f90407643d40e7b9e9"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fdd705bfb158754b03db0d036347e4a55af70c08","subject":"carry(incubator): test(server): preserve settlement activation gate (#185)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/185"],"Carry-Upstream":[],"Carry-Observation":["Settlement activation product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52d2b539668e206f104948e6d66600b5d7ce994c"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"24b45b9de1226d798054612b81ca1318c669f4ab","subject":"carry(incubator): fix(server): canonicalize Antigravity file paths (#187)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/187"],"Carry-Upstream":[],"Carry-Observation":["Provider path correctness is upstream-worthy portability. No upstream pull-request provenance is recorded in the source."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/91b12bd3f0f6493f4ce6fe9cd7b8cf491a51b509"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"385a9b944addf1c69ac89b1286ecfef44ceca8ce","subject":"carry(incubator): feat(lastcode): add adjustable larger scrollbars (#190)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/190"],"Carry-Upstream":[],"Carry-Observation":["Cross-surface appearance feature."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e5237a1fe84d707fef14eb469f8a45bb04da9689"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0ab21149bd496008529e478c1d368c40ccbe4177","subject":"carry(incubator): feat(threads): show pending agent questions (#191)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/191"],"Carry-Upstream":[],"Carry-Observation":["Pending-question attention capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c6767c5c1b53b93f057e6dbeb6b4467ad3485a45"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3e21f089097e2cb17ed9bbc0b3833957b14454c0","subject":"carry(incubator): fix(lastcode): reconcile nightly typechecks","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Cross-thread agent-message formatting follows its Incubator feature. Evidence: The indentation-only hunk formats AgentMessageTimelineRow branches introduced by PR #169."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e5f7563f643bc152bfe143c54810a45019191b40","subject":"carry(incubator): fix(lastcode): preserve annotation task controls after replay","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation task controls product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/aea8005a5c3ca42aa16e67cb0cf0e35853aa2605"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b78d8acbae7320166334343c28a9edaf3fe186c2","subject":"carry(incubator): fix(lastcode): preserve provider thread context after nightly replay","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e49721a1ace785d285169dd5b8e89c6297e9b8d2"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8b1aa58db6ff93d78920a32706861033dd87943a","subject":"carry(incubator): fix(lastcode): format checkpoint recovery mock","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Thread-attention coverage follows the Incubator-owned pending-question feature. Evidence: The hunk only formats the MCP handler test introduced by PR #191."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ecf602b25c9256b5dd170c67fcd69d410aea2bfb"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7112f43559bc42845dc4044de02ca7bf67b3870f","subject":"carry(incubator): test(server): cover recovered provider thread context","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4ba5e4de7300b2ad4b366a8da9fc5d6b6c08df9b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b09e09d5081a0f3c7b557698b99ff3bdc0cbd6f2","subject":"carry(incubator): test(server): type recovered runtime context fixture","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context test fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/43c0c714b57b65d51b3787999cec235b60c321cc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d0fa92210843f229314b706f6be456f620619d8b","subject":"carry(incubator): fix(lastcode): repair annotation display and editing (#189)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/189"],"Carry-Upstream":[],"Carry-Observation":["Annotation display and editing capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/6c4e502b65e0b39039d9fcc02a470624bb858329"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4ba5073af76a03932ffb55579bab190a1df4c6ac","subject":"carry(incubator): fix(desktop): pick annotations inside same-origin iframes (#192)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/192"],"Carry-Upstream":[],"Carry-Observation":["Browser annotation capture capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/67ff1143d5e1982b1f4abcb821ea781669b6999e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f46ad24a1c91c23c3c5f71e7d1ad84f54cba8a49","subject":"carry(incubator): fix(server): return terminal history text after nightly rebase","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Terminal history behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/135d3d0f3ae22b3e8fb8aa5cfec8eaae9fdd2b7b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c4f2d71e064149356e0ebe2247666cfcebf4d2f8","subject":"carry(incubator): test(server): make local build fixtures portable (#196)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/196"],"Carry-Upstream":[],"Carry-Observation":["Provider test portability is upstream-worthy. No upstream pull-request provenance is recorded in the source."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e1badc5cb231f6babcada2e17ab2d1cacf47e7bc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f1dc4a82aee875d6c5939d946d6d75134a01604","subject":"carry(incubator): fix(desktop): capture same-origin iframe annotations reliably (#198)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/198"],"Carry-Upstream":[],"Carry-Observation":["Browser annotation capture across desktop/mobile."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/93ccbecb0977abae25a9739e57cec4d6cbe441c4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"63b2f3ea05445e2cb5cc91617b239ac1029489f8","subject":"carry(incubator): fix(mobile): use current duration formatter for working row (#199)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/199"],"Carry-Upstream":[],"Carry-Observation":["Mobile thread presentation formatting."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0b29e6523e510323b925596dc42dc179f7730bf0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9c6ecb9148fb99cd82ce229f05801203f198ce65","subject":"carry(incubator): compile surviving shared release guidance","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Synthetic bootstrap-only shared-guide slice; docs/lastcode/nightly-workflow.md: 20 surviving lines; docs/lastcode/release.md: 0 surviving lines."],"Carry-Evidence":["4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b; frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"240d3c552ecefac40380105347728655954bc968","subject":"carry(incubator): handle aliased scanner exclusion roots","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/206"],"Carry-Upstream":[],"Carry-Observation":["The server scanner recognizes both configured and filesystem-resolved sandbox roots so an aliased configuration path cannot expose managed worktrees as importable projects. Its focused regression test belongs with that scanner behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0a95a19d07801c1173a6ad182b70e2d879a4985e"],"Carry-Applies-To":["upstream f8b4c46 (v0.0.39-nightly.20260905.1290); historical source 42e0e48"],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: tooling
Carry-Contribution: {"sourceCommit":"08f6973dfdca692a18c2f34d6c040c31f3b097c1","subject":"carry(tooling): document fork evaluation conventions","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/b395cfc734c2e505f7b7e23fefd005a3d530ad9b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b50ef10425fee54a114f76388abd20de13cd4c75","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly-sync command registration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"32526962a05a7c84266a425a58f50abbbdb0d9a9","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly source-tracking guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f4e928c74e765680867215d37880791e28fe544","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e7e7e51204f1a6120693f3115a8348be21a823ca","subject":"carry(tooling): Add LastCode plan and PR review skills","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/8a60d13faa5b87ff669b426361990ee0b4ccf6b3"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d71838a6f8507c044e35b2aa83c2af11d5cf6a23","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, checkpoint-service, and merge command registration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"46649b79c975002925af314dd71dc022922e1ca1","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint creation, recovery, promotion, and service-operation guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"994c7d784ed6316d969f792292ef8e0e51468fca","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Nightly-tracking reference, runtime identity, and local orchestration guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"da34807d9c3948790a0b7956f46c662e2de5351d","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"de8b3f09a005cb7b0a9265eace5e42ceee35317c","subject":"carry(tooling): fix(release): create checkpoint worktree branch (#2)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/2"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bf49a89a847ba495076c71c395194bdc342279a8"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5e790ea3e0beffbb6813f9fab23b278d5abf755b","subject":"carry(tooling): fix(release): isolate checkpoint smoke runner (#3)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/3"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/40c613b75193dfaeab3e8d25107f08a35f17d9a4"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"946269e9b272c1d7cfde43fb3bd2d49fe0708c0d","subject":"carry(tooling): fix(release): provision nightly service worktree (#4)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/4"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/217560dd91515ed8f00720a7df9507a71071e9ac"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"15944f05e40b95f9763b033563a13ddf3f001194","subject":"carry(tooling): fix(release): bootstrap checkpoint dependencies locally (#5)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/5"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/407dee55370022a5647ae404207b2d22dbc51c59"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7285083370982ecabb3dadc688b205569977eae1","subject":"carry(tooling): feat(release): add checkpoint dashboard (#6)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/6"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/7d3cf7397aa321b0c591c3afbb2d3a32b0327aab"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7e4df1e28077022a4aacb11e65cec661b4615435","subject":"carry(tooling): fix(release): avoid duplicate checkpoint tag CI (#8)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/8"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fecef09c3975834160640d7891da0d3cb0ea6d1e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0bafcf129154615b8020d5150e365e7e700550f0","subject":"carry(tooling): fix(release): retry published checkpoint promotion (#9)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/9"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/119973cf3bbd064d25fc8545c31d601c3273d8bf"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e5209a2a0258a77b57b4c8bd8c677b1fa817541f","subject":"carry(tooling): docs(lastcode): define contribution workstreams (#10)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/10"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/dcb4379d7e822e0fee18cc054f7b108ea4192511"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"abbd722e028917d51ae0ce025c5e63e80820b087","subject":"carry(tooling): fix(lastcode): stabilize local nightly updates (#14)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/14"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint recovery, promotion, service, and dashboard-operation guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5c99904dadcdd1cf44f3bae80c081f50c4c77abe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ad1cf74a6b4ae27427a2a0740f62415c362a204f","subject":"carry(tooling): fix(lastcode): stabilize local nightly updates (#14)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/14"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5c99904dadcdd1cf44f3bae80c081f50c4c77abe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"acaeacdd84f1e85ca5e08c43573b8513856a2466","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Revision creation, recovery, references, and checkpoint promotion belong to Tooling. Evidence: These hunks extend checkpoint orchestration from checkpoint-only state to ordered revisions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e72738d6d80d3578e1baf1edfffc3d023af6e115","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["The merge handoff's checkpoint-daemon request remains Tooling. Evidence: Only this hunk asks the daemon to publish a revision after a completed merge."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9858423e46459caa51600182b6d90ebcb7cb76b6","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Revision lifecycle framing belongs to Tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f2e790938a48588cfe000d377931b617b25f128","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f4f6033cc2730068b3e4246098364e6f8ce1c315","subject":"carry(tooling): fix(lastcode): validate daemon pushes before connecting (#17)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/17"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a75a3295fb10fd6733a65e4292667b668da1b4a9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"173e9186a55db6bbbb6510d72dc54bbf0aca5bae","subject":"carry(tooling): feat(lastcode): show local nightly build activity (#25)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/25"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c4c8e9a395c16f58ec8a148149d3e54cb121f7fe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e2e61a08194fec95b45e57792652f081595bfc48","subject":"carry(tooling): feat(lastcode): add upstream PR import skill (#27)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/27"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/730e934971fee80c1dda117519ff74b5823a7a5f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e04399d1f3b6cedb578394fdc0e1f6eff0111983","subject":"carry(tooling): feat(lastcode): add personal setup bootstrap (#37)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/37"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/645917073a28747e9fa364d70a6164ebde41b48b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"881b1389ec9a40ecb33bad124dfd9cc0a785341f","subject":"carry(tooling): fix(server): lease Darwin server ownership (#57)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/57"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c42208596884dec2678b8afa8918a69ca7fbe6bb"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7c37ac8b5f04d5877b2b83ce18ed95835383f066","subject":"carry(tooling): feat(lastcode): add durable remote update drain state (#60)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/60"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/db6d3b9dedab7df287bc72e9163a0104edd92ec9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6756c86f7e849831224a84e87aa80472baa18b69","subject":"carry(tooling): feat(server): gate work during update drain (#64)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/64"],"Carry-Upstream":[],"Carry-Observation":["Durable update-drain operation, persistence, terminal gating, authorization, and release operations. Evidence: These paths define the drain lifecycle and its durable command/receipt infrastructure rather than Action behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e5f50b65f6785b84d791be4b801292238c3fb8c6"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c7773ff356bf89461e6f0c033e569886ea5d4aff","subject":"carry(tooling): fix(lastcode): deduplicate reconciled contract import","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ef2a3a47bace8477605aa6d173f6d084ee1d6f3"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ac7512bf821c37a6f6ca3b6de740ecbc5623b43c","subject":"carry(tooling): fix(lastcode): explain checkpoint rebase conflicts (#67)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/67"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d75b690c043c6c841c7051df3b0da7c4d23c979e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7d3d081d457bc09790aca6092c7200be38313c1d","subject":"carry(tooling): fix(lastcode): wait for active checkpoint recovery (#70)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/70"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c7c8339f06ce2193ad05d1fb758f713e9ee46214"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ce1702b0eea10aa20304132a4c92816d74691f02","subject":"carry(tooling): feat(lastcode): update managed server on its configured schedule (#81)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/81"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f13011efa84a50bef50e38758bd60f96b358abee"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"66fc535cbfca92a5cde12d5b205f54e40b656f35","subject":"carry(tooling): feat(lastcode): make worktree cleanup durable (#76)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Durable worktree-cleanup state, deletion reactor, VCS retry, command, and contract implementation. Evidence: These hunks define cleanup persistence and recovery behavior independently of its presentation surfaces."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e7ff623e4465de97c94bbbae286941f081027992","subject":"carry(tooling): fix(lastcode): describe nested vendor gitlink (#83)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/83"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a1ef4ba683b76c622ee5971d652fe9520fc1c66"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2ea240ee575d98be7528939eaa0b9d4115e8e392","subject":"carry(tooling): fix(lastcode): repair nightly promotion after replay (#89)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/89"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/47b5a372a0cb0562c1b506f7e1cc649ee2cfc293"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"902cb01a6b890d31c7bceecea8236d8a9ab2fa46","subject":"carry(tooling): feat(lastcode): run managed server headlessly (#90)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/90"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f057bb00849df8a9b6852aee2de2f19a8cb9885b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e2c9440d78272c0f0558a9968a16607e695f4982","subject":"carry(tooling): fix(lastcode): retry headless readiness probes (#94)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/94"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c7dda8c9e52d1f6200f975c6bc2d30859b091899"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"606dd068b5590d3ba4cc3a0ad06906495ecd1cb9","subject":"carry(tooling): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint migration replay maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e14486d84cdabed1cd738b65289092ac02f0d2ba","subject":"carry(tooling): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint failure reporting and service maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a9390bdd0c46b77303d186911883e18f4907bf58","subject":"carry(tooling): fix(lastcode): keep replay fixtures forward-compatible (#105)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/105"],"Carry-Upstream":[],"Carry-Observation":["Replay fixture maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4c07357b47e371a96d6aebb7259a5676753e5be9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7f94d7095969f34a9f09430efd3f7b5664c951e8","subject":"carry(tooling): refactor(lastcode): separate deployment infrastructure (#109)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e14c51bd78fbdd94e523273c0480fe92036e9a05","subject":"carry(tooling): fix(lastcode): remove deployment-specific infrastructure details (#116)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/116"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint-service wording and topology-neutral deployment primitives belong to Tooling. Evidence: These hunks describe release orchestration and environment-neutral deployment composition rather than producing or validating an artifact."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a36a736fb8d32b0b6b468a346ee00d431698d08"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d8778bc51ff8c5101b51af40e8616144157b5cff","subject":"carry(tooling): fix(lastcode): remove deployment-specific infrastructure details (#116)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/116"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a36a736fb8d32b0b6b468a346ee00d431698d08"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"12a7d260043671fc9ac528416666df531f032046","subject":"carry(tooling): fix(lastcode): silence absent checkpoint service (#118)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/118"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/004722575f86b31c9610514707bf71a27626e719"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4e65508273afbfff6c00907ab23ff0785bcdaa73","subject":"carry(tooling): fix(lastcode): finish checkpoints safely (#119)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/119"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/373878ffad42b4eaae6903ef5c302efe0032217f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6b8e557ee69e4fd32ea25e822da26a658ff63991","subject":"carry(tooling): fix(lastcode): validate checkpoint lint before publish (#120)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint lint gate and service scripts."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"56c3fcd3e0c830571318f2cff320412bb1e5c1a4","subject":"carry(tooling): fix(lastcode): keep checkpoint freshness current (#139)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/139"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/71f4104371ffa557a903a0e791e630da5bf1a297"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cbbd1e7741554a94519815d3b2873cf851decc6e","subject":"carry(tooling): fix(lastcode): keep theme replay smoke compatible (#140)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/140"],"Carry-Upstream":[],"Carry-Observation":["Replay smoke compatibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f2ef9b3c5489413af42d46679315dc95a4a2a9c2"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1f2455eb195c476c9fe0b3c980c739ad4a173f4d","subject":"carry(tooling): fix(lastcode): include remote checkpoint tags in status (#142)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/142"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/233b1ae1ee1212351117f16497d9c86343dbb8ea"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3a59b470e62066043070bd2095b5e3e5c5126b8a","subject":"carry(tooling): feat(lastcode): inventory downstream carry set (#149)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/149"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/278445fada2399bdfc056d35c548e5059f394daa"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5e9232ecae59252a092827138b93cf3fd5bfc442","subject":"carry(tooling): feat(lastcode): add public docs feature registry (#167)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/167"],"Carry-Upstream":[],"Carry-Observation":["LastCode public documentation tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fccaf4ecbf4165cec8947f0b14de41d071ed8851"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f8d8288fe0b407193ef94dca955461b3e016bd23","subject":"carry(tooling): fix(lastcode): skip superseded checkpoint recoveries (#166)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/166"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e727f507b84321e9e35fc815a6aef2e953149172"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2f1c9fb594247ce1b333580d737eccb8a5083717","subject":"carry(tooling): feat(lastcode): add public docs fixtures (#170)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/170"],"Carry-Upstream":[],"Carry-Observation":["Public documentation fixtures."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/be4dfff50979a13be1c2bc1493d392a32de257fa"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2790665ba1e730e0abef2a7e0f996b55f89c9626","subject":"carry(tooling): feat(lastcode): shadow-check checkpoint carry sets (#171)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/171"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c604b14d812a904ba64ce41f6e98c74985cd4e9f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4cfcf67f7f012baf28f7c0fc467c06b94f673b9d","subject":"carry(tooling): fix(lastcode): typecheck checkpoints before publishing (#176)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/176"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint pre-publication typecheck."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bd13a1ccdb354301654ffd6cf14e8cbcdabfb861"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"66d8c2e79bcc3c27c6231d7febef1d71aeca8994","subject":"carry(tooling): feat(lastcode): reconcile managed project actions (#174)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/174"],"Carry-Upstream":[],"Carry-Observation":["Project action reconciliation and service orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ffe7eaed597b2ff7065f0f2ee163c516c2cd1c4b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f872def2b0787dc802aa9d1df756d2fbf81cf73a","subject":"carry(tooling): fix(lastcode): keep docs fixture commands live (#177)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/177"],"Carry-Upstream":[],"Carry-Observation":["Documentation fixture command maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9f3924cad6a0c30029a5058dc09745410637b942"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"14d5735b50fe46f4714ac82c4962481442f18dcf","subject":"carry(tooling): feat(lastcode): safeguard persistent threads (#178)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/178"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/94389c9600931744389cd12691e5645831a3a12d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b754de22a3e4e632908a6b98b692e29ed9e8d000","subject":"carry(tooling): fix(server): combine CLI environment test layers","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["CLI test layer maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/781e7c5031e26150eacc5a235e40d6e5ec215233"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a12d0bca5e890283f9728dbc3742598bff69a83d","subject":"carry(tooling): fix(lastcode): reconcile nightly web tests","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Format-only settings cleanup with no Action or sidebar behavior. Evidence: The only useSettings hunk deletes a blank line; it has no feature owner and remains Tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74b09f641067199195272daf129b4c3dd5196a15"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"893f21c6107fd699676c04e7854aae856995ac00","subject":"carry(tooling): fix(lastcode): reconcile nightly 1253 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly integration repair spans updater and service tests."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/dc4f6dec7a783c9531aaeeb6270ecc85e5bec799"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2e23ea9eacd7e6ffef32eb78d894be924e13bb10","subject":"carry(tooling): fix(lastcode): reconcile nightly 1256 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Mixed nightly reconciliation repairs with no shared product owner. Evidence: The remaining hunks remove an obsolete model seed and renumber a migration fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f8418eb9c9b87164768bff5f2f0bf1e0ec886e6"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"76acc15a59587f1e81bcb94b610062e82b35a10a","subject":"carry(tooling): fix(lastcode): reconstruct renamed carry-set paths","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Carry-set reconstruction tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb2b9fbc698775b92471d6c7c7b2d92c7474832e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9d29c2bf71f2dd8f8ed3cfef3f313065e8f50e51","subject":"carry(tooling): fix(lastcode): reconcile nightly 1262 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly integration migration and UI repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0304b910fa7dc1c592588caf8bf46cd1a3e38c39","subject":"carry(tooling): fix(lastcode): clean replay migration fixtures","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Replay migration fixture cleanup."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8c626ffd49b0f7d196c73e2dea314c9781242a8c","subject":"carry(tooling): fix(lastcode): align checkpoint smoke with replayed tree","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint smoke and managed checkout maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2b18f50d5d320f3888db1d72312dbc2cd7f13c1e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c542e5f49fe343749dabe96884fef9b2fa038812","subject":"carry(tooling): fix(lastcode): reconcile nightly typechecks","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Server test-harness repair. Evidence: The remaining server hunk extracts a shared test layer and has no feature owner."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e03889de8306df08ba2f5b38eb3df8707c17ace0","subject":"carry(tooling): fix(lastcode): reconcile nightly formatting","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly formatting repair in a server test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/30d2513b98114564bf62a25d026cdcf71d234b33"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"60386b06fe16f34248f8ad2ad38cf02d2a7d6e76","subject":"carry(tooling): fix(web): update file save test import after nightly rebase","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly test import repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0c10ddd13e4470e1e96d8fe35c9de1a217b2d074"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3c862d17bd3d10313a2de7380576e754c474daff","subject":"carry(tooling): fix(lastcode): resume maintenance waits without agent polling (#194)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/194"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/77a8cdc5eed130628418671f7ba361b6fa4fb87b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e03effd20aa55a5e4a3b9a8922f98c69ffc3ae13","subject":"carry(tooling): fix(lastcode): recover revision provenance across nightlies (#195)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/195"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint revision provenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/13a66dfe35f8e80ff96de2aae21a80e35eaf4067"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1b1c0dda9eab6a808fb493d3176946e91eb5fbdb","subject":"carry(tooling): feat(lastcode): resume threads after local package builds (#197)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/197"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f7348c54703d8e107ecdf693b477c923cb7f137f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e4f4d7a22811faf04abb40f21955f31117d31a21","subject":"carry(tooling): fix(server): align nightly import tests with LastCode services","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly import test compatibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5d76ad48ac5b06a56af25f993348ed39371e870d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b2ab02a7e9860ba04328ca98a7ad9d9fabf9f451","subject":"carry(tooling): feat(lastcode): resume repaired nightly checkpoints (#201)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/201"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f90115b9bda253c98d7d5db6abedc41ff046559"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c2d90798c8b1179f7daaa184cc276db81a0a2aab","subject":"carry(tooling): compile surviving shared release guidance","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Synthetic bootstrap-only shared-guide slice; docs/lastcode/nightly-workflow.md: 396 surviving lines; docs/lastcode/release.md: 152 surviving lines."],"Carry-Evidence":["4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03; frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"47a8148197545734eb9ce985065a4b4151455b6c","subject":"carry(tooling): retire obsolete checkpoint alerts after recovery","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/208"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint supervision retires queued alerts after a successful recovery, preserves uncertain delivery recipients, and keeps failed-run retries. The operating guidance and focused supervisor coverage belong with the checkpoint tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/42e0e48674ed661ddf49adebc0769d90d458ee66"],"Carry-Applies-To":["upstream f8b4c464b4760d73e0ece7e68011c738803d8b69 (v0.0.39-nightly.20260905.1290); historical source 42e0e48674ed661ddf49adebc0769d90d458ee66"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e25abe7f1beb29ab2e4b68d74a55e9ec7bec29de","subject":"feat(lastcode): implement compact carry replay foundation","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Implements replay and source retention; bootstrap activation and full production lifecycle proof remain outstanding."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ddad73b14eba13523b333f0b1567192c5143846d","subject":"fix(lastcode): preserve historical carry bootstrap","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Synthetic lifecycle coverage now preserves a latest historical checkpoint baseline and its represented main tail; live production acceptance remains separate."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0c128b3d754fb2cd7abf06cc35c0d71e9df05667","subject":"feat(lastcode): validate carry ownership in CI","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":[],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9bc9ac33f22187d525aafc34250c288eb6a375ad","subject":"fix(lastcode): isolate carry replay from rerere locks","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Automatic rebase does not inherit rerere writes; retained conflicts remain available for explicit recovery."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7094216b3ef1b000a1f06306ecde6d2ddcf29da2","subject":"feat(lastcode): activate six-group carry replay from verified revision","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["The bootstrap preserves the complete immutable 1290.1 tree while separating six ordered owners and retaining descriptive fix evidence. Historical replay remains an explicit rollout escape hatch until the full production lifecycle is proven."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/releases/tag/lastcode%2Frevision%2Fv0.0.39-nightly.20260905.1290.1"],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"40c21e575aaa6247a09750213f26a116eb937222","subject":"fix(lastcode): retain prepared compact provenance","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Prepared compact bootstraps preserve validated nested contribution metadata when recompiled."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"829a014771eb0745acb093605e72839aaa3edd7c","subject":"fix(lastcode): fetch carry activation refs for checkpoints","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Carry activation and later checkpoint runs require remote-only retained source commits and the immutable prepared bootstrap partition."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts remote-only carry ref lifecycle"],"Carry-Applies-To":["carry replay checkpoint activation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"13948c94f34663ac146e49a9990f0d6d406733b2","subject":"test(lastcode): keep carry collision fixture on source branch","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["The checkpoint lifecycle fixture must run from its LastCode source branch so remote bootstrap fetching does not read the repository's production manifest."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts full three-test lifecycle"],"Carry-Applies-To":["carry replay checkpoint activation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"00148cefac51ffa1d8f73961b327bab2a39fecc2","subject":"test(lastcode): isolate historical rename fixture configuration","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Historical reconstruction coverage uses its own manifest so production carry activation cannot change the fixture mode."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"47b28d233b70fb902548ac831c692f9e47b2647e","subject":"fix(lastcode): validate advanced carry squash bases","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["A carry squash may follow a base advance only when Git reconstructs its exact tree from the reviewed base, advanced parent, and immutable source head."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ea133798d8701e48fe40742884ae7f3368709d08","subject":"test(lastcode): make carry lifecycle fixtures self-contained","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["The checkpoint lifecycle fixture belongs to Tooling and must run from GitHub Actions partial checkouts without lazy object fetching."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts full three-case lifecycle with GIT_NO_LAZY_FETCH=1"],"Carry-Applies-To":["carry replay checkpoint lifecycle validation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f66ba6040c860449493330dc649a0c1bdd3d409c","subject":"fix(lastcode): honor rollback and retain bootstrap failures","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Explicit historical rollback must publish its mode and reason, while carry bootstrap failures must either clean proven-retryable publication state or retain an identified recovery branch."],"Carry-Evidence":["scripts/lastcode-checkpoint.test.ts and scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["carry replay checkpoint revisions and initial bootstrap publication"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"32bb0d34f0bc76ff3a8661cab82433e68fc95529","subject":"fix(lastcode): record failed bootstrap cleanup","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Failed bootstrap cleanup must still leave an actionable recovery record, and explicit historical rollback must publish its requested metadata."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["initial carry bootstrap failure handling and same-source historical rollback"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6836d255ba8470c6f92f39709aad90d6e3824ee8","subject":"fix(lastcode): retain same-file historical repairs","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Historical replacement candidates must match Git’s exact merge of the previous checkpoint and current source, including separate hunks in shared files."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"966e11dee89d86711624a5944744076d9f301fc6","subject":"fix(lastcode): keep recovery previews read-only","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Previewing a retained recovery must not complete its plan, rebase its branch, update refs, or record a selection."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["dry-run recovery selection for persisted carry replay plans"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cc9ef26673897297a6cc599eedce5526cf9c814e","subject":"fix(lastcode): validate shadow checks by published replay mode","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Immutable tag metadata selects historical reconstruction or compact validation independently of the current carry configuration; legacy tags retain historical validation."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: legacy-sidebar
Carry-Contribution: {"sourceCommit":"ae773fe2a7268594fe49f2813649cb74d06534d4","subject":"carry(legacy-sidebar): fix(lastcode): use LastCode project icon (#15)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/15"],"Carry-Upstream":[],"Carry-Observation":["Project icon configuration supports sidebar identity."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/080586bef5d1edb66abeafe9bbc40737238b0e23"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"67b24c77989c78c0eefa4bced628efcdcce52c29","subject":"carry(legacy-sidebar): feat(web): toggle sidebar mode with a keybinding (#23)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/23"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ca68cb7e8e1c8ba78254a7cd406f97ca4687c6ab"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"760aef5ea069979b30a1de6f45a1e7b0aaee45b6","subject":"carry(legacy-sidebar): feat(lastcode): resume agents after opted-in Actions (#28)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/28"],"Carry-Upstream":[],"Carry-Observation":["Optional sidebar Action status, terminal-open/cancel controls, and their sidebar-only tests. The Action lifecycle and MCP/orchestration contracts remain with Resumable Actions. Evidence: PR #28 sidebar hunks add the Waiting pill, Action popover controls, and desktop running-count presentation only."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a4224354633307a3c934f4e6d6b90f602985a47a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8da727f0e224c7584e2a79b95bc37b136a44e0d9","subject":"carry(legacy-sidebar): feat(lastcode): scale legacy sidebar (#32)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/32"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c36677746e78c72371a30f4a3517f6b28f07f385"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1bc86c26c8a4734f2a089440c6182d171e5fee2d","subject":"carry(legacy-sidebar): fix(lastcode): keep legacy sidebar icons full size (#35)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/35"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/791c9bab48d06ca6f61bab0590149bd7236d0c74"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fcac521cc831a210ca1ef1208661b33b9c7d9204","subject":"carry(legacy-sidebar): feat(lastcode): make project icon rounding optional (#40)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/40"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2d7c0871cfb9048469aafd297ea10d03ad9f8553"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b560d7bc06acd9b4d447a1ee819e4447238de80f","subject":"carry(legacy-sidebar): fix(lastcode): keep sidebar metadata full size (#42)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/42"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0be17993e73b50254940b7bb75babe6bb6d18a7e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3d34dcf96214bf522ecfd0de41df9e7572c3259b","subject":"carry(legacy-sidebar): fix(web): align sidebar toggle keybinding label (#43)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/43"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/cbb165caa0232e865377bd4980058a47951665b7"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9d62a53b99981e3e3a7b39b2840ccaec29f32a0e","subject":"carry(legacy-sidebar): fix(lastcode): align remote sidebar metadata (#44)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/44"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/67d93a2df5904bea81c463a0059fc7d19cfa873d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1b9520436cac0a3cee00d0674e27c24dd4e1e7f9","subject":"carry(legacy-sidebar): feat(lastcode): add thread annotations (#50)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/50"],"Carry-Upstream":[],"Carry-Observation":["The reusable legacy thread-details hover component belongs to Legacy Sidebar. Evidence: Although introduced beside annotations, this standalone component renders generic project, environment, branch, provider, terminal, and error details and is subsequently extended by Legacy Sidebar hover and cleanup fixes."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52f03065c5b642ffa054d815ded9ed28c5c5efdc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ff599416c5a923cd2b7d1c52f2626fa1fbcaa2eb","subject":"carry(legacy-sidebar): fix(web): make legacy thread hovers consistent (#75)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/75"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fc769752c422beca2a6f0766e97677ba97e0e8cd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0cf9ff0c0200d7aa9d8715d6d8abc5261304d3cb","subject":"carry(legacy-sidebar): feat(lastcode): make worktree cleanup durable (#76)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar cleanup status, retry/keep controls, dialog, hover state, and user guidance. Evidence: These hunks render or invoke the cleanup recovery actions from the legacy thread sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b1cc74e12ccaed3c004e68b610d2457037752175","subject":"carry(legacy-sidebar): feat(lastcode): customize environment icons (#91)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/91"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a370244e6e885580bdf5ab6f2ad463e8603bee83"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"321162f6f3c7da0ea78b099f481cfb0d3d84bedc","subject":"carry(legacy-sidebar): feat(web): add compact status indicators setting (#96)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/96"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/33784dad67329ea4866ef40c2dcbc4ac881503df"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"993ced5dc59a374db4914107b6032cbb8a38a8ed","subject":"carry(legacy-sidebar): feat(web): add worktree indicator preference (#100)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/100"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/465b75a4a5db8b01fbd244c005b941c0696e13f4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"40c0dbed425436f56fbec9a09eedcd4e09f37992","subject":"carry(legacy-sidebar): fix(web): keep resumable actions visible while working (#98)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/98"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar presentation of running Action status and its user guidance belongs to Legacy Sidebar. Evidence: These hunks add the yellow waiting indicator to legacy thread rows and document that sidebar-only presentation; mobile rows and composer behavior remain Resumable Actions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a328a6c695f63290dd521e202988b6364be41c31"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1a69d4e43685390023f5157980274f1a793f81eb","subject":"carry(legacy-sidebar): fix(web): align legacy thread metadata columns (#99)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/99"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a34c2433f75698a7f3b861626c8efccc58c28359"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0113abc0b5cad916a12474409e60ec1302646822","subject":"carry(legacy-sidebar): fix(web): improve sidebar and minimap indicator legibility (#113)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/113"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar icon visibility, status legibility, alignment, and preference previews. Evidence: The remaining files affect legacy thread rows, their settings, and shared status indicators used by that sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/84380d167b0c6c09be7376e5328506ca4e2c5d87"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2269e37f62f31d94b9bea5ebb1dc354da883da7f","subject":"carry(legacy-sidebar): refactor(lastcode): separate deployment infrastructure (#109)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Environment-label coverage follows Legacy Sidebar's environment-icon settings feature. Evidence: The sanitized label expectation changes a test introduced by PR #91 for legacy-thread environment presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"56340ad03aec2113cb7f42a00b5f6344e57b9a70","subject":"carry(legacy-sidebar): refactor(lastcode): separate deployment infrastructure (#109)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Legacy-thread environment icon presentation coverage belongs to Legacy Sidebar. Evidence: The hunk exercises legacyThreadEnvironmentPresentation and its sidebar-facing local-label output."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"bdc605cf5c18179f2b5f941a64c51ae3baba07cc","subject":"carry(legacy-sidebar): feat(lastcode): standardize resumable Action reporting (#168)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/168"],"Carry-Upstream":[],"Carry-Observation":["Optional legacy/sidebar presentation of structured Action progress, including status-pill priority, popovers, and hover text. Evidence: PR #168 sidebar hunks only convert Action progress into sidebar labels, colours, tooltips, and controls."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fca3acbc0926c1f1e2663176c6d6f99d22789a90"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"42141625e72500c51344495466cf377a954cbfa7","subject":"carry(legacy-sidebar): fix(lastcode): carry project icons into legacy drafts","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar project icon behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/821835214c38550469c0ed276de8f142feaf9a28"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"826a02947d1755c2202cabd31a7096046b10ded5","subject":"carry(legacy-sidebar): fix(lastcode): clear obsolete settings lint suppression","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Settings import lint maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/380f49a1805f1d9fafddc509f6c87605cb70cbca"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d708cc484b245bb957c4c360e0104da0f4c264b5","subject":"carry(legacy-sidebar): fix(web): theme sidebar status and local identity (#188)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/188"],"Carry-Upstream":[],"Carry-Observation":["Sidebar theme, identity, and hover presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9c6fc07406ed740054aff567a616c9276d2151e5"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6033a3beb97222acefa0e8985c6a9517544a8437","subject":"carry(legacy-sidebar): fix(lastcode): reconcile nightly typechecks","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Legacy-sidebar draft and hover project-name repair. Evidence: Both hunks pass or render projectTitleByKey/projectDisplayName; they do not change Action behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"acd337d250c264ae58869ef018ab71cd1bf4c291","subject":"carry(legacy-sidebar): fix(web): restore sidebar in-flight state after nightly rebase","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Sidebar in-flight state presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/1f85c6c1e9a2eff43e2aca46213ca0c14c66643b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a780e50c903ededd6b456028d27b8bf14945588f","subject":"carry(legacy-sidebar): style(web): format reconciled sidebar selection","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Sidebar formatting repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: incubator
Carry-Contribution: {"sourceCommit":"11f888d75eb7449c0429a5ff7b0dbd5bda970e72","subject":"carry(incubator): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Separated from a mixed historical contribution by behavioral ownership."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cc9ba6aa7f235c42c25e48b242b64cea12602485","subject":"carry(incubator): feat(lastcode): import settings from T3 Code (#12)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/12"],"Carry-Upstream":[],"Carry-Observation":["Standalone settings-import capability without an owning essential carry group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bd131c31167d485c5ccc98fe16a6398a1648c932"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ff89da71bcec43c8f64dcbf61fa4f994e660e0a6","subject":"carry(incubator): feat(lastcode): add thread annotations (#50)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/50"],"Carry-Upstream":[],"Carry-Observation":["Thread annotation capability, persistence, contracts, and annotation-specific presentation. Evidence: The remaining contribution defines annotation state and interactions; the extracted hover component contains no annotation behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52f03065c5b642ffa054d815ded9ed28c5c5efdc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b47cc3e3fe4b97f4bac462c65090ec19ece8a5e8","subject":"carry(incubator): fix(web): keep annotation actions attached to dialog","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/aeeea4954879687dc15e66b05d6ae5cc259859d5"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"67cc385bec9a9eb23ad12a59e39533b1dd5897e9","subject":"carry(incubator): Revert \"fix(web): keep annotation actions attached to dialog\"","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Reverts annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fa11611c2e47cca48ee9a0730fb99aaf2e54c6c6"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7183a15901eb52939b5b085d1eb81631a480c883","subject":"carry(incubator): fix(web): keep annotation actions attached to dialog (#73)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/73"],"Carry-Upstream":[],"Carry-Observation":["Annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/475e810208efdd1a5271fcb7687159056ddb5863"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3d8c92c799fc7680d664593e510c195465c79a54","subject":"carry(incubator): feat(lastcode): add Codex thread tools (#52)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/52"],"Carry-Upstream":[],"Carry-Observation":["Codex thread tools are a separate capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d96a3e6b4aa675df2a2b0098fd719f5d23a353c3"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9c7b55f0fb7d24a9e968bfafbaf86836c7dbf5ed","subject":"carry(incubator): feat(lastcode): make worktree cleanup durable (#76)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Mobile thread-row cleanup presentation and the experimental thread-annotation interaction. Evidence: No agreed carry group owns the mobile cleanup surface; Thread Annotation remains an Incubator feature."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0b026d71fc1a4bc52b3c4ee52d17bcbd9b8d2e5d","subject":"carry(incubator): fix(web): dialogs no longer block clicks after closing (#86)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/86"],"Carry-Upstream":[],"Carry-Observation":["Shared UI dialog primitives, no owning group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/07c2966d5baad3e6624d3fb4621289698b974180"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2fb831f0f6b82395cbf95309e106916e49c8f063","subject":"carry(incubator): style(web): use warning color for annotations (#93)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/93"],"Carry-Upstream":[],"Carry-Observation":["Annotation presentation styling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/55bf565530762045987bd1728a84cb3a71018ef9"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"265bd4c85030a58ebb3d0bd7ccef52994a7e7173","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation migration fixture maintenance follows the annotation feature. Evidence: The only changed behavior advances the 048 annotation migration fixture; the annotation implementation is Incubator-owned."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2906b7a2c862ec32d946a1155547596196deaeac","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-tool correlation and annotation replay compatibility follow their Incubator features. Evidence: The 051 fixture and latestUserMessageId persistence support the Codex thread-tools send/wait contract from PR #52; the remaining field preserves annotations."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"69d6a070f137ca0ac722eff046a72242f952e756","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-tool correlation and annotation upsert compatibility follow their Incubator features. Evidence: The optional latestUserMessageId field supports PR #52's thread wait correlation and the annotation field supports PR #50."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"12c23689cfbb07b7394f751dbed71f7a4951928d","subject":"carry(incubator): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation migration fixture maintenance follows the annotation feature. Evidence: The hunk only advances the annotation migration test fixture after the checkpoint repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d09432afece5fba9206fe0d9509cdb0306d8efde","subject":"carry(incubator): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Turn-request correlation migration fixture maintenance follows Codex thread tools. Evidence: The hunk only advances the PR #52 send/wait correlation fixture after the checkpoint repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a6b8dc067f5500d62e70fd63e9853fbe4c879763","subject":"carry(incubator): fix(web): improve sidebar and minimap indicator legibility (#113)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/113"],"Carry-Upstream":[],"Carry-Observation":["Annotation minimap contrast and clustered marker rendering follow the Incubator-owned annotation feature. Evidence: These hunks exclusively restyle and test annotation markers in the message minimap; sidebar indicators and their settings remain Legacy Sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/84380d167b0c6c09be7376e5328506ca4e2c5d87"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1202adde292e6d00cf8acfbf73de98c567040b51","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Adaptive cleanup-state colours follow the Incubator-owned mobile worktree-cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1407441d4f9d5b00c88199707fb02ed80a30336f","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Adaptive cleanup-state colour declarations follow the Incubator-owned mobile worktree-cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"abddc08a7977b330c1cabe46b5bd9200caf6017f","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Cleanup failed, queued, and deleting colour conversions follow the Incubator-owned mobile cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"59cdf5258cba62f6e5068617dba6ee14839b6b3d","subject":"carry(incubator): fix(web): make annotation post-it readable (#121)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/121"],"Carry-Upstream":[],"Carry-Observation":["Annotation post-it presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/62bd601b1e2c94eb94c6ed66233517f5ffb2337a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f49064aa1c325f96d97f7d78432491c3d39f7e86","subject":"carry(incubator): feat(web): identify cross-thread agent messages (#169)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/169"],"Carry-Upstream":[],"Carry-Observation":["Cross-thread message capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e0e20051ae6e3d782f1daf8e82d697cceb465f5c"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2f70545896915e687f5b28f81fdada37ad06da12","subject":"carry(incubator): fix(web): keep thread annotation typing responsive (#173)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/173"],"Carry-Upstream":[],"Carry-Observation":["Annotation editor responsiveness."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/286ca605790d31628861468caf474a8ebf60ba38"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"416eb1b64c8d3b75d4e9a5fa5bbce4f8baf4cdf0","subject":"carry(incubator): feat(lastcode): safeguard persistent threads (#178)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/178"],"Carry-Upstream":[],"Carry-Observation":["Persistent thread product capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/94389c9600931744389cd12691e5645831a3a12d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"efdb15c1f90d160f4936f53f39e6cffc1acf6c61","subject":"carry(incubator): feat(lastcode): integrate resumable actions with composer stack (#180)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/180"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation composer-banner integration follows the Incubator-owned annotation feature. Evidence: These hunks move the annotation post-it into ComposerBannerStack while preserving edit, resolve, dismiss, and pending behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9a2fc4d9716475a574aa9bf8eec79bced3e457bd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6966d2c403767b516b6363d58e3a9b705ccd649c","subject":"carry(incubator): feat(lastcode): integrate resumable actions with composer stack (#180)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/180"],"Carry-Upstream":[],"Carry-Observation":["Separated from a mixed historical contribution by behavioral ownership."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9a2fc4d9716475a574aa9bf8eec79bced3e457bd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"24df2793585aa5448f3c7b8eab77adfd7c7713f4","subject":"carry(incubator): fix(lastcode): reconcile nightly 1256 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation timeline coverage follows the Incubator-owned annotation feature. Evidence: The changed assertions belong to a test introduced by PR #50 with the annotation minimap and its top-fade interaction."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f8418eb9c9b87164768bff5f2f0bf1e0ec886e6"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"60f24c6960a968c226f1d91b75f128e6b27abcad","subject":"carry(incubator): fix(lastcode): format nightly 1256 revision","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Electron protocol coverage follows the Incubator-owned LastCode desktop identity feature. Evidence: The format-only hunk changes a test introduced with the LastCode protocol and brand identity; it has no checkpoint/tooling behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9169a9791ec5add68e31ea59f472f86f32de609f"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"446e321f290b637fef6e0cf3f5d88bb821a16b3a","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation fixture reconciliation remains with the annotation feature. Evidence: The path's two-line reconciliation only changes its annotation migration fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5307f08b19b94083a44e43ed801261dfd256d844","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Correlation fixture reconciliation follows Codex thread tools. Evidence: The path's two-line reconciliation only changes the PR #52 send/wait correlation fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d17b547cccfa6d47a3c7dd6f46ba717068c37735","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Feature-specific migration and UI reconciliation follows the Incubator features that own these paths. Evidence: The 055 and 056 fixtures belong to cross-thread message provenance and persistent-thread safeguards; the UI import cleanups affect annotation and cross-thread-message code introduced by Incubator contributions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8ef35cea5ba323a9be5f1d7ea91baab870b8efef","subject":"carry(incubator): fix(server): preserve latest user message identity on replay (#182)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/182"],"Carry-Upstream":[],"Carry-Observation":["Server message identity behavior; no existing group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a292664c7b7344950cea6a7c7e49425e44afd388"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c9bcdd87cc26f3ed62ae781a9ee3f9207d244f32","subject":"carry(incubator): fix(lastcode): clean replay migration fixtures","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation fixture cleanup follows the annotation feature. Evidence: The deleted duplicated replay fixture text is exclusively in the annotation migration test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b90161fdc1923a750d7e73b95e40767d1d1f565f","subject":"carry(incubator): fix(lastcode): clean replay migration fixtures","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Correlation fixture cleanup follows Codex thread tools. Evidence: The deleted duplicated replay fixture text is exclusively in the PR #52 send/wait correlation migration test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1481e9059ccc0f3527cff8ec57b539b5df797941","subject":"carry(incubator): fix(lastcode): carry attachment types into mobile previews","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Mobile attachment preview behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ae64ed8f9420b128677c80f1adfe2cad4d7eb274"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"70f0bc747510087db74c8d3ab5c70e52351fa1b3","subject":"carry(incubator): fix(lastcode): keep local update builds reproducible (#183)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/183"],"Carry-Upstream":[],"Carry-Observation":["Thread CLI source-context isolation follows the Incubator-owned thread-tools feature. Evidence: The hunk scopes source-thread metadata and wait self-rejection inside the CLI introduced by PR #52 and extended by the cross-thread-message and persistent-thread Incubator contributions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/6daea8ef0de1c9df9e28b9f90407643d40e7b9e9"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fdd705bfb158754b03db0d036347e4a55af70c08","subject":"carry(incubator): test(server): preserve settlement activation gate (#185)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/185"],"Carry-Upstream":[],"Carry-Observation":["Settlement activation product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52d2b539668e206f104948e6d66600b5d7ce994c"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"24b45b9de1226d798054612b81ca1318c669f4ab","subject":"carry(incubator): fix(server): canonicalize Antigravity file paths (#187)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/187"],"Carry-Upstream":[],"Carry-Observation":["Provider path correctness is upstream-worthy portability. No upstream pull-request provenance is recorded in the source."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/91b12bd3f0f6493f4ce6fe9cd7b8cf491a51b509"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"385a9b944addf1c69ac89b1286ecfef44ceca8ce","subject":"carry(incubator): feat(lastcode): add adjustable larger scrollbars (#190)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/190"],"Carry-Upstream":[],"Carry-Observation":["Cross-surface appearance feature."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e5237a1fe84d707fef14eb469f8a45bb04da9689"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0ab21149bd496008529e478c1d368c40ccbe4177","subject":"carry(incubator): feat(threads): show pending agent questions (#191)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/191"],"Carry-Upstream":[],"Carry-Observation":["Pending-question attention capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c6767c5c1b53b93f057e6dbeb6b4467ad3485a45"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3e21f089097e2cb17ed9bbc0b3833957b14454c0","subject":"carry(incubator): fix(lastcode): reconcile nightly typechecks","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Cross-thread agent-message formatting follows its Incubator feature. Evidence: The indentation-only hunk formats AgentMessageTimelineRow branches introduced by PR #169."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e5f7563f643bc152bfe143c54810a45019191b40","subject":"carry(incubator): fix(lastcode): preserve annotation task controls after replay","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation task controls product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/aea8005a5c3ca42aa16e67cb0cf0e35853aa2605"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b78d8acbae7320166334343c28a9edaf3fe186c2","subject":"carry(incubator): fix(lastcode): preserve provider thread context after nightly replay","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e49721a1ace785d285169dd5b8e89c6297e9b8d2"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8b1aa58db6ff93d78920a32706861033dd87943a","subject":"carry(incubator): fix(lastcode): format checkpoint recovery mock","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Thread-attention coverage follows the Incubator-owned pending-question feature. Evidence: The hunk only formats the MCP handler test introduced by PR #191."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ecf602b25c9256b5dd170c67fcd69d410aea2bfb"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7112f43559bc42845dc4044de02ca7bf67b3870f","subject":"carry(incubator): test(server): cover recovered provider thread context","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4ba5e4de7300b2ad4b366a8da9fc5d6b6c08df9b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b09e09d5081a0f3c7b557698b99ff3bdc0cbd6f2","subject":"carry(incubator): test(server): type recovered runtime context fixture","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context test fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/43c0c714b57b65d51b3787999cec235b60c321cc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d0fa92210843f229314b706f6be456f620619d8b","subject":"carry(incubator): fix(lastcode): repair annotation display and editing (#189)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/189"],"Carry-Upstream":[],"Carry-Observation":["Annotation display and editing capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/6c4e502b65e0b39039d9fcc02a470624bb858329"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4ba5073af76a03932ffb55579bab190a1df4c6ac","subject":"carry(incubator): fix(desktop): pick annotations inside same-origin iframes (#192)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/192"],"Carry-Upstream":[],"Carry-Observation":["Browser annotation capture capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/67ff1143d5e1982b1f4abcb821ea781669b6999e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f46ad24a1c91c23c3c5f71e7d1ad84f54cba8a49","subject":"carry(incubator): fix(server): return terminal history text after nightly rebase","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Terminal history behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/135d3d0f3ae22b3e8fb8aa5cfec8eaae9fdd2b7b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c4f2d71e064149356e0ebe2247666cfcebf4d2f8","subject":"carry(incubator): test(server): make local build fixtures portable (#196)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/196"],"Carry-Upstream":[],"Carry-Observation":["Provider test portability is upstream-worthy. No upstream pull-request provenance is recorded in the source."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e1badc5cb231f6babcada2e17ab2d1cacf47e7bc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f1dc4a82aee875d6c5939d946d6d75134a01604","subject":"carry(incubator): fix(desktop): capture same-origin iframe annotations reliably (#198)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/198"],"Carry-Upstream":[],"Carry-Observation":["Browser annotation capture across desktop/mobile."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/93ccbecb0977abae25a9739e57cec4d6cbe441c4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"63b2f3ea05445e2cb5cc91617b239ac1029489f8","subject":"carry(incubator): fix(mobile): use current duration formatter for working row (#199)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/199"],"Carry-Upstream":[],"Carry-Observation":["Mobile thread presentation formatting."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0b29e6523e510323b925596dc42dc179f7730bf0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9c6ecb9148fb99cd82ce229f05801203f198ce65","subject":"carry(incubator): compile surviving shared release guidance","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Synthetic bootstrap-only shared-guide slice; docs/lastcode/nightly-workflow.md: 20 surviving lines; docs/lastcode/release.md: 0 surviving lines."],"Carry-Evidence":["4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b; frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"240d3c552ecefac40380105347728655954bc968","subject":"carry(incubator): handle aliased scanner exclusion roots","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/206"],"Carry-Upstream":[],"Carry-Observation":["The server scanner recognizes both configured and filesystem-resolved sandbox roots so an aliased configuration path cannot expose managed worktrees as importable projects. Its focused regression test belongs with that scanner behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0a95a19d07801c1173a6ad182b70e2d879a4985e"],"Carry-Applies-To":["upstream f8b4c46 (v0.0.39-nightly.20260905.1290); historical source 42e0e48"],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: tooling
Carry-Contribution: {"sourceCommit":"08f6973dfdca692a18c2f34d6c040c31f3b097c1","subject":"carry(tooling): document fork evaluation conventions","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/b395cfc734c2e505f7b7e23fefd005a3d530ad9b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b50ef10425fee54a114f76388abd20de13cd4c75","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly-sync command registration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"32526962a05a7c84266a425a58f50abbbdb0d9a9","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly source-tracking guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f4e928c74e765680867215d37880791e28fe544","subject":"carry(tooling): Add LastCode nightly sync and local release tooling","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d78a739bb68a81d66b2d5cd6e19e6282e4dcb422"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e7e7e51204f1a6120693f3115a8348be21a823ca","subject":"carry(tooling): Add LastCode plan and PR review skills","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/8a60d13faa5b87ff669b426361990ee0b4ccf6b3"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d71838a6f8507c044e35b2aa83c2af11d5cf6a23","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, checkpoint-service, and merge command registration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"46649b79c975002925af314dd71dc022922e1ca1","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint creation, recovery, promotion, and service-operation guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"994c7d784ed6316d969f792292ef8e0e51468fca","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Nightly-tracking reference, runtime identity, and local orchestration guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"da34807d9c3948790a0b7956f46c662e2de5351d","subject":"carry(tooling): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"de8b3f09a005cb7b0a9265eace5e42ceee35317c","subject":"carry(tooling): fix(release): create checkpoint worktree branch (#2)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/2"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bf49a89a847ba495076c71c395194bdc342279a8"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5e790ea3e0beffbb6813f9fab23b278d5abf755b","subject":"carry(tooling): fix(release): isolate checkpoint smoke runner (#3)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/3"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/40c613b75193dfaeab3e8d25107f08a35f17d9a4"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"946269e9b272c1d7cfde43fb3bd2d49fe0708c0d","subject":"carry(tooling): fix(release): provision nightly service worktree (#4)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/4"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/217560dd91515ed8f00720a7df9507a71071e9ac"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"15944f05e40b95f9763b033563a13ddf3f001194","subject":"carry(tooling): fix(release): bootstrap checkpoint dependencies locally (#5)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/5"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/407dee55370022a5647ae404207b2d22dbc51c59"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7285083370982ecabb3dadc688b205569977eae1","subject":"carry(tooling): feat(release): add checkpoint dashboard (#6)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/6"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/7d3cf7397aa321b0c591c3afbb2d3a32b0327aab"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7e4df1e28077022a4aacb11e65cec661b4615435","subject":"carry(tooling): fix(release): avoid duplicate checkpoint tag CI (#8)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/8"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fecef09c3975834160640d7891da0d3cb0ea6d1e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0bafcf129154615b8020d5150e365e7e700550f0","subject":"carry(tooling): fix(release): retry published checkpoint promotion (#9)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/9"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/119973cf3bbd064d25fc8545c31d601c3273d8bf"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e5209a2a0258a77b57b4c8bd8c677b1fa817541f","subject":"carry(tooling): docs(lastcode): define contribution workstreams (#10)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/10"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/dcb4379d7e822e0fee18cc054f7b108ea4192511"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"abbd722e028917d51ae0ce025c5e63e80820b087","subject":"carry(tooling): fix(lastcode): stabilize local nightly updates (#14)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/14"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint recovery, promotion, service, and dashboard-operation guidance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5c99904dadcdd1cf44f3bae80c081f50c4c77abe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ad1cf74a6b4ae27427a2a0740f62415c362a204f","subject":"carry(tooling): fix(lastcode): stabilize local nightly updates (#14)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/14"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5c99904dadcdd1cf44f3bae80c081f50c4c77abe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"acaeacdd84f1e85ca5e08c43573b8513856a2466","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Revision creation, recovery, references, and checkpoint promotion belong to Tooling. Evidence: These hunks extend checkpoint orchestration from checkpoint-only state to ordered revisions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e72738d6d80d3578e1baf1edfffc3d023af6e115","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["The merge handoff's checkpoint-daemon request remains Tooling. Evidence: Only this hunk asks the daemon to publish a revision after a completed merge."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9858423e46459caa51600182b6d90ebcb7cb76b6","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Revision lifecycle framing belongs to Tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f2e790938a48588cfe000d377931b617b25f128","subject":"carry(tooling): feat(lastcode): publish installable merge revisions (#16)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/16"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0fa33720e5a1ce25bcd5d6954123ef28b81f202b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f4f6033cc2730068b3e4246098364e6f8ce1c315","subject":"carry(tooling): fix(lastcode): validate daemon pushes before connecting (#17)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/17"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a75a3295fb10fd6733a65e4292667b668da1b4a9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"173e9186a55db6bbbb6510d72dc54bbf0aca5bae","subject":"carry(tooling): feat(lastcode): show local nightly build activity (#25)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/25"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c4c8e9a395c16f58ec8a148149d3e54cb121f7fe"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e2e61a08194fec95b45e57792652f081595bfc48","subject":"carry(tooling): feat(lastcode): add upstream PR import skill (#27)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/27"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/730e934971fee80c1dda117519ff74b5823a7a5f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e04399d1f3b6cedb578394fdc0e1f6eff0111983","subject":"carry(tooling): feat(lastcode): add personal setup bootstrap (#37)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/37"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/645917073a28747e9fa364d70a6164ebde41b48b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"881b1389ec9a40ecb33bad124dfd9cc0a785341f","subject":"carry(tooling): fix(server): lease Darwin server ownership (#57)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/57"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c42208596884dec2678b8afa8918a69ca7fbe6bb"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7c37ac8b5f04d5877b2b83ce18ed95835383f066","subject":"carry(tooling): feat(lastcode): add durable remote update drain state (#60)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/60"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/db6d3b9dedab7df287bc72e9163a0104edd92ec9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6756c86f7e849831224a84e87aa80472baa18b69","subject":"carry(tooling): feat(server): gate work during update drain (#64)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/64"],"Carry-Upstream":[],"Carry-Observation":["Durable update-drain operation, persistence, terminal gating, authorization, and release operations. Evidence: These paths define the drain lifecycle and its durable command/receipt infrastructure rather than Action behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e5f50b65f6785b84d791be4b801292238c3fb8c6"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c7773ff356bf89461e6f0c033e569886ea5d4aff","subject":"carry(tooling): fix(lastcode): deduplicate reconciled contract import","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ef2a3a47bace8477605aa6d173f6d084ee1d6f3"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ac7512bf821c37a6f6ca3b6de740ecbc5623b43c","subject":"carry(tooling): fix(lastcode): explain checkpoint rebase conflicts (#67)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/67"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d75b690c043c6c841c7051df3b0da7c4d23c979e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7d3d081d457bc09790aca6092c7200be38313c1d","subject":"carry(tooling): fix(lastcode): wait for active checkpoint recovery (#70)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/70"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c7c8339f06ce2193ad05d1fb758f713e9ee46214"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ce1702b0eea10aa20304132a4c92816d74691f02","subject":"carry(tooling): feat(lastcode): update managed server on its configured schedule (#81)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/81"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f13011efa84a50bef50e38758bd60f96b358abee"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"66fc535cbfca92a5cde12d5b205f54e40b656f35","subject":"carry(tooling): feat(lastcode): make worktree cleanup durable (#76)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Durable worktree-cleanup state, deletion reactor, VCS retry, command, and contract implementation. Evidence: These hunks define cleanup persistence and recovery behavior independently of its presentation surfaces."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e7ff623e4465de97c94bbbae286941f081027992","subject":"carry(tooling): fix(lastcode): describe nested vendor gitlink (#83)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/83"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a1ef4ba683b76c622ee5971d652fe9520fc1c66"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2ea240ee575d98be7528939eaa0b9d4115e8e392","subject":"carry(tooling): fix(lastcode): repair nightly promotion after replay (#89)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/89"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/47b5a372a0cb0562c1b506f7e1cc649ee2cfc293"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"902cb01a6b890d31c7bceecea8236d8a9ab2fa46","subject":"carry(tooling): feat(lastcode): run managed server headlessly (#90)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/90"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f057bb00849df8a9b6852aee2de2f19a8cb9885b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e2c9440d78272c0f0558a9968a16607e695f4982","subject":"carry(tooling): fix(lastcode): retry headless readiness probes (#94)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/94"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c7dda8c9e52d1f6200f975c6bc2d30859b091899"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"606dd068b5590d3ba4cc3a0ad06906495ecd1cb9","subject":"carry(tooling): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint migration replay maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e14486d84cdabed1cd738b65289092ac02f0d2ba","subject":"carry(tooling): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint failure reporting and service maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a9390bdd0c46b77303d186911883e18f4907bf58","subject":"carry(tooling): fix(lastcode): keep replay fixtures forward-compatible (#105)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/105"],"Carry-Upstream":[],"Carry-Observation":["Replay fixture maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4c07357b47e371a96d6aebb7259a5676753e5be9"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7f94d7095969f34a9f09430efd3f7b5664c951e8","subject":"carry(tooling): refactor(lastcode): separate deployment infrastructure (#109)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e14c51bd78fbdd94e523273c0480fe92036e9a05","subject":"carry(tooling): fix(lastcode): remove deployment-specific infrastructure details (#116)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/116"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint-service wording and topology-neutral deployment primitives belong to Tooling. Evidence: These hunks describe release orchestration and environment-neutral deployment composition rather than producing or validating an artifact."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a36a736fb8d32b0b6b468a346ee00d431698d08"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d8778bc51ff8c5101b51af40e8616144157b5cff","subject":"carry(tooling): fix(lastcode): remove deployment-specific infrastructure details (#116)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/116"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4a36a736fb8d32b0b6b468a346ee00d431698d08"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"12a7d260043671fc9ac528416666df531f032046","subject":"carry(tooling): fix(lastcode): silence absent checkpoint service (#118)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/118"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/004722575f86b31c9610514707bf71a27626e719"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4e65508273afbfff6c00907ab23ff0785bcdaa73","subject":"carry(tooling): fix(lastcode): finish checkpoints safely (#119)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/119"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/373878ffad42b4eaae6903ef5c302efe0032217f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6b8e557ee69e4fd32ea25e822da26a658ff63991","subject":"carry(tooling): fix(lastcode): validate checkpoint lint before publish (#120)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint lint gate and service scripts."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"56c3fcd3e0c830571318f2cff320412bb1e5c1a4","subject":"carry(tooling): fix(lastcode): keep checkpoint freshness current (#139)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/139"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/71f4104371ffa557a903a0e791e630da5bf1a297"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cbbd1e7741554a94519815d3b2873cf851decc6e","subject":"carry(tooling): fix(lastcode): keep theme replay smoke compatible (#140)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/140"],"Carry-Upstream":[],"Carry-Observation":["Replay smoke compatibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f2ef9b3c5489413af42d46679315dc95a4a2a9c2"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1f2455eb195c476c9fe0b3c980c739ad4a173f4d","subject":"carry(tooling): fix(lastcode): include remote checkpoint tags in status (#142)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/142"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/233b1ae1ee1212351117f16497d9c86343dbb8ea"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3a59b470e62066043070bd2095b5e3e5c5126b8a","subject":"carry(tooling): feat(lastcode): inventory downstream carry set (#149)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/149"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/278445fada2399bdfc056d35c548e5059f394daa"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5e9232ecae59252a092827138b93cf3fd5bfc442","subject":"carry(tooling): feat(lastcode): add public docs feature registry (#167)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/167"],"Carry-Upstream":[],"Carry-Observation":["LastCode public documentation tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fccaf4ecbf4165cec8947f0b14de41d071ed8851"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f8d8288fe0b407193ef94dca955461b3e016bd23","subject":"carry(tooling): fix(lastcode): skip superseded checkpoint recoveries (#166)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/166"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e727f507b84321e9e35fc815a6aef2e953149172"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2f1c9fb594247ce1b333580d737eccb8a5083717","subject":"carry(tooling): feat(lastcode): add public docs fixtures (#170)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/170"],"Carry-Upstream":[],"Carry-Observation":["Public documentation fixtures."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/be4dfff50979a13be1c2bc1493d392a32de257fa"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2790665ba1e730e0abef2a7e0f996b55f89c9626","subject":"carry(tooling): feat(lastcode): shadow-check checkpoint carry sets (#171)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/171"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, release, or general maintenance orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c604b14d812a904ba64ce41f6e98c74985cd4e9f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4cfcf67f7f012baf28f7c0fc467c06b94f673b9d","subject":"carry(tooling): fix(lastcode): typecheck checkpoints before publishing (#176)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/176"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint pre-publication typecheck."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bd13a1ccdb354301654ffd6cf14e8cbcdabfb861"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"66d8c2e79bcc3c27c6231d7febef1d71aeca8994","subject":"carry(tooling): feat(lastcode): reconcile managed project actions (#174)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/174"],"Carry-Upstream":[],"Carry-Observation":["Project action reconciliation and service orchestration."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ffe7eaed597b2ff7065f0f2ee163c516c2cd1c4b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f872def2b0787dc802aa9d1df756d2fbf81cf73a","subject":"carry(tooling): fix(lastcode): keep docs fixture commands live (#177)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/177"],"Carry-Upstream":[],"Carry-Observation":["Documentation fixture command maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9f3924cad6a0c30029a5058dc09745410637b942"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"14d5735b50fe46f4714ac82c4962481442f18dcf","subject":"carry(tooling): feat(lastcode): safeguard persistent threads (#178)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/178"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/94389c9600931744389cd12691e5645831a3a12d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b754de22a3e4e632908a6b98b692e29ed9e8d000","subject":"carry(tooling): fix(server): combine CLI environment test layers","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["CLI test layer maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/781e7c5031e26150eacc5a235e40d6e5ec215233"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a12d0bca5e890283f9728dbc3742598bff69a83d","subject":"carry(tooling): fix(lastcode): reconcile nightly web tests","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Format-only settings cleanup with no Action or sidebar behavior. Evidence: The only useSettings hunk deletes a blank line; it has no feature owner and remains Tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74b09f641067199195272daf129b4c3dd5196a15"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"893f21c6107fd699676c04e7854aae856995ac00","subject":"carry(tooling): fix(lastcode): reconcile nightly 1253 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly integration repair spans updater and service tests."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/dc4f6dec7a783c9531aaeeb6270ecc85e5bec799"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2e23ea9eacd7e6ffef32eb78d894be924e13bb10","subject":"carry(tooling): fix(lastcode): reconcile nightly 1256 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Mixed nightly reconciliation repairs with no shared product owner. Evidence: The remaining hunks remove an obsolete model seed and renumber a migration fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f8418eb9c9b87164768bff5f2f0bf1e0ec886e6"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"76acc15a59587f1e81bcb94b610062e82b35a10a","subject":"carry(tooling): fix(lastcode): reconstruct renamed carry-set paths","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Carry-set reconstruction tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb2b9fbc698775b92471d6c7c7b2d92c7474832e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9d29c2bf71f2dd8f8ed3cfef3f313065e8f50e51","subject":"carry(tooling): fix(lastcode): reconcile nightly 1262 integrations","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly integration migration and UI repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0304b910fa7dc1c592588caf8bf46cd1a3e38c39","subject":"carry(tooling): fix(lastcode): clean replay migration fixtures","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Replay migration fixture cleanup."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8c626ffd49b0f7d196c73e2dea314c9781242a8c","subject":"carry(tooling): fix(lastcode): align checkpoint smoke with replayed tree","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Checkpoint smoke and managed checkout maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2b18f50d5d320f3888db1d72312dbc2cd7f13c1e"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c542e5f49fe343749dabe96884fef9b2fa038812","subject":"carry(tooling): fix(lastcode): reconcile nightly typechecks","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Server test-harness repair. Evidence: The remaining server hunk extracts a shared test layer and has no feature owner."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e03889de8306df08ba2f5b38eb3df8707c17ace0","subject":"carry(tooling): fix(lastcode): reconcile nightly formatting","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly formatting repair in a server test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/30d2513b98114564bf62a25d026cdcf71d234b33"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"60386b06fe16f34248f8ad2ad38cf02d2a7d6e76","subject":"carry(tooling): fix(web): update file save test import after nightly rebase","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly test import repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0c10ddd13e4470e1e96d8fe35c9de1a217b2d074"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3c862d17bd3d10313a2de7380576e754c474daff","subject":"carry(tooling): fix(lastcode): resume maintenance waits without agent polling (#194)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/194"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/77a8cdc5eed130628418671f7ba361b6fa4fb87b"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e03effd20aa55a5e4a3b9a8922f98c69ffc3ae13","subject":"carry(tooling): fix(lastcode): recover revision provenance across nightlies (#195)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/195"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint revision provenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/13a66dfe35f8e80ff96de2aae21a80e35eaf4067"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1b1c0dda9eab6a808fb493d3176946e91eb5fbdb","subject":"carry(tooling): feat(lastcode): resume threads after local package builds (#197)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/197"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/f7348c54703d8e107ecdf693b477c923cb7f137f"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e4f4d7a22811faf04abb40f21955f31117d31a21","subject":"carry(tooling): fix(server): align nightly import tests with LastCode services","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Nightly import test compatibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/5d76ad48ac5b06a56af25f993348ed39371e870d"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b2ab02a7e9860ba04328ca98a7ad9d9fabf9f451","subject":"carry(tooling): feat(lastcode): resume repaired nightly checkpoints (#201)","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/201"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint, carry, service, supervisor, or release-orchestration implementation and coverage."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f90115b9bda253c98d7d5db6abedc41ff046559"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03 (v0.0.39-nightly.20260905.1289); frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c2d90798c8b1179f7daaa184cc276db81a0a2aab","subject":"carry(tooling): compile surviving shared release guidance","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Synthetic bootstrap-only shared-guide slice; docs/lastcode/nightly-workflow.md: 396 surviving lines; docs/lastcode/release.md: 152 surviving lines."],"Carry-Evidence":["4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b487810455f7b695d1b849b4370b132d03; frozen source 4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"47a8148197545734eb9ce985065a4b4151455b6c","subject":"carry(tooling): retire obsolete checkpoint alerts after recovery","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/208"],"Carry-Upstream":[],"Carry-Observation":["Checkpoint supervision retires queued alerts after a successful recovery, preserves uncertain delivery recipients, and keeps failed-run retries. The operating guidance and focused supervisor coverage belong with the checkpoint tooling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/42e0e48674ed661ddf49adebc0769d90d458ee66"],"Carry-Applies-To":["upstream f8b4c464b4760d73e0ece7e68011c738803d8b69 (v0.0.39-nightly.20260905.1290); historical source 42e0e48674ed661ddf49adebc0769d90d458ee66"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e25abe7f1beb29ab2e4b68d74a55e9ec7bec29de","subject":"feat(lastcode): implement compact carry replay foundation","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Implements replay and source retention; bootstrap activation and full production lifecycle proof remain outstanding."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ddad73b14eba13523b333f0b1567192c5143846d","subject":"fix(lastcode): preserve historical carry bootstrap","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Synthetic lifecycle coverage now preserves a latest historical checkpoint baseline and its represented main tail; live production acceptance remains separate."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0c128b3d754fb2cd7abf06cc35c0d71e9df05667","subject":"feat(lastcode): validate carry ownership in CI","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":[],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9bc9ac33f22187d525aafc34250c288eb6a375ad","subject":"fix(lastcode): isolate carry replay from rerere locks","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Automatic rebase does not inherit rerere writes; retained conflicts remain available for explicit recovery."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7094216b3ef1b000a1f06306ecde6d2ddcf29da2","subject":"feat(lastcode): activate six-group carry replay from verified revision","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["The bootstrap preserves the complete immutable 1290.1 tree while separating six ordered owners and retaining descriptive fix evidence. Historical replay remains an explicit rollout escape hatch until the full production lifecycle is proven."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/releases/tag/lastcode%2Frevision%2Fv0.0.39-nightly.20260905.1290.1"],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"40c21e575aaa6247a09750213f26a116eb937222","subject":"fix(lastcode): retain prepared compact provenance","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Prepared compact bootstraps preserve validated nested contribution metadata when recompiled."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"829a014771eb0745acb093605e72839aaa3edd7c","subject":"fix(lastcode): fetch carry activation refs for checkpoints","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Carry activation and later checkpoint runs require remote-only retained source commits and the immutable prepared bootstrap partition."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts remote-only carry ref lifecycle"],"Carry-Applies-To":["carry replay checkpoint activation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"13948c94f34663ac146e49a9990f0d6d406733b2","subject":"test(lastcode): keep carry collision fixture on source branch","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["The checkpoint lifecycle fixture must run from its LastCode source branch so remote bootstrap fetching does not read the repository's production manifest."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts full three-test lifecycle"],"Carry-Applies-To":["carry replay checkpoint activation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"00148cefac51ffa1d8f73961b327bab2a39fecc2","subject":"test(lastcode): isolate historical rename fixture configuration","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["Historical reconstruction coverage uses its own manifest so production carry activation cannot change the fixture mode."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"47b28d233b70fb902548ac831c692f9e47b2647e","subject":"fix(lastcode): validate advanced carry squash bases","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/issues/203"],"Carry-Upstream":[],"Carry-Observation":["A carry squash may follow a base advance only when Git reconstructs its exact tree from the reviewed base, advanced parent, and immutable source head."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ea133798d8701e48fe40742884ae7f3368709d08","subject":"test(lastcode): make carry lifecycle fixtures self-contained","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["The checkpoint lifecycle fixture belongs to Tooling and must run from GitHub Actions partial checkouts without lazy object fetching."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts full three-case lifecycle with GIT_NO_LAZY_FETCH=1"],"Carry-Applies-To":["carry replay checkpoint lifecycle validation"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f66ba6040c860449493330dc649a0c1bdd3d409c","subject":"fix(lastcode): honor rollback and retain bootstrap failures","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Explicit historical rollback must publish its mode and reason, while carry bootstrap failures must either clean proven-retryable publication state or retain an identified recovery branch."],"Carry-Evidence":["scripts/lastcode-checkpoint.test.ts and scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["carry replay checkpoint revisions and initial bootstrap publication"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"32bb0d34f0bc76ff3a8661cab82433e68fc95529","subject":"fix(lastcode): record failed bootstrap cleanup","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Failed bootstrap cleanup must still leave an actionable recovery record, and explicit historical rollback must publish its requested metadata."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["initial carry bootstrap failure handling and same-source historical rollback"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6836d255ba8470c6f92f39709aad90d6e3824ee8","subject":"fix(lastcode): retain same-file historical repairs","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Historical replacement candidates must match Git’s exact merge of the previous checkpoint and current source, including separate hunks in shared files."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"966e11dee89d86711624a5944744076d9f301fc6","subject":"fix(lastcode): keep recovery previews read-only","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Previewing a retained recovery must not complete its plan, rebase its branch, update refs, or record a selection."],"Carry-Evidence":["scripts/lastcode-checkpoint-lifecycle.test.ts"],"Carry-Applies-To":["dry-run recovery selection for persisted carry replay plans"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cc9ef26673897297a6cc599eedce5526cf9c814e","subject":"fix(lastcode): validate shadow checks by published replay mode","group":"tooling","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/210"],"Carry-Upstream":[],"Carry-Observation":["Immutable tag metadata selects historical reconstruction or compact validation independently of the current carry configuration; legacy tags retain historical validation."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fae515493334e1b261d87236b1d6391e75fb1d1b","subject":"fix(lastcode): validate migration history before checkpoint publication","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Every reconstructed candidate must retain separate migration histories and pass historical upgrade tests, including when optional smoke is disabled."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7b7ad23e2929758243df7c5134c612f255069cac","subject":"fix(web): keep archive snapshot helper private","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Remove the unused export flagged by the required GitHub export check; local callers and behavior are unchanged."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a7509a0bc5c76481edb70c89eb45214c94856b3f","subject":"fix(lastcode): retain released legacy migration histories","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Compare reconstructed legacy upgrade identities against the previous release so candidate-owned fixtures cannot silently drop support."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"567e14ba9abf9927b8465f278bd4d4dea072571d","subject":"test(lastcode): include legacy history in checkpoint fixtures","group":"tooling","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":[],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: legacy-sidebar
Carry-Contribution: {"sourceCommit":"ae773fe2a7268594fe49f2813649cb74d06534d4","subject":"carry(legacy-sidebar): fix(lastcode): use LastCode project icon (#15)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/15"],"Carry-Upstream":[],"Carry-Observation":["Project icon configuration supports sidebar identity."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/080586bef5d1edb66abeafe9bbc40737238b0e23"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"67b24c77989c78c0eefa4bced628efcdcce52c29","subject":"carry(legacy-sidebar): feat(web): toggle sidebar mode with a keybinding (#23)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/23"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ca68cb7e8e1c8ba78254a7cd406f97ca4687c6ab"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"760aef5ea069979b30a1de6f45a1e7b0aaee45b6","subject":"carry(legacy-sidebar): feat(lastcode): resume agents after opted-in Actions (#28)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/28"],"Carry-Upstream":[],"Carry-Observation":["Optional sidebar Action status, terminal-open/cancel controls, and their sidebar-only tests. The Action lifecycle and MCP/orchestration contracts remain with Resumable Actions. Evidence: PR #28 sidebar hunks add the Waiting pill, Action popover controls, and desktop running-count presentation only."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a4224354633307a3c934f4e6d6b90f602985a47a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8da727f0e224c7584e2a79b95bc37b136a44e0d9","subject":"carry(legacy-sidebar): feat(lastcode): scale legacy sidebar (#32)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/32"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c36677746e78c72371a30f4a3517f6b28f07f385"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1bc86c26c8a4734f2a089440c6182d171e5fee2d","subject":"carry(legacy-sidebar): fix(lastcode): keep legacy sidebar icons full size (#35)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/35"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/791c9bab48d06ca6f61bab0590149bd7236d0c74"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fcac521cc831a210ca1ef1208661b33b9c7d9204","subject":"carry(legacy-sidebar): feat(lastcode): make project icon rounding optional (#40)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/40"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2d7c0871cfb9048469aafd297ea10d03ad9f8553"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b560d7bc06acd9b4d447a1ee819e4447238de80f","subject":"carry(legacy-sidebar): fix(lastcode): keep sidebar metadata full size (#42)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/42"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0be17993e73b50254940b7bb75babe6bb6d18a7e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3d34dcf96214bf522ecfd0de41df9e7572c3259b","subject":"carry(legacy-sidebar): fix(web): align sidebar toggle keybinding label (#43)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/43"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/cbb165caa0232e865377bd4980058a47951665b7"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9d62a53b99981e3e3a7b39b2840ccaec29f32a0e","subject":"carry(legacy-sidebar): fix(lastcode): align remote sidebar metadata (#44)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/44"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/67d93a2df5904bea81c463a0059fc7d19cfa873d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1b9520436cac0a3cee00d0674e27c24dd4e1e7f9","subject":"carry(legacy-sidebar): feat(lastcode): add thread annotations (#50)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/50"],"Carry-Upstream":[],"Carry-Observation":["The reusable legacy thread-details hover component belongs to Legacy Sidebar. Evidence: Although introduced beside annotations, this standalone component renders generic project, environment, branch, provider, terminal, and error details and is subsequently extended by Legacy Sidebar hover and cleanup fixes."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52f03065c5b642ffa054d815ded9ed28c5c5efdc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ff599416c5a923cd2b7d1c52f2626fa1fbcaa2eb","subject":"carry(legacy-sidebar): fix(web): make legacy thread hovers consistent (#75)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/75"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fc769752c422beca2a6f0766e97677ba97e0e8cd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0cf9ff0c0200d7aa9d8715d6d8abc5261304d3cb","subject":"carry(legacy-sidebar): feat(lastcode): make worktree cleanup durable (#76)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar cleanup status, retry/keep controls, dialog, hover state, and user guidance. Evidence: These hunks render or invoke the cleanup recovery actions from the legacy thread sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b1cc74e12ccaed3c004e68b610d2457037752175","subject":"carry(legacy-sidebar): feat(lastcode): customize environment icons (#91)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/91"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a370244e6e885580bdf5ab6f2ad463e8603bee83"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"321162f6f3c7da0ea78b099f481cfb0d3d84bedc","subject":"carry(legacy-sidebar): feat(web): add compact status indicators setting (#96)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/96"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/33784dad67329ea4866ef40c2dcbc4ac881503df"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"993ced5dc59a374db4914107b6032cbb8a38a8ed","subject":"carry(legacy-sidebar): feat(web): add worktree indicator preference (#100)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/100"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/465b75a4a5db8b01fbd244c005b941c0696e13f4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"40c0dbed425436f56fbec9a09eedcd4e09f37992","subject":"carry(legacy-sidebar): fix(web): keep resumable actions visible while working (#98)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/98"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar presentation of running Action status and its user guidance belongs to Legacy Sidebar. Evidence: These hunks add the yellow waiting indicator to legacy thread rows and document that sidebar-only presentation; mobile rows and composer behavior remain Resumable Actions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a328a6c695f63290dd521e202988b6364be41c31"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1a69d4e43685390023f5157980274f1a793f81eb","subject":"carry(legacy-sidebar): fix(web): align legacy thread metadata columns (#99)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/99"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar behavior or optional action visibility."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a34c2433f75698a7f3b861626c8efccc58c28359"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0113abc0b5cad916a12474409e60ec1302646822","subject":"carry(legacy-sidebar): fix(web): improve sidebar and minimap indicator legibility (#113)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/113"],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar icon visibility, status legibility, alignment, and preference previews. Evidence: The remaining files affect legacy thread rows, their settings, and shared status indicators used by that sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/84380d167b0c6c09be7376e5328506ca4e2c5d87"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2269e37f62f31d94b9bea5ebb1dc354da883da7f","subject":"carry(legacy-sidebar): refactor(lastcode): separate deployment infrastructure (#109)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Environment-label coverage follows Legacy Sidebar's environment-icon settings feature. Evidence: The sanitized label expectation changes a test introduced by PR #91 for legacy-thread environment presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"56340ad03aec2113cb7f42a00b5f6344e57b9a70","subject":"carry(legacy-sidebar): refactor(lastcode): separate deployment infrastructure (#109)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/109"],"Carry-Upstream":[],"Carry-Observation":["Legacy-thread environment icon presentation coverage belongs to Legacy Sidebar. Evidence: The hunk exercises legacyThreadEnvironmentPresentation and its sidebar-facing local-label output."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d2eb3ffbc4698ed0987f3ccedcd78e9f8261094a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"bdc605cf5c18179f2b5f941a64c51ae3baba07cc","subject":"carry(legacy-sidebar): feat(lastcode): standardize resumable Action reporting (#168)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/168"],"Carry-Upstream":[],"Carry-Observation":["Optional legacy/sidebar presentation of structured Action progress, including status-pill priority, popovers, and hover text. Evidence: PR #168 sidebar hunks only convert Action progress into sidebar labels, colours, tooltips, and controls."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fca3acbc0926c1f1e2663176c6d6f99d22789a90"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"42141625e72500c51344495466cf377a954cbfa7","subject":"carry(legacy-sidebar): fix(lastcode): carry project icons into legacy drafts","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Legacy sidebar project icon behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/821835214c38550469c0ed276de8f142feaf9a28"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"826a02947d1755c2202cabd31a7096046b10ded5","subject":"carry(legacy-sidebar): fix(lastcode): clear obsolete settings lint suppression","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Settings import lint maintenance."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/380f49a1805f1d9fafddc509f6c87605cb70cbca"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d708cc484b245bb957c4c360e0104da0f4c264b5","subject":"carry(legacy-sidebar): fix(web): theme sidebar status and local identity (#188)","group":"legacy-sidebar","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/188"],"Carry-Upstream":[],"Carry-Observation":["Sidebar theme, identity, and hover presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9c6fc07406ed740054aff567a616c9276d2151e5"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6033a3beb97222acefa0e8985c6a9517544a8437","subject":"carry(legacy-sidebar): fix(lastcode): reconcile nightly typechecks","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Legacy-sidebar draft and hover project-name repair. Evidence: Both hunks pass or render projectTitleByKey/projectDisplayName; they do not change Action behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"acd337d250c264ae58869ef018ab71cd1bf4c291","subject":"carry(legacy-sidebar): fix(web): restore sidebar in-flight state after nightly rebase","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Sidebar in-flight state presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/1f85c6c1e9a2eff43e2aca46213ca0c14c66643b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a780e50c903ededd6b456028d27b8bf14945588f","subject":"carry(legacy-sidebar): style(web): format reconciled sidebar selection","group":"legacy-sidebar","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Sidebar formatting repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
lastobelus pushed a commit that referenced this pull request Sep 7, 2026
Carry-Group: incubator
Carry-Contribution: {"sourceCommit":"11f888d75eb7449c0429a5ff7b0dbd5bda970e72","subject":"carry(incubator): feat(lastcode): bootstrap isolated nightly fork workflow (#1)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/1"],"Carry-Upstream":[],"Carry-Observation":["Separated from a mixed historical contribution by behavioral ownership."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3bdabeea6e9b4788092ef21e3e742d8b69c1f11"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"cc9ba6aa7f235c42c25e48b242b64cea12602485","subject":"carry(incubator): feat(lastcode): import settings from T3 Code (#12)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/12"],"Carry-Upstream":[],"Carry-Observation":["Standalone settings-import capability without an owning essential carry group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/bd131c31167d485c5ccc98fe16a6398a1648c932"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"ff89da71bcec43c8f64dcbf61fa4f994e660e0a6","subject":"carry(incubator): feat(lastcode): add thread annotations (#50)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/50"],"Carry-Upstream":[],"Carry-Observation":["Thread annotation capability, persistence, contracts, and annotation-specific presentation. Evidence: The remaining contribution defines annotation state and interactions; the extracted hover component contains no annotation behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52f03065c5b642ffa054d815ded9ed28c5c5efdc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b47cc3e3fe4b97f4bac462c65090ec19ece8a5e8","subject":"carry(incubator): fix(web): keep annotation actions attached to dialog","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/aeeea4954879687dc15e66b05d6ae5cc259859d5"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"67cc385bec9a9eb23ad12a59e39533b1dd5897e9","subject":"carry(incubator): Revert \"fix(web): keep annotation actions attached to dialog\"","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Reverts annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/fa11611c2e47cca48ee9a0730fb99aaf2e54c6c6"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7183a15901eb52939b5b085d1eb81631a480c883","subject":"carry(incubator): fix(web): keep annotation actions attached to dialog (#73)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/73"],"Carry-Upstream":[],"Carry-Observation":["Annotation dialog behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/475e810208efdd1a5271fcb7687159056ddb5863"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3d8c92c799fc7680d664593e510c195465c79a54","subject":"carry(incubator): feat(lastcode): add Codex thread tools (#52)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/52"],"Carry-Upstream":[],"Carry-Observation":["Codex thread tools are a separate capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/d96a3e6b4aa675df2a2b0098fd719f5d23a353c3"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9c7b55f0fb7d24a9e968bfafbaf86836c7dbf5ed","subject":"carry(incubator): feat(lastcode): make worktree cleanup durable (#76)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/76"],"Carry-Upstream":[],"Carry-Observation":["Mobile thread-row cleanup presentation and the experimental thread-annotation interaction. Evidence: No agreed carry group owns the mobile cleanup surface; Thread Annotation remains an Incubator feature."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e3a9760874b76c1f686e7c3948003fd08bf3016e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0b026d71fc1a4bc52b3c4ee52d17bcbd9b8d2e5d","subject":"carry(incubator): fix(web): dialogs no longer block clicks after closing (#86)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/86"],"Carry-Upstream":[],"Carry-Observation":["Shared UI dialog primitives, no owning group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/07c2966d5baad3e6624d3fb4621289698b974180"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2fb831f0f6b82395cbf95309e106916e49c8f063","subject":"carry(incubator): style(web): use warning color for annotations (#93)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/93"],"Carry-Upstream":[],"Carry-Observation":["Annotation presentation styling."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/55bf565530762045987bd1728a84cb3a71018ef9"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"265bd4c85030a58ebb3d0bd7ccef52994a7e7173","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation migration fixture maintenance follows the annotation feature. Evidence: The only changed behavior advances the 048 annotation migration fixture; the annotation implementation is Incubator-owned."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2906b7a2c862ec32d946a1155547596196deaeac","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-tool correlation and annotation replay compatibility follow their Incubator features. Evidence: The 051 fixture and latestUserMessageId persistence support the Codex thread-tools send/wait contract from PR #52; the remaining field preserves annotations."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"69d6a070f137ca0ac722eff046a72242f952e756","subject":"carry(incubator): fix(lastcode): keep checkpoint migrations replayable (#95)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/95"],"Carry-Upstream":[],"Carry-Observation":["Thread-tool correlation and annotation upsert compatibility follow their Incubator features. Evidence: The optional latestUserMessageId field supports PR #52's thread wait correlation and the annotation field supports PR #50."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/eb837b1efb24e4022adaaa6e05cfd93b627f201e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"12c23689cfbb07b7394f751dbed71f7a4951928d","subject":"carry(incubator): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation migration fixture maintenance follows the annotation feature. Evidence: The hunk only advances the annotation migration test fixture after the checkpoint repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d09432afece5fba9206fe0d9509cdb0306d8efde","subject":"carry(incubator): fix(lastcode): make checkpoint failures self-reporting (#101)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/101"],"Carry-Upstream":[],"Carry-Observation":["Turn-request correlation migration fixture maintenance follows Codex thread tools. Evidence: The hunk only advances the PR #52 send/wait correlation fixture after the checkpoint repair."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0ccb6ec0bd54ebe6c2662458a6ffe9a6acbb457d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a6b8dc067f5500d62e70fd63e9853fbe4c879763","subject":"carry(incubator): fix(web): improve sidebar and minimap indicator legibility (#113)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/113"],"Carry-Upstream":[],"Carry-Observation":["Annotation minimap contrast and clustered marker rendering follow the Incubator-owned annotation feature. Evidence: These hunks exclusively restyle and test annotation markers in the message minimap; sidebar indicators and their settings remain Legacy Sidebar."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/84380d167b0c6c09be7376e5328506ca4e2c5d87"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1202adde292e6d00cf8acfbf73de98c567040b51","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Adaptive cleanup-state colours follow the Incubator-owned mobile worktree-cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1407441d4f9d5b00c88199707fb02ed80a30336f","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Adaptive cleanup-state colour declarations follow the Incubator-owned mobile worktree-cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"abddc08a7977b330c1cabe46b5bd9200caf6017f","subject":"carry(incubator): fix(lastcode): validate checkpoint lint before publish (#120)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/120"],"Carry-Upstream":[],"Carry-Observation":["Cleanup failed, queued, and deleting colour conversions follow the Incubator-owned mobile cleanup surface."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/3ea6c456f10ff38aa7f6b3d0d8b4cc54867cd646"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"59cdf5258cba62f6e5068617dba6ee14839b6b3d","subject":"carry(incubator): fix(web): make annotation post-it readable (#121)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/121"],"Carry-Upstream":[],"Carry-Observation":["Annotation post-it presentation."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/62bd601b1e2c94eb94c6ed66233517f5ffb2337a"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f49064aa1c325f96d97f7d78432491c3d39f7e86","subject":"carry(incubator): feat(web): identify cross-thread agent messages (#169)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/169"],"Carry-Upstream":[],"Carry-Observation":["Cross-thread message capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e0e20051ae6e3d782f1daf8e82d697cceb465f5c"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"2f70545896915e687f5b28f81fdada37ad06da12","subject":"carry(incubator): fix(web): keep thread annotation typing responsive (#173)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/173"],"Carry-Upstream":[],"Carry-Observation":["Annotation editor responsiveness."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/286ca605790d31628861468caf474a8ebf60ba38"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"416eb1b64c8d3b75d4e9a5fa5bbce4f8baf4cdf0","subject":"carry(incubator): feat(lastcode): safeguard persistent threads (#178)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/178"],"Carry-Upstream":[],"Carry-Observation":["Persistent thread product capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/94389c9600931744389cd12691e5645831a3a12d"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"efdb15c1f90d160f4936f53f39e6cffc1acf6c61","subject":"carry(incubator): feat(lastcode): integrate resumable actions with composer stack (#180)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/180"],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation composer-banner integration follows the Incubator-owned annotation feature. Evidence: These hunks move the annotation post-it into ComposerBannerStack while preserving edit, resolve, dismiss, and pending behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9a2fc4d9716475a574aa9bf8eec79bced3e457bd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"6966d2c403767b516b6363d58e3a9b705ccd649c","subject":"carry(incubator): feat(lastcode): integrate resumable actions with composer stack (#180)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/180"],"Carry-Upstream":[],"Carry-Observation":["Separated from a mixed historical contribution by behavioral ownership."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9a2fc4d9716475a574aa9bf8eec79bced3e457bd"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"24df2793585aa5448f3c7b8eab77adfd7c7713f4","subject":"carry(incubator): fix(lastcode): reconcile nightly 1256 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Thread-annotation timeline coverage follows the Incubator-owned annotation feature. Evidence: The changed assertions belong to a test introduced by PR #50 with the annotation minimap and its top-fade interaction."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/2f8418eb9c9b87164768bff5f2f0bf1e0ec886e6"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"60f24c6960a968c226f1d91b75f128e6b27abcad","subject":"carry(incubator): fix(lastcode): format nightly 1256 revision","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Electron protocol coverage follows the Incubator-owned LastCode desktop identity feature. Evidence: The format-only hunk changes a test introduced with the LastCode protocol and brand identity; it has no checkpoint/tooling behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/9169a9791ec5add68e31ea59f472f86f32de609f"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"446e321f290b637fef6e0cf3f5d88bb821a16b3a","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation fixture reconciliation remains with the annotation feature. Evidence: The path's two-line reconciliation only changes its annotation migration fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"5307f08b19b94083a44e43ed801261dfd256d844","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Correlation fixture reconciliation follows Codex thread tools. Evidence: The path's two-line reconciliation only changes the PR #52 send/wait correlation fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d17b547cccfa6d47a3c7dd6f46ba717068c37735","subject":"carry(incubator): fix(lastcode): reconcile nightly 1262 integrations","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Feature-specific migration and UI reconciliation follows the Incubator features that own these paths. Evidence: The 055 and 056 fixtures belong to cross-thread message provenance and persistent-thread safeguards; the UI import cleanups affect annotation and cross-thread-message code introduced by Incubator contributions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/646f1b96e0844e7f29232ef1fa753b9bd6288868"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8ef35cea5ba323a9be5f1d7ea91baab870b8efef","subject":"carry(incubator): fix(server): preserve latest user message identity on replay (#182)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/182"],"Carry-Upstream":[],"Carry-Observation":["Server message identity behavior; no existing group."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/a292664c7b7344950cea6a7c7e49425e44afd388"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c9bcdd87cc26f3ed62ae781a9ee3f9207d244f32","subject":"carry(incubator): fix(lastcode): clean replay migration fixtures","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation fixture cleanup follows the annotation feature. Evidence: The deleted duplicated replay fixture text is exclusively in the annotation migration test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b90161fdc1923a750d7e73b95e40767d1d1f565f","subject":"carry(incubator): fix(lastcode): clean replay migration fixtures","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Correlation fixture cleanup follows Codex thread tools. Evidence: The deleted duplicated replay fixture text is exclusively in the PR #52 send/wait correlation migration test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/204da32488b3eb4dcc6615b20a0d0619085e2ba0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"1481e9059ccc0f3527cff8ec57b539b5df797941","subject":"carry(incubator): fix(lastcode): carry attachment types into mobile previews","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Mobile attachment preview behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ae64ed8f9420b128677c80f1adfe2cad4d7eb274"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"70f0bc747510087db74c8d3ab5c70e52351fa1b3","subject":"carry(incubator): fix(lastcode): keep local update builds reproducible (#183)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/183"],"Carry-Upstream":[],"Carry-Observation":["Thread CLI source-context isolation follows the Incubator-owned thread-tools feature. Evidence: The hunk scopes source-thread metadata and wait self-rejection inside the CLI introduced by PR #52 and extended by the cross-thread-message and persistent-thread Incubator contributions."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/6daea8ef0de1c9df9e28b9f90407643d40e7b9e9"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"fdd705bfb158754b03db0d036347e4a55af70c08","subject":"carry(incubator): test(server): preserve settlement activation gate (#185)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/185"],"Carry-Upstream":[],"Carry-Observation":["Settlement activation product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/52d2b539668e206f104948e6d66600b5d7ce994c"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"24b45b9de1226d798054612b81ca1318c669f4ab","subject":"carry(incubator): fix(server): canonicalize Antigravity file paths (#187)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/187"],"Carry-Upstream":[],"Carry-Observation":["Provider path correctness is upstream-worthy portability. No upstream pull-request provenance is recorded in the source."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/91b12bd3f0f6493f4ce6fe9cd7b8cf491a51b509"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"385a9b944addf1c69ac89b1286ecfef44ceca8ce","subject":"carry(incubator): feat(lastcode): add adjustable larger scrollbars (#190)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/190"],"Carry-Upstream":[],"Carry-Observation":["Cross-surface appearance feature."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e5237a1fe84d707fef14eb469f8a45bb04da9689"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0ab21149bd496008529e478c1d368c40ccbe4177","subject":"carry(incubator): feat(threads): show pending agent questions (#191)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/191"],"Carry-Upstream":[],"Carry-Observation":["Pending-question attention capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/c6767c5c1b53b93f057e6dbeb6b4467ad3485a45"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"3e21f089097e2cb17ed9bbc0b3833957b14454c0","subject":"carry(incubator): fix(lastcode): reconcile nightly typechecks","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Cross-thread agent-message formatting follows its Incubator feature. Evidence: The indentation-only hunk formats AgentMessageTimelineRow branches introduced by PR #169."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/74680f64e7e90d3007d1e5e77852980a52acc91b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"e5f7563f643bc152bfe143c54810a45019191b40","subject":"carry(incubator): fix(lastcode): preserve annotation task controls after replay","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Annotation task controls product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/aea8005a5c3ca42aa16e67cb0cf0e35853aa2605"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b78d8acbae7320166334343c28a9edaf3fe186c2","subject":"carry(incubator): fix(lastcode): preserve provider thread context after nightly replay","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context product behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e49721a1ace785d285169dd5b8e89c6297e9b8d2"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"8b1aa58db6ff93d78920a32706861033dd87943a","subject":"carry(incubator): fix(lastcode): format checkpoint recovery mock","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Thread-attention coverage follows the Incubator-owned pending-question feature. Evidence: The hunk only formats the MCP handler test introduced by PR #191."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/ecf602b25c9256b5dd170c67fcd69d410aea2bfb"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"7112f43559bc42845dc4044de02ca7bf67b3870f","subject":"carry(incubator): test(server): cover recovered provider thread context","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context test."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/4ba5e4de7300b2ad4b366a8da9fc5d6b6c08df9b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"b09e09d5081a0f3c7b557698b99ff3bdc0cbd6f2","subject":"carry(incubator): test(server): type recovered runtime context fixture","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Provider thread context test fixture."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/43c0c714b57b65d51b3787999cec235b60c321cc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"d0fa92210843f229314b706f6be456f620619d8b","subject":"carry(incubator): fix(lastcode): repair annotation display and editing (#189)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/189"],"Carry-Upstream":[],"Carry-Observation":["Annotation display and editing capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/6c4e502b65e0b39039d9fcc02a470624bb858329"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"4ba5073af76a03932ffb55579bab190a1df4c6ac","subject":"carry(incubator): fix(desktop): pick annotations inside same-origin iframes (#192)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/192"],"Carry-Upstream":[],"Carry-Observation":["Browser annotation capture capability."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/67ff1143d5e1982b1f4abcb821ea781669b6999e"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"f46ad24a1c91c23c3c5f71e7d1ad84f54cba8a49","subject":"carry(incubator): fix(server): return terminal history text after nightly rebase","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Terminal history behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/135d3d0f3ae22b3e8fb8aa5cfec8eaae9fdd2b7b"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"c4f2d71e064149356e0ebe2247666cfcebf4d2f8","subject":"carry(incubator): test(server): make local build fixtures portable (#196)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/196"],"Carry-Upstream":[],"Carry-Observation":["Provider test portability is upstream-worthy. No upstream pull-request provenance is recorded in the source."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/e1badc5cb231f6babcada2e17ab2d1cacf47e7bc"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9f1dc4a82aee875d6c5939d946d6d75134a01604","subject":"carry(incubator): fix(desktop): capture same-origin iframe annotations reliably (#198)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/198"],"Carry-Upstream":[],"Carry-Observation":["Browser annotation capture across desktop/mobile."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/93ccbecb0977abae25a9739e57cec4d6cbe441c4"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"63b2f3ea05445e2cb5cc91617b239ac1029489f8","subject":"carry(incubator): fix(mobile): use current duration formatter for working row (#199)","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/199"],"Carry-Upstream":[],"Carry-Observation":["Mobile thread presentation formatting."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0b29e6523e510323b925596dc42dc179f7730bf0"],"Carry-Applies-To":["upstream 8d3c56b (v0.0.39-nightly.20260905.1289); frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"9c6ecb9148fb99cd82ce229f05801203f198ce65","subject":"carry(incubator): compile surviving shared release guidance","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Synthetic bootstrap-only shared-guide slice; docs/lastcode/nightly-workflow.md: 20 surviving lines; docs/lastcode/release.md: 0 surviving lines."],"Carry-Evidence":["4156900a2d0257b783351b7902a0cd58b9d01cf4"],"Carry-Applies-To":["upstream 8d3c56b; frozen source 4156900"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"240d3c552ecefac40380105347728655954bc968","subject":"carry(incubator): handle aliased scanner exclusion roots","group":"incubator","metadata":{"Carry-Fix":["https://github.com/lastobelus/lastCode/pull/206"],"Carry-Upstream":[],"Carry-Observation":["The server scanner recognizes both configured and filesystem-resolved sandbox roots so an aliased configuration path cannot expose managed worktrees as importable projects. Its focused regression test belongs with that scanner behavior."],"Carry-Evidence":["https://github.com/lastobelus/lastCode/commit/0a95a19d07801c1173a6ad182b70e2d879a4985e"],"Carry-Applies-To":["upstream f8b4c46 (v0.0.39-nightly.20260905.1290); historical source 42e0e48"],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"a58dec0375f3bb24cf8d457fc4676bbb7f98d29d","subject":"fix(lastcode): separate upstream and fork migration histories","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Keep upstream migration IDs untouched; the LastCode ledger must survive complete checkpoint reconstruction."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"363065fd40b7071de9fa004d0356d60c207ee1cf","subject":"fix(desktop): show failures when the server exits before startup","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Preserve visible diagnostic errors for asynchronous backend startup failures; repeated automatic retries must not cause repeated dialogs."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Carry-Contribution: {"sourceCommit":"0c68ab0285e54610a081d5119b58adcc96dd41f0","subject":"fix(web): keep annotation timestamp helper private","group":"incubator","metadata":{"Carry-Fix":[],"Carry-Upstream":[],"Carry-Observation":["Remove the unused export flagged by the required GitHub export check; local callers and behavior are unchanged."],"Carry-Evidence":[],"Carry-Applies-To":[],"Carry-Supersedes":[]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant