mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-16 20:50:34 +00:00
- 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> |
||
|---|---|---|
| .. | ||
| plugin.json | ||
| README.md | ||
| tiddlywiki_ene_bridge.py | ||
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-runso loader/admission logic can plan before commit