@henols/c64-re-tools 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/THIRD-PARTY-NOTICES.md +26 -0
- package/bin/cli.mjs +18 -7
- package/package.json +6 -4
- package/skills/acme-build/SKILL.md +67 -47
- package/skills/acme-build/scripts/acme.mjs +2 -19
- package/skills/acme-build/template.a +17 -3
- package/skills/c64-memory-mapping/SKILL.md +426 -2
- package/skills/c64-program-recon/SKILL.md +479 -3
- package/skills/c64-program-recon/references/reconstruction.md +10 -4
- package/skills/c64-program-recon/references/tool-selection.md +2 -3
- package/skills/c64-program-recon/scripts/packer-finding.mjs +631 -0
- package/skills/c64-program-recon/templates/memory-map.template.md +86 -51
- package/skills/c64-provenance-diff/SKILL.md +4 -4
- package/skills/c64-provenance-diff/scripts/diff-images.mjs +3 -0
- package/skills/c64-provenance-diff/scripts/recovery-schema.mjs +14 -4
- package/skills/c64-ram-capture/RELEASES.json.example +17 -0
- package/skills/c64-ram-capture/SKILL.md +46 -2
- package/skills/c64-ram-capture/scripts/project-paths.mjs +1 -1
- package/skills/c64-ram-capture/scripts/watch-loads.mjs +6 -0
- package/skills/routine-queue-walker/SKILL.md +273 -0
- package/skills/vice-wedge-triage/SKILL.md +16 -0
- package/skills/c64-provenance-diff/scripts/diff-images.test.mjs +0 -665
- package/skills/c64-ram-capture/scripts/d64-parse.test.mjs +0 -243
- package/skills/c64-ram-capture/scripts/dump-artifacts.test.mjs +0 -133
- package/skills/c64-ram-capture/scripts/test-corpus.mjs +0 -75
- package/skills/c64-ram-capture/scripts/watch-loads.test.mjs +0 -339
|
@@ -160,6 +160,22 @@ fields above** — unit-proven (`stock-run-until.test.ts`, 21/21, 07-14) but not
|
|
|
160
160
|
re-exercised against a real emulator by this gap-closure batch. **MEDIUM on the fork** — read off
|
|
161
161
|
the tool schema, not reproduced.
|
|
162
162
|
|
|
163
|
+
**A second binary-monitor client is contention, not a wedge, and it has a cheap tell — stock
|
|
164
|
+
only.** Stock VICE's binary monitor services exactly one client; a second `connect()` sits
|
|
165
|
+
unserviced in the backlog with no reply and no EOF. The discriminator: a socket that *accepts* the
|
|
166
|
+
connection but never answers is contention, not a hung emulator — and the broker itself already
|
|
167
|
+
knows whether it holds a lease on that port, which is the thing a human or agent can actually go
|
|
168
|
+
check instead of guessing. Named causes, so a reader knows where to look: a hand-run `nc` session
|
|
169
|
+
left open against the port, a second Claude Code session driving the same instance, VICE's own
|
|
170
|
+
`-remotemonitor`, and any other 6502 debugger that dials in. **This plugin's own annotation route
|
|
171
|
+
can never be one of them:** the `anno_*` tool surface and the `anno` CLI are pure store-and-image
|
|
172
|
+
readers — they open a SQLite annotation store and decode bytes out of a file on disk, and there is
|
|
173
|
+
no emulator connection anywhere on that path to contend for the port. That is a structural
|
|
174
|
+
property of what those calls do, not a documented promise, so a user chasing a silent emulator can
|
|
175
|
+
rule this project's own annotation tooling out immediately rather than suspecting it. The standing
|
|
176
|
+
advice does not change: contention is **never** a reason to recycle — the instance is healthy,
|
|
177
|
+
merely claimed elsewhere.
|
|
178
|
+
|
|
163
179
|
## The manual fallback, when `vice_diagnose` cannot answer
|
|
164
180
|
|
|
165
181
|
`vice_diagnose` needs the host broker running. When it reports that no `broker.json` record
|