refactor: split implementation-helpers code-change orchestration - #5
Open
tom-sapletta-com wants to merge 28 commits into
Open
refactor: split implementation-helpers code-change orchestration#5tom-sapletta-com wants to merge 28 commits into
tom-sapletta-com wants to merge 28 commits into
Conversation
Statistics: 54 files changed, 15703 insertions, 13468 deletions Summary: - Dirs: src=31, project=20, .=3 - Exts: .ts=31, .yaml=7, .md=6, .mmd=3, .png=3, .html=1 - A/M/D: 21/33/0 - Added: project2.sh, src/communication/llm/implementation.ts, src/communication/llm/index.ts, src/core/schema/code-change.ts, src/core/schema/conclusions.ts, src/core/schema/constants.ts, src/core/schema/index.ts, src/core/schema/intent.ts ... - Symbols: unknown, isNestedCheckout, planIds, oldIndex, expectedRemaining Added files: - project2.sh (+79/-0) - src/communication/llm/implementation.ts (+514/-0) - src/communication/llm/index.ts (+1/-0) - src/core/schema/code-change.ts (+322/-0) - src/core/schema/conclusions.ts (+210/-0) - src/core/schema/constants.ts (+31/-0) - src/core/schema/index.ts (+4/-0) - src/core/schema/intent.ts (+276/-0) - src/core/schema/utils.ts (+219/-0) - src/core/types/code-change.ts (+221/-0) - src/core/types/diagnostics.ts (+45/-0) - src/core/types/index.ts (+4/-0) - src/core/types/intent.ts (+258/-0) - src/core/types/pipeline.ts (+173/-0) - src/semantic/reranker/candidate.ts (+200/-0) - src/semantic/reranker/index.ts (+8/-0) - src/semantic/reranker/result.ts (+264/-0) - src/semantic/reranker/types.ts (+106/-0) - src/semantic/reranker/validation.ts (+111/-0) - src/synthesis/code-change-plan/implementation.ts (+1310/-0) - ... and 1 more Modified files: - README.md (+4/-6) - TODO.md (+3/-3) - project/README.md (+5/-5) - project/analysis.toon.yaml (+174/-194) - project/calls.mmd (+933/-867) - project/calls.png (+0/-0) - project/calls.toon.yaml (+359/-264) - project/calls.yaml (+4513/-3702) - project/compact_flow.mmd (+10/-5) - project/compact_flow.png (+0/-0) - project/context.md (+161/-156) - project/evolution.toon.yaml (+30/-30) - project/flow.mmd (+24/-24) - project/flow.png (+0/-0) - project/index.html (+2/-2) - project/map.toon.yaml (+1955/-1715) - project/mermaid.export (+1132/-1127) - project/planfile-tickets.yaml (+964/-708) - project/project.toon.yaml (+28/-28) - project/prompt.txt (+4/-6) - ... and 13 more Implementation notes (heuristics): - Type inferred from file paths + diff keywords + add/delete ratio - Scope prefers 'goal' when goal/* is touched; otherwise based on top-level dirs - For <=6 files: generate short per-file notes from added lines (defs/classes/click options/headings) - A/M/D derived from git name-status; per-file +X/-X from git numstat
tom-sapletta-com
force-pushed
the
chore/refactor-toon-ui
branch
from
August 4, 2026 09:40
1e0ad5c to
73525b1
Compare
tom-sapletta-com
force-pushed
the
chore/refactor-toon-ui
branch
from
August 4, 2026 09:42
73525b1 to
a7b4e1d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refactor focused on src/synthesis/code-change-plan/implementation-helpers.ts following project/analysis.toon.yaml. Extracted helpers for propose/evaluate/close flows and related patch/application helpers. Kept behavior contracts, schema assertions, and deterministic generation metadata intact. Latest commit: a7b4e1d. Branch: chore/refactor-toon-ui, base: main.