Releases: psyb0t/docker-wickworks
Releases · psyb0t/docker-wickworks
Release list
v0.6.7
v0.6.6
v0.6.6 — Claude Code + Codex plugin manifests, README agent integrati…
v0.6.5
v0.6.4
v0.6.3
v0.6.3 — shorten server.json description to <=100 chars (MCP Registry…
v0.6.2
v0.6.2 — list on the official MCP Registry (server.json + OIDC publish)
v0.6.1
v0.6.1 — third-party license notices (THIRD_PARTY.md + LICENSES/)
v0.6.0
v0.6.0 — MCP server + agent skill + plugin
v0.5.2
v0.5.2 — republish v0.5.1 code No source change. v0.5.1 tag on remote points at an incomplete intermediate commit (638687a) that was missing the touch_events / touch_count smc work + tests; the complete code is at 53f1ecf on main but never got tagged because the second tag attempt aborted on "tag already exists". v0.5.2 tags main at the complete code so the CI-published Docker image matches the v0.5.1 changelog entry. Pin consumers to psyb0t/wickworks:v0.5.2.
v0.5.1
v0.5.1 — surface OB mitigation flags + per-OB touch_count Additive schema change to the order-block primitive: every OB now ships with three freshness signals so consumers can pick their criterion: - mitigated_wick : later bar's wick traversed the zone (lib loose) - mitigated_close: later bar's body broke past (lib strict) - touch_count : number of distinct touch events (trader-eye) The two lib flags fire only on INVALIDATING breaks (price went past the zone in the wrong direction). touch_count fires on ANY range intersection — captures "price visited this level" without requiring a full break. Cost: one extra smc.ob() call (mitigation_close) + a numpy edge-count per OB (touch_count). Sub-ms total. OB cap raised 20 -> 40 since we no longer pre-filter. Breaking for FE renderers that assumed every emitted OB was live. Quanthex consumer updated to gate on wick + use touch_count for graded weighting (0 fresh = full, 1 = half, 2+ = re-emit as S/R primitive). 323 unit tests pass.