Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .changeset/sep-phase3-ui-capabilities.md

This file was deleted.

19 changes: 19 additions & 0 deletions typescript/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @smooai/smooth-operator-core

## 0.5.0

### Minor Changes

- 2c3008b: SEP Phase 3 (engine) — thread `ui_capabilities` through the handshake.

`ExtensionHost::load` now takes a `ui_capabilities: Vec<String>` and forwards it
into each extension's `initialize` params, so a host declares which `ui/request`
kinds its frontend can render (`select`/`confirm`/`input`/`notify`/`set_status`/
`set_widget`/`set_title`). Extensions gate their UI on this list (the SDK's
`hasUI`); the ext→host `ui/request` seam and its headless `-32001 NoUI` default
already landed in Phase 2's `HostDelegate`. A new `SEP_ECHO_UI` mode on the
reference `sep-echo-peer` round-trips a `ui/request` confirm from inside a
`tool/execute`, echoing the negotiated caps into the prompt, exercised by the new
`sep_ui_path` integration test (answered verdict + headless NoUI).

The engine ships headless (empty caps); smooth-code and the daemon supply the
real capability set and a `HostDelegate` that renders the dialogs.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion typescript/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smooai/smooth-operator-core",
"version": "0.4.0",
"version": "0.5.0",
"description": "Native TypeScript implementation of the smooth-operator agent engine — an in-process, OpenAI-compatible agentic tool-calling loop with knowledge grounding. The TypeScript sibling of the Rust reference engine, the C# core, and the Python core.",
"type": "module",
"license": "MIT",
Expand Down
Loading