Research-Stack/4-Infrastructure/infra/ene_plugins/tiddlywiki_bridge
Devin AI 38b48e30d2 fix: preserve semantic differences in refactored shared utilities
- q16_lut_generator.py: revert to local unsigned-wrapping Q16 functions
  (hardware LUT uses 32-bit wrapping + 0xFFFFFFFF div-by-zero sentinel)
- dataset_ingest_rds.py: import load_json (not load_jsonl) — files are
  standard JSON arrays, not JSONL
- tiddlywiki_ene_bridge.py: use canonical_json (ensure_ascii=False) to
  preserve non-ASCII hash stability
- ollama_deepseek_review_emitter.py: restore "sha256:" prefix wrapper
- md_to_jsonl_converter.py: restore "sha256:" prefix via compute_sha256
- text_container_to_jsonl.py: restore "sha256:" prefix via compute_sha256
- kotc_sim.py: restore "sha256:" prefix on sha256_text
- gccl_waveprobe.py: restore Q16_MIN/Q16_MAX clamping on q16_add/sub/mul
- vcn_famm_transport.py: restore Q16_MIN/Q16_MAX clamping on q16_add/sub/mul
- lib/jsonl.py: add canonical_json() with ensure_ascii=False

Build: py_compile verified on all 71 modified files
Co-Authored-By: Allaun Silverfox <bigdataiscoming+9i37y6j2@protonmail.com>
2026-06-15 02:26:45 +00:00
..
plugin.json collapse: prover orchestration layers, FAMM verilator harness, swarm topological prober, spec sheets, virtual FPGA system tests, merge conflict resolution 2026-05-06 23:42:01 -05:00
README.md collapse: prover orchestration layers, FAMM verilator harness, swarm topological prober, spec sheets, virtual FPGA system tests, merge conflict resolution 2026-05-06 23:42:01 -05:00
tiddlywiki_ene_bridge.py fix: preserve semantic differences in refactored shared utilities 2026-06-15 02:26:45 +00:00

TiddlyWiki ENE Bridge

Frontline hotswappable plugin for the planned ENE revamp.

The bridge scans local TiddlyWiki .tid files and turns each tiddler into an ENE package with a deterministic receipt. It is intentionally usable before the full plugin runtime exists: run it as a standalone CLI now, then mount the same module behind the future ENE plugin loader later.

Dry Run

python3 4-Infrastructure/infra/ene_plugins/tiddlywiki_bridge/tiddlywiki_ene_bridge.py \
  --dry-run \
  --limit 5

Ingest

python3 4-Infrastructure/infra/ene_plugins/tiddlywiki_bridge/tiddlywiki_ene_bridge.py \
  --ingest

Behavior

  • parses TiddlyWiki field blocks and body text
  • computes source and plugin receipts
  • derives a bounded route vector
  • writes one ENE package per tiddler
  • skips $:/ system tiddlers by default
  • stores incremental plugin state in SQLite
  • refuses active script content
  • supports --dry-run so loader/admission logic can plan before commit