chore(release): v0.26.0

Version bump via changesets.
This commit is contained in:
gsxdsm
2026-05-10 08:55:51 -07:00
parent f1ece4b1d4
commit 08e04498f5
79 changed files with 358 additions and 147 deletions

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix merger autostash lifecycle cleanup to drop primary and race-rescue stashes on terminal paths, and add startup/periodic stale autostash sweeping with a configurable max-age threshold.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Add stash recovery APIs and dashboard surface for listing, diffing, applying, and safely dropping orphaned merger autostashes.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Create a tracking GitHub issue when a Fusion task is created with GitHub tracking enabled. Default is OFF; no GitHub calls are made when tracking is disabled.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
GitHub tracking issues now use the format `[FN-XXXX] Title` for the title and a short plaintext summary prefixed with `Fusion task: FN-XXXX` for the body. The full task prompt is never included and no hyperlink back to Fusion is added.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fusion now posts a short comment on the linked GitHub tracking issue when a tracked task moves to in-progress or done. Comments include the Fusion task ID as plain text and never link back to the Fusion app.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fusion now closes the linked GitHub tracking issue when a tracked task moves to done, and reopens it when the task moves back to an active column. Done → archived leaves the issue closed. Failures are recorded in the task activity log and never block the move.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Expose per-task GitHub tracking controls in task creation/editing and task detail, including repo override handling, linked-issue display, and manual unlink flow.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
GitHub tracking lifecycle now strictly honors the project-level `githubAuthMode`. Token mode requires `githubAuthToken` (or `GITHUB_TOKEN`); gh-cli mode requires an authenticated `gh` CLI. The previous opportunistic fallback no longer applies to tracking issue creation/comments/state sync flows (legacy PR/import flows are unchanged).

View File

@@ -1,7 +0,0 @@
---
"@runfusion/fusion": patch
---
Generalize the SQLite schema self-heal pass to reconcile missing columns for every critical table on `Database.init()`, not just `tasks`.
This prevents legacy or drifted databases from hitting `no such column: <X>` regressions after new column additions, and adds architecture lint coverage to ensure new `CREATE TABLE` definitions are always included in schema-compatibility coverage.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Merger sessions now honor the assigned agent's `runtimeConfig.model` before falling back to project/global defaults, matching executor and planning lanes.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Research now works out of the box using the agent's built-in `WebSearch`/`WebFetch` tools. External search providers (SearXNG, Brave, Google, Tavily) are now optional advanced configuration.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Honor task-configured merge targets across CLI and merge completion paths, including PR creation base branch selection and merge metadata resolution.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix `fn_task_update` (and `fn_task_create`) silently failing with "Agent not found" when callers pass an empty string or the literal string `"null"` to clear a task's agent assignment. Empty/whitespace strings and `"null"` are now normalized to a clear-assignment signal, matching the dashboard `PATCH /api/tasks/:id` contract. JSON `null` continues to work as before.

View File

@@ -1,7 +0,0 @@
---
"@runfusion/fusion": patch
---
Add per-task GitHub tracking fields (enabled flag, optional repo override,
linked issue metadata) to the Task contract and SQLite store. No user-visible
behavior yet; surfaced by FN-3870+.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Restore ListView bulk-delete: select multiple tasks and delete them together, with archived selections skipped automatically and a per-task force-delete prompt for dependency conflicts.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Improve stale dependency unblocking so todo tasks are released promptly when their blocker reaches done or archived, and ensure startup recovery runs the stale `blockedBy` sweep once on boot to repair previously stuck rows. This complements the existing periodic self-heal pass, reducing unblock latency and automatically repairing incidents like dependents remaining blocked after a completed task.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": minor
---
Show downstream blocker fan-out count on the board so high-impact blockers are visible at a glance.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix agent sidebar action buttons (Run Now, Pause, Details) overflowing on narrow agent cards by collapsing them to icon-only controls in the sidebar context.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix bundled Dependency Graph plugin reliability in the dashboard. Built-in plugin view registration now uses literal-specifier lazy imports so production bundles can resolve and load the bundled graph/roadmap dashboard views instead of falling back to an unavailable placeholder. Plugin install mode now resolves bundled plugin paths server-side when relative `./plugins/...` inputs do not exist under the current working directory, so installing built-in plugins from Settings works reliably across runtime locations.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix triage planning model selection so project/task planning settings are passed to runtime using the correct default model keys.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Hide Chat Rooms behind the `chatRooms` experimental flag. By default, Chat now shows direct-chat-only UI; re-enable rooms via **Settings → Experimental Features → Chat Rooms**.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Bundle and auto-install the cli-printing-press plugin with the published CLI.

View File

@@ -1,5 +0,0 @@
---
"@runfusion/fusion": patch
---
Fix scheduler `blockedBy` propagation so dependency-unblocked todo tasks are not re-pointed to unrelated overlap blockers, and extend stale-blocker recovery to clear corrupted `blockedBy` rows that no longer match unresolved dependencies.

View File

@@ -2,6 +2,107 @@
User-facing release notes aggregated across all packages. This file is auto-synced from each `packages/*/CHANGELOG.md` by `scripts/release.mjs` — do not edit by hand. User-facing release notes aggregated across all packages. This file is auto-synced from each `packages/*/CHANGELOG.md` by `scripts/release.mjs` — do not edit by hand.
## 0.26.0
### @fusion/dashboard
#### Patch Changes
- @fusion/core@0.26.0
- @fusion/engine@0.26.0
- @fusion-plugin-examples/dependency-graph@0.1.15
- @fusion-plugin-examples/roadmap@0.1.3
- @fusion-plugin-examples/cursor-runtime@0.1.3
- @fusion-plugin-examples/droid-runtime@0.1.10
- @fusion-plugin-examples/hermes-runtime@0.2.34
- @fusion-plugin-examples/openclaw-runtime@0.2.34
- @fusion-plugin-examples/paperclip-runtime@0.2.34
### @fusion/desktop
#### Patch Changes
- @fusion/core@0.26.0
- @fusion/dashboard@0.26.0
### @fusion/engine
#### Patch Changes
- @fusion/core@0.26.0
- @fusion/pi-claude-cli@0.26.0
### @fusion/plugin-sdk
#### Patch Changes
- @fusion/core@0.26.0
### @runfusion/fusion
#### Minor Changes
- 8c71516: Show downstream blocker fan-out count on the board so high-impact blockers are visible at a glance.
#### Patch Changes
- 6240afe: Fix merger autostash lifecycle cleanup to drop primary and race-rescue stashes on terminal paths, and add startup/periodic stale autostash sweeping with a configurable max-age threshold.
- 7e8541b: Add stash recovery APIs and dashboard surface for listing, diffing, applying, and safely dropping orphaned merger autostashes.
- 6cab8f9: Create a tracking GitHub issue when a Fusion task is created with GitHub tracking enabled. Default is OFF; no GitHub calls are made when tracking is disabled.
- 56c232a: GitHub tracking issues now use the format `[FN-XXXX] Title` for the title and a short plaintext summary prefixed with `Fusion task: FN-XXXX` for the body. The full task prompt is never included and no hyperlink back to Fusion is added.
- ebab75e: Fusion now posts a short comment on the linked GitHub tracking issue when a tracked task moves to in-progress or done. Comments include the Fusion task ID as plain text and never link back to the Fusion app.
- 4450257: Fusion now closes the linked GitHub tracking issue when a tracked task moves to done, and reopens it when the task moves back to an active column. Done → archived leaves the issue closed. Failures are recorded in the task activity log and never block the move.
- 8e9cd1a: Expose per-task GitHub tracking controls in task creation/editing and task detail, including repo override handling, linked-issue display, and manual unlink flow.
- 860d183: GitHub tracking lifecycle now strictly honors the project-level `githubAuthMode`. Token mode requires `githubAuthToken` (or `GITHUB_TOKEN`); gh-cli mode requires an authenticated `gh` CLI. The previous opportunistic fallback no longer applies to tracking issue creation/comments/state sync flows (legacy PR/import flows are unchanged).
- d74197e: Generalize the SQLite schema self-heal pass to reconcile missing columns for every critical table on `Database.init()`, not just `tasks`.
This prevents legacy or drifted databases from hitting `no such column: <X>` regressions after new column additions, and adds architecture lint coverage to ensure new `CREATE TABLE` definitions are always included in schema-compatibility coverage.
- 4051dab: Merger sessions now honor the assigned agent's `runtimeConfig.model` before falling back to project/global defaults, matching executor and planning lanes.
- d25e8cb: Research now works out of the box using the agent's built-in `WebSearch`/`WebFetch` tools. External search providers (SearXNG, Brave, Google, Tavily) are now optional advanced configuration.
- bcb79d8: Honor task-configured merge targets across CLI and merge completion paths, including PR creation base branch selection and merge metadata resolution.
- 50fdea6: Fix `fn_task_update` (and `fn_task_create`) silently failing with "Agent not found" when callers pass an empty string or the literal string `"null"` to clear a task's agent assignment. Empty/whitespace strings and `"null"` are now normalized to a clear-assignment signal, matching the dashboard `PATCH /api/tasks/:id` contract. JSON `null` continues to work as before.
- 46efd00: Add per-task GitHub tracking fields (enabled flag, optional repo override,
linked issue metadata) to the Task contract and SQLite store. No user-visible
behavior yet; surfaced by FN-3870+.
- 00b35b8: Restore ListView bulk-delete: select multiple tasks and delete them together, with archived selections skipped automatically and a per-task force-delete prompt for dependency conflicts.
- ff9fb55: Improve stale dependency unblocking so todo tasks are released promptly when their blocker reaches done or archived, and ensure startup recovery runs the stale `blockedBy` sweep once on boot to repair previously stuck rows. This complements the existing periodic self-heal pass, reducing unblock latency and automatically repairing incidents like dependents remaining blocked after a completed task.
- eea4def: Fix agent sidebar action buttons (Run Now, Pause, Details) overflowing on narrow agent cards by collapsing them to icon-only controls in the sidebar context.
- da101ef: Fix bundled Dependency Graph plugin reliability in the dashboard. Built-in plugin view registration now uses literal-specifier lazy imports so production bundles can resolve and load the bundled graph/roadmap dashboard views instead of falling back to an unavailable placeholder. Plugin install mode now resolves bundled plugin paths server-side when relative `./plugins/...` inputs do not exist under the current working directory, so installing built-in plugins from Settings works reliably across runtime locations.
- 4ccef83: Fix triage planning model selection so project/task planning settings are passed to runtime using the correct default model keys.
- 772c9f6: Hide Chat Rooms behind the `chatRooms` experimental flag. By default, Chat now shows direct-chat-only UI; re-enable rooms via **Settings → Experimental Features → Chat Rooms**.
- f1ece4b: Bundle and auto-install the cli-printing-press plugin with the published CLI.
- 5b15f45: Fix scheduler `blockedBy` propagation so dependency-unblocked todo tasks are not re-pointed to unrelated overlap blockers, and extend stale-blocker recovery to clear corrupted `blockedBy` rows that no longer match unresolved dependencies.
### runfusion.ai
#### Patch Changes
- Updated dependencies [6240afe]
- Updated dependencies [7e8541b]
- Updated dependencies [6cab8f9]
- Updated dependencies [56c232a]
- Updated dependencies [ebab75e]
- Updated dependencies [4450257]
- Updated dependencies [8e9cd1a]
- Updated dependencies [860d183]
- Updated dependencies [d74197e]
- Updated dependencies [4051dab]
- Updated dependencies [d25e8cb]
- Updated dependencies [bcb79d8]
- Updated dependencies [50fdea6]
- Updated dependencies [46efd00]
- Updated dependencies [00b35b8]
- Updated dependencies [ff9fb55]
- Updated dependencies [8c71516]
- Updated dependencies [eea4def]
- Updated dependencies [da101ef]
- Updated dependencies [4ccef83]
- Updated dependencies [772c9f6]
- Updated dependencies [f1ece4b]
- Updated dependencies [5b15f45]
- @runfusion/fusion@0.26.0
## 0.25.0 ## 0.25.0
### @fusion/dashboard ### @fusion/dashboard
@@ -4114,6 +4215,14 @@ for reference.
- Updated dependencies [a2ed6d0] - Updated dependencies [a2ed6d0]
- @runfusion/fusion@0.1.0 - @runfusion/fusion@0.1.0
## 0.11.10
### @fusion/droid-cli
#### Patch Changes
- @fusion-plugin-examples/droid-runtime@0.1.10
## 0.11.9 ## 0.11.9
### @fusion/droid-cli ### @fusion/droid-cli

View File

@@ -1,6 +1,6 @@
{ {
"name": "fusion-workspace", "name": "fusion-workspace",
"version": "0.25.0", "version": "0.26.0",
"private": true, "private": true,
"license": "MIT", "license": "MIT",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,34 @@
# runfusion.ai # runfusion.ai
## 0.26.0
### Patch Changes
- Updated dependencies [6240afe]
- Updated dependencies [7e8541b]
- Updated dependencies [6cab8f9]
- Updated dependencies [56c232a]
- Updated dependencies [ebab75e]
- Updated dependencies [4450257]
- Updated dependencies [8e9cd1a]
- Updated dependencies [860d183]
- Updated dependencies [d74197e]
- Updated dependencies [4051dab]
- Updated dependencies [d25e8cb]
- Updated dependencies [bcb79d8]
- Updated dependencies [50fdea6]
- Updated dependencies [46efd00]
- Updated dependencies [00b35b8]
- Updated dependencies [ff9fb55]
- Updated dependencies [8c71516]
- Updated dependencies [eea4def]
- Updated dependencies [da101ef]
- Updated dependencies [4ccef83]
- Updated dependencies [772c9f6]
- Updated dependencies [f1ece4b]
- Updated dependencies [5b15f45]
- @runfusion/fusion@0.26.0
## 0.25.0 ## 0.25.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "runfusion.ai", "name": "runfusion.ai",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Launch Fusion with `npx runfusion.ai` — tiny alias for @runfusion/fusion.", "description": "Launch Fusion with `npx runfusion.ai` — tiny alias for @runfusion/fusion.",
"homepage": "https://runfusion.ai", "homepage": "https://runfusion.ai",

View File

@@ -1,5 +1,41 @@
# @runfusion/fusion # @runfusion/fusion
## 0.26.0
### Minor Changes
- 8c71516: Show downstream blocker fan-out count on the board so high-impact blockers are visible at a glance.
### Patch Changes
- 6240afe: Fix merger autostash lifecycle cleanup to drop primary and race-rescue stashes on terminal paths, and add startup/periodic stale autostash sweeping with a configurable max-age threshold.
- 7e8541b: Add stash recovery APIs and dashboard surface for listing, diffing, applying, and safely dropping orphaned merger autostashes.
- 6cab8f9: Create a tracking GitHub issue when a Fusion task is created with GitHub tracking enabled. Default is OFF; no GitHub calls are made when tracking is disabled.
- 56c232a: GitHub tracking issues now use the format `[FN-XXXX] Title` for the title and a short plaintext summary prefixed with `Fusion task: FN-XXXX` for the body. The full task prompt is never included and no hyperlink back to Fusion is added.
- ebab75e: Fusion now posts a short comment on the linked GitHub tracking issue when a tracked task moves to in-progress or done. Comments include the Fusion task ID as plain text and never link back to the Fusion app.
- 4450257: Fusion now closes the linked GitHub tracking issue when a tracked task moves to done, and reopens it when the task moves back to an active column. Done → archived leaves the issue closed. Failures are recorded in the task activity log and never block the move.
- 8e9cd1a: Expose per-task GitHub tracking controls in task creation/editing and task detail, including repo override handling, linked-issue display, and manual unlink flow.
- 860d183: GitHub tracking lifecycle now strictly honors the project-level `githubAuthMode`. Token mode requires `githubAuthToken` (or `GITHUB_TOKEN`); gh-cli mode requires an authenticated `gh` CLI. The previous opportunistic fallback no longer applies to tracking issue creation/comments/state sync flows (legacy PR/import flows are unchanged).
- d74197e: Generalize the SQLite schema self-heal pass to reconcile missing columns for every critical table on `Database.init()`, not just `tasks`.
This prevents legacy or drifted databases from hitting `no such column: <X>` regressions after new column additions, and adds architecture lint coverage to ensure new `CREATE TABLE` definitions are always included in schema-compatibility coverage.
- 4051dab: Merger sessions now honor the assigned agent's `runtimeConfig.model` before falling back to project/global defaults, matching executor and planning lanes.
- d25e8cb: Research now works out of the box using the agent's built-in `WebSearch`/`WebFetch` tools. External search providers (SearXNG, Brave, Google, Tavily) are now optional advanced configuration.
- bcb79d8: Honor task-configured merge targets across CLI and merge completion paths, including PR creation base branch selection and merge metadata resolution.
- 50fdea6: Fix `fn_task_update` (and `fn_task_create`) silently failing with "Agent not found" when callers pass an empty string or the literal string `"null"` to clear a task's agent assignment. Empty/whitespace strings and `"null"` are now normalized to a clear-assignment signal, matching the dashboard `PATCH /api/tasks/:id` contract. JSON `null` continues to work as before.
- 46efd00: Add per-task GitHub tracking fields (enabled flag, optional repo override,
linked issue metadata) to the Task contract and SQLite store. No user-visible
behavior yet; surfaced by FN-3870+.
- 00b35b8: Restore ListView bulk-delete: select multiple tasks and delete them together, with archived selections skipped automatically and a per-task force-delete prompt for dependency conflicts.
- ff9fb55: Improve stale dependency unblocking so todo tasks are released promptly when their blocker reaches done or archived, and ensure startup recovery runs the stale `blockedBy` sweep once on boot to repair previously stuck rows. This complements the existing periodic self-heal pass, reducing unblock latency and automatically repairing incidents like dependents remaining blocked after a completed task.
- eea4def: Fix agent sidebar action buttons (Run Now, Pause, Details) overflowing on narrow agent cards by collapsing them to icon-only controls in the sidebar context.
- da101ef: Fix bundled Dependency Graph plugin reliability in the dashboard. Built-in plugin view registration now uses literal-specifier lazy imports so production bundles can resolve and load the bundled graph/roadmap dashboard views instead of falling back to an unavailable placeholder. Plugin install mode now resolves bundled plugin paths server-side when relative `./plugins/...` inputs do not exist under the current working directory, so installing built-in plugins from Settings works reliably across runtime locations.
- 4ccef83: Fix triage planning model selection so project/task planning settings are passed to runtime using the correct default model keys.
- 772c9f6: Hide Chat Rooms behind the `chatRooms` experimental flag. By default, Chat now shows direct-chat-only UI; re-enable rooms via **Settings → Experimental Features → Chat Rooms**.
- f1ece4b: Bundle and auto-install the cli-printing-press plugin with the published CLI.
- 5b15f45: Fix scheduler `blockedBy` propagation so dependency-unblocked todo tasks are not re-pointed to unrelated overlap blockers, and extend stale-blocker recovery to clear corrupted `blockedBy` rows that no longer match unresolved dependencies.
## 0.25.0 ## 0.25.0
### Minor Changes ### Minor Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@runfusion/fusion", "name": "@runfusion/fusion",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.", "description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,7 @@
# @fusion/core # @fusion/core
## 0.26.0
## 0.25.0 ## 0.25.0
## 0.24.0 ## 0.24.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/core", "name": "@fusion/core",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion core: task store, scheduler, settings, and shared domain types backing the Fusion AI coding agent.", "description": "Fusion core: task store, scheduler, settings, and shared domain types backing the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,19 @@
# @fusion/dashboard # @fusion/dashboard
## 0.26.0
### Patch Changes
- @fusion/core@0.26.0
- @fusion/engine@0.26.0
- @fusion-plugin-examples/dependency-graph@0.1.15
- @fusion-plugin-examples/roadmap@0.1.3
- @fusion-plugin-examples/cursor-runtime@0.1.3
- @fusion-plugin-examples/droid-runtime@0.1.10
- @fusion-plugin-examples/hermes-runtime@0.2.34
- @fusion-plugin-examples/openclaw-runtime@0.2.34
- @fusion-plugin-examples/paperclip-runtime@0.2.34
## 0.25.0 ## 0.25.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/dashboard", "name": "@fusion/dashboard",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion dashboard: React UI and HTTP API server for monitoring and controlling the Fusion AI coding agent.", "description": "Fusion dashboard: React UI and HTTP API server for monitoring and controlling the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,12 @@
# @fusion/desktop # @fusion/desktop
## 0.26.0
### Patch Changes
- @fusion/core@0.26.0
- @fusion/dashboard@0.26.0
## 0.25.0 ## 0.25.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/desktop", "name": "@fusion/desktop",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion desktop: Electron wrapper around the Fusion dashboard for macOS, Windows, and Linux.", "description": "Fusion desktop: Electron wrapper around the Fusion dashboard for macOS, Windows, and Linux.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,11 @@
# @fusion/droid-cli # @fusion/droid-cli
## 0.11.10
### Patch Changes
- @fusion-plugin-examples/droid-runtime@0.1.10
## 0.11.9 ## 0.11.9
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/droid-cli", "name": "@fusion/droid-cli",
"version": "0.11.9", "version": "0.11.10",
"description": "First-party Fusion pi extension that routes LLM calls through the Droid CLI subprocess.", "description": "First-party Fusion pi extension that routes LLM calls through the Droid CLI subprocess.",
"license": "MIT", "license": "MIT",
"private": true, "private": true,

View File

@@ -1,5 +1,12 @@
# @fusion/engine # @fusion/engine
## 0.26.0
### Patch Changes
- @fusion/core@0.26.0
- @fusion/pi-claude-cli@0.26.0
## 0.25.0 ## 0.25.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/engine", "name": "@fusion/engine",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion engine: executor, merger, scheduler, and automation runtime for the Fusion AI coding agent.", "description": "Fusion engine: executor, merger, scheduler, and automation runtime for the Fusion AI coding agent.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,7 @@
# @fusion/mobile # @fusion/mobile
## 0.26.0
## 0.25.0 ## 0.25.0
## 0.24.0 ## 0.24.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/mobile", "name": "@fusion/mobile",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion mobile: Capacitor wrapper around the Fusion dashboard for iOS and Android.", "description": "Fusion mobile: Capacitor wrapper around the Fusion dashboard for iOS and Android.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,7 @@
# @fusion/pi-claude-cli # @fusion/pi-claude-cli
## 0.26.0
## 0.25.0 ## 0.25.0
## 0.24.0 ## 0.24.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/pi-claude-cli", "name": "@fusion/pi-claude-cli",
"version": "0.25.0", "version": "0.26.0",
"description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.", "description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.",
"license": "MIT", "license": "MIT",
"private": true, "private": true,

View File

@@ -1,5 +1,11 @@
# @fusion/plugin-sdk # @fusion/plugin-sdk
## 0.26.0
### Patch Changes
- @fusion/core@0.26.0
## 0.25.0 ## 0.25.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion/plugin-sdk", "name": "@fusion/plugin-sdk",
"version": "0.25.0", "version": "0.26.0",
"license": "MIT", "license": "MIT",
"description": "Fusion plugin SDK: types and helpers for authoring third-party plugins that extend the Fusion dashboard and engine.", "description": "Fusion plugin SDK: types and helpers for authoring third-party plugins that extend the Fusion dashboard and engine.",
"homepage": "https://github.com/Runfusion/Fusion#readme", "homepage": "https://github.com/Runfusion/Fusion#readme",

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/auto-label # @fusion-plugin-examples/auto-label
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/auto-label", "name": "@fusion-plugin-examples/auto-label",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Automatically labels tasks based on description content", "description": "Automatically labels tasks based on description content",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/ci-status # @fusion-plugin-examples/ci-status
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/ci-status", "name": "@fusion-plugin-examples/ci-status",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Polls CI status for branches and provides a custom API to query results", "description": "Polls CI status for branches and provides a custom API to query results",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/notification # @fusion-plugin-examples/notification
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/notification", "name": "@fusion-plugin-examples/notification",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Example Fusion plugin that sends webhook notifications on task lifecycle events", "description": "Example Fusion plugin that sends webhook notifications on task lifecycle events",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/settings-demo # @fusion-plugin-examples/settings-demo
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/settings-demo", "name": "@fusion-plugin-examples/settings-demo",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Example Fusion plugin demonstrating settings schema and runtime configuration", "description": "Example Fusion plugin demonstrating settings schema and runtime configuration",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/agent-browser # @fusion-plugin-examples/agent-browser
## 0.1.4
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.1.3 ## 0.1.3
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/agent-browser", "name": "@fusion-plugin-examples/agent-browser",
"version": "0.1.3", "version": "0.1.4",
"type": "module", "type": "module",
"description": "Agent Browser runtime and prompt/skill/workflow contributions for Fusion", "description": "Agent Browser runtime and prompt/skill/workflow contributions for Fusion",
"private": true, "private": true,

View File

@@ -0,0 +1,8 @@
# @fusion-plugin-examples/cli-printing-press
## 0.1.1
### Patch Changes
- @fusion/core@0.26.0
- @fusion/plugin-sdk@0.26.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/cli-printing-press", "name": "@fusion-plugin-examples/cli-printing-press",
"version": "0.1.0", "version": "0.1.1",
"type": "module", "type": "module",
"description": "CLI Printing Press plugin package for Fusion", "description": "CLI Printing Press plugin package for Fusion",
"private": true, "private": true,

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/cursor-runtime # @fusion-plugin-examples/cursor-runtime
## 0.1.3
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/cursor-runtime", "name": "@fusion-plugin-examples/cursor-runtime",
"version": "0.1.2", "version": "0.1.3",
"type": "module", "type": "module",
"description": "Cursor CLI runtime plugin for Fusion", "description": "Cursor CLI runtime plugin for Fusion",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,13 @@
# @fusion-plugin-examples/dependency-graph # @fusion-plugin-examples/dependency-graph
## 0.1.15
### Patch Changes
- @fusion/core@0.26.0
- @fusion/dashboard@0.26.0
- @fusion/plugin-sdk@0.26.0
## 0.1.14 ## 0.1.14
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/dependency-graph", "name": "@fusion-plugin-examples/dependency-graph",
"version": "0.1.14", "version": "0.1.15",
"type": "module", "type": "module",
"description": "Dependency graph dashboard view plugin for Fusion", "description": "Dependency graph dashboard view plugin for Fusion",
"private": true, "private": true,

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 0.1.10
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.1.9 ## 0.1.9
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/droid-runtime", "name": "@fusion-plugin-examples/droid-runtime",
"version": "0.1.9", "version": "0.1.10",
"type": "module", "type": "module",
"description": "Droid runtime plugin for Fusion", "description": "Droid runtime plugin for Fusion",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/even-cards # @fusion-plugin-examples/even-cards
## 0.1.3
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/even-cards", "name": "@fusion-plugin-examples/even-cards",
"version": "0.1.2", "version": "0.1.3",
"type": "module", "type": "module",
"description": "Even Realities on-device cards flow for Fusion board/task status", "description": "Even Realities on-device cards flow for Fusion board/task status",
"private": true, "private": true,

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/even-realities-glasses # @fusion-plugin-examples/even-realities-glasses
## 0.1.3
### Patch Changes
- @fusion/core@0.26.0
- @fusion/plugin-sdk@0.26.0
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/even-realities-glasses", "name": "@fusion-plugin-examples/even-realities-glasses",
"version": "0.1.2", "version": "0.1.3",
"type": "module", "type": "module",
"description": "Even Realities glasses task card bridge for Fusion", "description": "Even Realities glasses task card bridge for Fusion",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/hermes-runtime # @fusion-plugin-examples/hermes-runtime
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/hermes-runtime", "name": "@fusion-plugin-examples/hermes-runtime",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Hermes AI runtime plugin for Fusion - provides AI agent execution runtime", "description": "Hermes AI runtime plugin for Fusion - provides AI agent execution runtime",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/openclaw-runtime # @fusion-plugin-examples/openclaw-runtime
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/openclaw-runtime", "name": "@fusion-plugin-examples/openclaw-runtime",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Provides OpenClaw runtime for Fusion AI agents", "description": "Provides OpenClaw runtime for Fusion AI agents",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/paperclip-runtime # @fusion-plugin-examples/paperclip-runtime
## 0.2.34
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.2.33 ## 0.2.33
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/paperclip-runtime", "name": "@fusion-plugin-examples/paperclip-runtime",
"version": "0.2.33", "version": "0.2.34",
"type": "module", "type": "module",
"description": "Paperclip runtime plugin for Fusion — provides AI agent web access capabilities", "description": "Paperclip runtime plugin for Fusion — provides AI agent web access capabilities",
"keywords": [ "keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/reports # @fusion-plugin-examples/reports
## 0.1.3
### Patch Changes
- @fusion/core@0.26.0
- @fusion/plugin-sdk@0.26.0
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/reports", "name": "@fusion-plugin-examples/reports",
"version": "0.1.2", "version": "0.1.3",
"type": "module", "type": "module",
"description": "Reports plugin for Fusion", "description": "Reports plugin for Fusion",
"private": true, "private": true,

View File

@@ -1,5 +1,13 @@
# @fusion-plugin-examples/roadmap # @fusion-plugin-examples/roadmap
## 0.1.3
### Patch Changes
- @fusion/core@0.26.0
- @fusion/dashboard@0.26.0
- @fusion/plugin-sdk@0.26.0
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/roadmap", "name": "@fusion-plugin-examples/roadmap",
"version": "0.1.2", "version": "0.1.3",
"type": "module", "type": "module",
"description": "Roadmap plugin package for Fusion", "description": "Roadmap plugin package for Fusion",
"private": true, "private": true,

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/whatsapp-chat # @fusion-plugin-examples/whatsapp-chat
## 0.1.3
### Patch Changes
- @fusion/plugin-sdk@0.26.0
## 0.1.2 ## 0.1.2
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@fusion-plugin-examples/whatsapp-chat", "name": "@fusion-plugin-examples/whatsapp-chat",
"version": "0.1.2", "version": "0.1.3",
"type": "module", "type": "module",
"description": "WhatsApp Web (Baileys) chat bridge for Fusion agents", "description": "WhatsApp Web (Baileys) chat bridge for Fusion agents",
"keywords": [ "keywords": [