Add interactive ct_updater inspection tools#38
Open
sirebacon wants to merge 6 commits intomiscusi-peek:mainfrom
Open
Add interactive ct_updater inspection tools#38sirebacon wants to merge 6 commits intomiscusi-peek:mainfrom
sirebacon wants to merge 6 commits intomiscusi-peek:mainfrom
Conversation
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.
Summary
This adds a small interactive tooling layer under
MCP_Server/ct_updater/toolsplus the bridge helpers those toolsneed.
The goal is to make
ct_updaterinvestigation and feature-discovery work easier when a table cannot be fixed by theautomatic pipeline alone.
What was added
ct_updater.tools.diff_scanNarrow repeated value scans across state changes.
ct_updater.tools.cluster_findSearch for groups of nearby values that likely belong to the same structure.
ct_updater.tools.struct_dumpInspect memory around a resolved address or symbol as a candidate structure.
ct_updater.tools.ptr_walkWalk pointer graphs from a base address or symbol to find useful object paths.
ct_updater.tools.__main__Simple entry point for running the tools as
python -m ct_updater.tools <tool>.ct_updater.bridgehelpersAdded address resolution, scan wrappers, persistent named scan wrappers, typed reads, and write helpers needed by
the tools.
Why
The existing updater pipeline is strong at validating and repairing known table entries, but there are still cases
where a human or AI needs to inspect live memory interactively:
These tools are intended to support that workflow directly from the
ct_updaterpackage instead of relying on one-offlocal scripts.
Scope
work.
Notes
The new tooling is focused on live inspection through the existing CE bridge and reuses the updater bridge layer
rather than introducing separate ad hoc scripts.
If you want the maintainer to understand it even faster, add one short sentence near the top:
This is mainly a developer/operator tooling PR for
ct_updater, not a change to end-user bridge behavior.