synartesis 0.8.7 → 0.8.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,32 @@
2
2
 
3
3
  What changed, and why it mattered. Dates are release dates.
4
4
 
5
+ ## 0.8.8 — 2026-09-22
6
+
7
+ ### Fixed
8
+
9
+ - **The GitHub Models preset added in 0.8.7 could never have worked.** GitHub
10
+ retired its inference API on 30 July 2026, three weeks before that entry was
11
+ written. The host is still there and still answers -- `200 OK`, with
12
+ `content-type: text/plain` and a body of `OK`, whatever path you ask for --
13
+ which is exactly the shape of thing that looks alive until you try to use
14
+ it. The entry was built from blog posts and community threads, every one of
15
+ them written before the retirement, while the vendor's own documentation
16
+ said in plain words that the API was gone.
17
+
18
+ Removed, and replaced with **OpenRouter**: one key, many models, and
19
+ nineteen of the free ones currently advertise tool support, which is the
20
+ constraint that actually decides whether a model can drive this window at
21
+ all. Its catalogue is public, so which nineteen can be checked rather than
22
+ guessed.
23
+
24
+ Groq, added in the same release, was checked the same way and is fine.
25
+
26
+ The note now at the head of the preset list is the part worth keeping: send
27
+ a request to the host before adding one. A preset that does not work is
28
+ worse than no preset, because the person who picks it concludes this window
29
+ is broken rather than that the service is.
30
+
5
31
  ## 0.8.7 — 2026-09-22
6
32
 
7
33
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "synartesis",
3
- "version": "0.8.7",
3
+ "version": "0.8.8",
4
4
  "description": "An undo layer for AI agents.",
5
5
  "type": "module",
6
6
  "private": false,