You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+59-6Lines changed: 59 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,72 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
## [Unreleased]
8
+
## [0.10.0] - 2026-03-26
9
9
10
-
### Removed
10
+
### Breaking Changes
11
+
12
+
-**MetaPlanner, PlanExecutor, PlanRunner, PlanTracer, PlanCritic removed** — The autonomous planning system with JSON task graphs, verification predicates, and replanning has been removed. Use [Composition Patterns](docs/guides/subagent-patterns.md) (`with` chains, `Task.async_stream`, subagents-as-tools) for orchestration instead.
- Internal `llm_client` package removed — use `PtcRunner.LLM` behaviour directly
16
+
-**`plan:` no longer auto-enables `journaling: true`** — Plans are now display-only labels for progress visibility. To use journaled task caching, set `journaling: true` explicitly.
17
+
18
+
### Added
19
+
20
+
**Model String Shorthand**
21
+
22
+
- Accept model strings directly in `SubAgent.run` — e.g., `llm: "haiku"` instead of building an LLM struct
23
+
24
+
**Clojure Conformance Expansion (~30 new functions/forms)**
- Named fn for self-recursion (`(fn name [x] ...)`)
34
+
-`%&` rest args in `#()` short function syntax
35
+
- Keyword args via rest destructuring (`[& {:keys [a]}]`)
36
+
-`:strs` map destructuring for string-keyed maps
37
+
-`def`/`defn`/`defonce` can shadow builtins (Clojure-compatible)
11
38
12
-
-**MetaPlanner, PlanExecutor, PlanRunner, PlanTracer, PlanCritic** — The autonomous planning system with JSON task graphs, verification predicates, and replanning has been removed. Use [Composition Patterns](docs/guides/subagent-patterns.md) (`with` chains, `Task.async_stream`, subagents-as-tools) for orchestration instead.
- Trace analyzer agent for investigating execution traces
55
+
- Streaming `query_events` and `aggregate_events` tools
56
+
57
+
### Fixed
58
+
59
+
-`keys`/`vals` nil-tolerant (like other collection helpers)
60
+
-`concat` type error diagnostics for non-collection args
61
+
- Hyphen/underscore normalization in flex_access lookups
62
+
-`and` returns last truthy value instead of boolean (Clojure conformance)
63
+
-`some` with keyword pred returns extracted value, not boolean
64
+
-`defn` inside `let` now visible across program expressions
65
+
- Code fence parsing uses line-by-line parser instead of regex
66
+
- Runtime exceptions classified as `:runtime_error` not `:tool_error`
67
+
- Sandbox-safe `list_traces` with bounded head/tail reads
15
68
16
69
### Changed
17
70
18
-
-**`plan:` no longer auto-enables `journaling: true`** — Plans are now display-only labels for progress visibility. To use journaled task caching, set `journaling: true` explicitly.
19
71
- Progress checklist renders for any agent with a `plan:`, regardless of `journaling:` setting
20
72
-`step-done` instruction text updated to reflect it is optional
0 commit comments