Skip to content

Releases: psyb0t/docker-wickworks

v0.6.7

Choose a tag to compare

@github-actions github-actions released this 27 Jul 23:36
v0.6.7 — fix missing Codex install command in README

v0.6.6

Choose a tag to compare

@github-actions github-actions released this 27 Jul 23:04
v0.6.6 — Claude Code + Codex plugin manifests, README agent integrati…

v0.6.5

Choose a tag to compare

@github-actions github-actions released this 27 Jul 15:15
v0.6.5 — CI status badge

v0.6.4

Choose a tag to compare

@github-actions github-actions released this 27 Jul 13:24
v0.6.4 — README badges

v0.6.3

Choose a tag to compare

@github-actions github-actions released this 26 Jul 11:42
v0.6.3 — shorten server.json description to <=100 chars (MCP Registry…

v0.6.2

Choose a tag to compare

@github-actions github-actions released this 26 Jul 11:30
v0.6.2 — list on the official MCP Registry (server.json + OIDC publish)

v0.6.1

Choose a tag to compare

@github-actions github-actions released this 26 Jul 09:23
v0.6.1 — third-party license notices (THIRD_PARTY.md + LICENSES/)

v0.6.0

Choose a tag to compare

@github-actions github-actions released this 25 Jul 22:58
v0.6.0 — MCP server + agent skill + plugin

v0.5.2

Choose a tag to compare

@github-actions github-actions released this 08 Jun 01:46
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

Choose a tag to compare

@github-actions github-actions released this 08 Jun 00:08
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.