-
0.7.0 Stable
released this
2026-07-12 18:11:24 +00:00 | 0 commits to main since this releaseFixed
- HTTP-Fehler ehrlich klassifizieren: Ein Fehlerstatus vom LLM-Server (Server erreichbar, Request/Modell abgelehnt) wird jetzt als neue Fehlerklasse
endpoint_errorgemeldet statt fälschlich alsendpoint_unreachable(„keine Verbindung"). Betrifft die Next-Action-Meldung im Panel. - Lesbarer Fehler-Body: Fehlermeldungen zeigen nicht mehr nur
HTTP 400: {— die Klartext-Message wird aus dem JSON-Fehlerbody (error.message/error/message) gezogen und einzeilig dargestellt. - Always-on-Thinker zur Laufzeit erkennen: Modelle, die trotz
thinking: offweiterdenken, werden jetzt am tatsächlichen Reasoning erkannt (nicht nur am Modellnamengpt-oss/harmony) — die Hinweis-Notice greift dadurch auch für Modelle wie ornith, und ihr Text ist modell-agnostisch.
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- HTTP-Fehler ehrlich klassifizieren: Ein Fehlerstatus vom LLM-Server (Server erreichbar, Request/Modell abgelehnt) wird jetzt als neue Fehlerklasse
-
0.6.0 Stable
released this
2026-07-12 15:51:13 +00:00 | 9 commits to main since this releaseAdded
output:-Block fürllm-Tasks: parametrisierbare Output-Familien (frontmatter.set,section.write) mitallowed_keys/max_chars— das Crew-Output-Vokabular ist damit offen. Die bisherigenoutput_schema: triage-v1|briefing-v1bleiben als Alias byte-identisch gültig.frontmatter.setunterstützt Listen-Werte (z.B.tags: [arbeit, notiz]); die Slug-Enum-Prüfung greift je Listen-Element.tasknotes.queryunterstütztinclude_content: true(liefert Notiz-Inhalt für die gelieferten Notizen).- Zwei neue Beispiel-Crews: Notiz-Tagger (generisch, vault-agnostisch) und Reifegrad-Tagger (Pallas-Demo) — demonstrieren das
output:-Vokabular (frontmatter.set) mit Inhalt. - README-Abschnitt „Eigene Crews schreiben" (output:-Syntax, include_content, write_scope).
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
0.5.0 Stable
released this
2026-07-11 13:39:35 +00:00 | 32 commits to main since this releaseAdded
create_if_missing-Flag fürsection.replace-Tasks in Crews: legt die Zieldatei
(Marker-Block, kein Template) samt fehlender Elternordner an, statt kontrolliert zu
failen. Die Daily-Briefing-Beispiel-Crew nutzt es und braucht die heutige Daily Note
nicht mehr vorab. Undo entfernt die erzeugte Note (Papierkorb).
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
0.4.0 Stable
released this
2026-07-10 21:25:07 +00:00 | 49 commits to main since this releaseAdded
- Endpoint-Management-UI in den Settings: Zeilen-Editor für Endpunkte (Hinzufügen/Entfernen,
Per-Zeile-Verbindungsstatus mit Fehlerklassen, aktiv-Marker, nicht-blockierende
Eingabe-Warnungen, Ein-Klick-Presets für LM Studio und Ollama) und für gesperrte Endpunkte. - Standardmodell als Dropdown, geladen aus dem aktiven Endpoint (
Modelle laden), mit
Freitext-Fallback offline; eine gespeicherte, aktuell nicht gelistete Modell-Auswahl bleibt
als Option erhalten.
Changed
- Verbindungstest läuft jetzt pro Endpunkt-Zeile (Live-Status) statt über einen globalen Button.
endpoint_diagnostics(Status-Klassifikation, Presets, Eingabe-Prüfung) ausobsidian-kit
vendored;endpoint.tsauf Kit-Stand gehoben (parseEndpointList).
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- Endpoint-Management-UI in den Settings: Zeilen-Editor für Endpunkte (Hinzufügen/Entfernen,
-
0.3.0 Stable
released this
2026-07-08 14:17:56 +00:00 | 58 commits to main since this releaseAdded
- Ollama-Unterstützung ohne Provider-Setting: Kontextlängen-Sonde (
/api/show),
provider-übergreifende Thinking-Suppression, CORS-Non-Stream-Fallback,
Always-on-Thinker-Erkennung (gpt-oss/harmony) mit run.md-Vermerk + Notice.
Changed
LmStudioClient→LocalLlmClient(provider-agnostischer Name).
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- Ollama-Unterstützung ohne Provider-Setting: Kontextlängen-Sonde (
-
0.2.0 Stable
released this
2026-07-06 22:52:23 +00:00 | 72 commits to main since this releaseRelease 0.2.0
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
Source code (ZIP)
-
0.1.0 Stable
released this
2026-07-06 06:10:01 +00:00 | 85 commits to main since this releaseAdded
- Deterministic crew pipeline. A crew ("team") runs as a fixed sequence of three
task kinds —collector(deterministic context gathering),llm(one schema-bound
chat completion),actions(deterministic application of a validated action list).
The model decides content only, inside narrow contracts; the orchestrator decides
flow, paths and writes. - Constrain-then-verify before every write. Every LLM output is extracted,
validated against a built-in versioned schema, and source-bound (no invented paths or
enum values), with a one-shot repair pass for malformed JSON. - One git commit per run with one-click undo. Every run — ok, partial, failed or
aborted — ends in exactly one commit covering only the files it touched plus its run
log. Undo survives a dirty working tree (stash-wrappedgit revert). - Run panel with hub navigation. A single view with internal tabs (Crews · History),
a persistent status line carrying the one cancel button, and honest cooperative-abort
feedback (a run that finished before the abort landed says so rather than freezing). - Two shipped example crews, installable via a command: Task-Triage and
Daily-Briefing. - Full in-vault observability. Each run writes a human-readable
run.md(Bases-
compatible) and a machine-readable state file. - Local-model-aware LM Studio client — context length probing, thinking suppression,
JIT stall timeout, ordered endpoint fallback.
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- Deterministic crew pipeline. A crew ("team") runs as a fixed sequence of three