chore(release): v0.76.0-beta.3
Version bump via changesets.
This commit is contained in:
@@ -173,11 +173,17 @@
|
||||
"fn-9013-scheduler-listfeatures-receiver",
|
||||
"fn-9014-message-archive",
|
||||
"fn-9016-manager-eval-tools",
|
||||
"fn-9021-recommendation-mailbox-notice",
|
||||
"fn-9022-insights-recommendations",
|
||||
"fn-9023-i18n-parity",
|
||||
"fn-9024-quick-add-center-action-row",
|
||||
"fn-9025-quick-add-tablet-spacing",
|
||||
"fn-workflow-executor-agent-store-wiring",
|
||||
"manual-handoff-limbo",
|
||||
"orphaned-planning-segments",
|
||||
"pinned-worktree-recovery-review-followup",
|
||||
"plan-review-replan-cap-wiring",
|
||||
"planning-handoff-atomic",
|
||||
"planning-retry-budget-and-timeout",
|
||||
"polite-penguins-preserve-claims",
|
||||
"pt-br-locale",
|
||||
@@ -192,6 +198,7 @@
|
||||
"spec-drift-connection-exhaustion",
|
||||
"stas-032-resume-workflow-step",
|
||||
"task-pinned-orphan-recovery",
|
||||
"terminal-toolbar-display-toggles",
|
||||
"todos-plugin-nav-entry",
|
||||
"transient-request-timeout",
|
||||
"tunnel-auto-restart",
|
||||
|
||||
@@ -13885,6 +13885,14 @@ for reference.
|
||||
- Updated dependencies [a2ed6d0]
|
||||
- @runfusion/fusion@0.1.0
|
||||
|
||||
## 0.39.35-beta.3
|
||||
|
||||
### @fusion/i18n
|
||||
|
||||
#### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
|
||||
## 0.39.35-beta.2
|
||||
|
||||
### @fusion/i18n
|
||||
@@ -14368,6 +14376,14 @@ for reference.
|
||||
|
||||
- @fusion/core@0.40.0
|
||||
|
||||
## 0.11.61-beta.3
|
||||
|
||||
### @fusion/droid-cli
|
||||
|
||||
#### Patch Changes
|
||||
|
||||
- @fusion-plugin-examples/droid-runtime@0.1.61-beta.3
|
||||
|
||||
## 0.11.61-beta.2
|
||||
|
||||
### @fusion/droid-cli
|
||||
|
||||
23
CHANGELOG.md
23
CHANGELOG.md
@@ -2,6 +2,29 @@
|
||||
|
||||
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.76.0-beta.3
|
||||
|
||||
### Highlights
|
||||
|
||||
- Planned tasks no longer stall ~10 minutes in Todo before Plan Review starts
|
||||
- Insights adds project-wide task recommendations with paginated triage
|
||||
- Mailbox notices arrive for captured task recommendations, via a new project setting
|
||||
- Merge, notification, recommendation, and settings copy is localized again in six locales
|
||||
- Terminal pin and pop-out toggles moved to the top toolbar, left of the close button
|
||||
|
||||
### New
|
||||
|
||||
- Insights now has a project-wide task recommendations surface, backed by a bounded row-paginated API.
|
||||
- Captured task recommendations can send mailbox notices, controlled by the new `recommendationMailboxNoticeEnabled` project setting.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Planned tasks that sat roughly ten minutes in Todo now move into Plan Review promptly: the planning-to-plan-review handoff retires its predecessor and installs the successor in a single transaction, and the follow-up reaction retries instead of dropping failures silently.
|
||||
- Localized merge, notification, recommendation, and settings copy is restored across six locales, and a stale pt-BR settings key was removed.
|
||||
- Terminal pin and pop-out toggles now sit in the top toolbar to the left of the close button.
|
||||
- The Quick Add composer's bottom row of action buttons is centered again, with the ≤768px layout unchanged.
|
||||
- Quick Add buttons use mobile edge-to-edge spacing on tablet widths (769px–1024px).
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Highlights
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fusion-workspace",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# runfusion.ai
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [ea53cbd]
|
||||
- Updated dependencies [f7bf3f9]
|
||||
- Updated dependencies [c791c0b]
|
||||
- Updated dependencies [0e98d9b]
|
||||
- Updated dependencies [401b057]
|
||||
- Updated dependencies [19dffe3]
|
||||
- Updated dependencies [6243c2c]
|
||||
- @runfusion/fusion@0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "runfusion.ai",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"description": "Launch Fusion with `npx runfusion.ai` — tiny alias for @runfusion/fusion.",
|
||||
"homepage": "https://runfusion.ai",
|
||||
|
||||
@@ -1,5 +1,34 @@
|
||||
# @runfusion/fusion
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- ea53cbd: summary: Send mailbox notices for captured task recommendations.
|
||||
category: feature
|
||||
dev: Adds the project setting `recommendationMailboxNoticeEnabled`.
|
||||
- f7bf3f9: summary: Add project-wide task recommendations to Insights.
|
||||
category: feature
|
||||
dev: Adds a bounded row-paginated task recommendations API and dashboard triage surface.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c791c0b: summary: Restore missing localized merge, notification, recommendation, and settings copy.
|
||||
category: fix
|
||||
dev: Adds parity keys across six locales and removes the stale pt-BR settings.general.useEphemeralTaskWorkerAgents orphan.
|
||||
- 0e98d9b: summary: Center the Quick Add composer's bottom row of action buttons.
|
||||
category: fix
|
||||
dev: CSS-only QuickEntryBox change; preserves the ≤768px space-between layout.
|
||||
- 401b057: summary: Quick Add buttons now use mobile edge-to-edge spacing on tablet-width screens.
|
||||
category: fix
|
||||
dev: Adds a 769px–1024px positioning tier in QuickEntryBox.css.
|
||||
- 19dffe3: summary: Fix planned tasks stalling ~10 minutes in Todo before Plan Review starts.
|
||||
category: fix
|
||||
dev: The planning→plan-review handoff now retires its predecessor work item and installs the successor continuation in one transaction (`seedStrandedPlanReviewContinuation` gained `retirePredecessorId`); the specification-complete reaction consumes the seed result with bounded retries instead of dropping failures silently.
|
||||
- 6243c2c: summary: Terminal pin and pop-out toggles now sit in the top toolbar left of the close button.
|
||||
category: fix
|
||||
dev: Moves terminal-pin-toggle/terminal-popout-toggle out of terminalActionControls into a shared header fragment in TerminalModal.tsx.
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@runfusion/fusion",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"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",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# @fusion/core
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
## 0.76.0-beta.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/core",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"description": "Fusion core: task store, scheduler, settings, and shared domain types backing the Fusion AI coding agent.",
|
||||
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
||||
|
||||
@@ -1,5 +1,26 @@
|
||||
# @fusion/dashboard
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/engine@0.76.0-beta.3
|
||||
- @fusion/i18n@0.39.35-beta.3
|
||||
- @fusion-plugin-examples/claude-runtime@0.1.10-beta.3
|
||||
- @fusion-plugin-examples/cli-printing-press@0.1.52-beta.3
|
||||
- @fusion-plugin-examples/compound-engineering@0.1.35-beta.3
|
||||
- @fusion-plugin-examples/dependency-graph@0.1.66-beta.3
|
||||
- @fusion-plugin-examples/grok-runtime@0.2.13-beta.3
|
||||
- @fusion-plugin-examples/omp-runtime@0.1.10-beta.3
|
||||
- @fusion-plugin-examples/quality@0.1.10-beta.3
|
||||
- @fusion-plugin-examples/roadmap@0.1.54-beta.3
|
||||
- @fusion-plugin-examples/cursor-runtime@0.1.54-beta.3
|
||||
- @fusion-plugin-examples/droid-runtime@0.1.61-beta.3
|
||||
- @fusion-plugin-examples/hermes-runtime@0.2.85-beta.3
|
||||
- @fusion-plugin-examples/openclaw-runtime@0.2.85-beta.3
|
||||
- @fusion-plugin-examples/paperclip-runtime@0.2.85-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/dashboard",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"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",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @fusion/desktop
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/dashboard@0.76.0-beta.3
|
||||
- @fusion/engine@0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@fusion/desktop",
|
||||
"productName": "Fusion",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "Runfusion",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion/droid-cli
|
||||
|
||||
## 0.11.61-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion-plugin-examples/droid-runtime@0.1.61-beta.3
|
||||
|
||||
## 0.11.61-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/droid-cli",
|
||||
"version": "0.11.61-beta.2",
|
||||
"version": "0.11.61-beta.3",
|
||||
"description": "First-party Fusion pi extension that routes LLM calls through the Droid CLI subprocess.",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion/engine
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/pi-claude-cli@0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/engine",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"description": "Fusion engine: executor, merger, scheduler, and automation runtime for the Fusion AI coding agent.",
|
||||
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion/i18n
|
||||
|
||||
## 0.39.35-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
|
||||
## 0.39.35-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/i18n",
|
||||
"version": "0.39.35-beta.2",
|
||||
"version": "0.39.35-beta.3",
|
||||
"license": "MIT",
|
||||
"description": "Fusion i18n: authored translation catalogs and shared i18next configuration for the Fusion dashboard and terminal UI.",
|
||||
"type": "module",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# @fusion/mobile
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
## 0.76.0-beta.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/mobile",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"description": "Fusion mobile: Capacitor wrapper around the Fusion dashboard for iOS and Android.",
|
||||
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
# @fusion/pi-claude-cli
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
## 0.76.0-beta.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/pi-claude-cli",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"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",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion/plugin-sdk
|
||||
|
||||
## 0.76.0-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
|
||||
## 0.76.0-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion/plugin-sdk",
|
||||
"version": "0.76.0-beta.2",
|
||||
"version": "0.76.0-beta.3",
|
||||
"license": "MIT",
|
||||
"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",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/auto-label
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/auto-label",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Automatically labels tasks based on description content",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/ci-status
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/ci-status",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Polls CI status for branches and provides a custom API to query results",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/notification
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/notification",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Example Fusion plugin that sends webhook notifications on task lifecycle events",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/settings-demo
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/settings-demo",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Example Fusion plugin demonstrating settings schema and runtime configuration",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/acp-runtime
|
||||
|
||||
## 0.1.35-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.35-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/acp-runtime",
|
||||
"version": "0.1.35-beta.2",
|
||||
"version": "0.1.35-beta.3",
|
||||
"type": "module",
|
||||
"description": "ACP (Agent Client Protocol) runtime plugin for Fusion — drives any ACP-compatible agent over JSON-RPC/stdio",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/agent-browser
|
||||
|
||||
## 0.1.55-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.55-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/agent-browser",
|
||||
"version": "0.1.55-beta.2",
|
||||
"version": "0.1.55-beta.3",
|
||||
"type": "module",
|
||||
"description": "Agent Browser runtime and prompt/skill/workflow contributions for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/claude-runtime
|
||||
|
||||
## 0.1.10-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.10-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/claude-runtime",
|
||||
"version": "0.1.10-beta.2",
|
||||
"version": "0.1.10-beta.3",
|
||||
"type": "module",
|
||||
"description": "Claude Code runtime plugin for Fusion (ACP bridge)",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/cli-printing-press
|
||||
|
||||
## 0.1.52-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.52-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/cli-printing-press",
|
||||
"version": "0.1.52-beta.2",
|
||||
"version": "0.1.52-beta.3",
|
||||
"type": "module",
|
||||
"description": "CLI Printing Press plugin package for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/compound-engineering
|
||||
|
||||
## 0.1.35-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.35-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/compound-engineering",
|
||||
"version": "0.1.35-beta.2",
|
||||
"version": "0.1.35-beta.3",
|
||||
"type": "module",
|
||||
"description": "Compound Engineering plugin for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/cursor-runtime
|
||||
|
||||
## 0.1.54-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.54-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/cursor-runtime",
|
||||
"version": "0.1.54-beta.2",
|
||||
"version": "0.1.54-beta.3",
|
||||
"type": "module",
|
||||
"description": "Cursor CLI runtime plugin for Fusion",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/dependency-graph
|
||||
|
||||
## 0.1.66-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.66-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/dependency-graph",
|
||||
"version": "0.1.66-beta.2",
|
||||
"version": "0.1.66-beta.3",
|
||||
"type": "module",
|
||||
"description": "Dependency graph dashboard view plugin for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## 0.1.61-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.61-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/droid-runtime",
|
||||
"version": "0.1.61-beta.2",
|
||||
"version": "0.1.61-beta.3",
|
||||
"type": "module",
|
||||
"description": "Droid runtime plugin for Fusion",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/even-realities-glasses
|
||||
|
||||
## 0.1.54-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.54-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/even-realities-glasses",
|
||||
"version": "0.1.54-beta.2",
|
||||
"version": "0.1.54-beta.3",
|
||||
"type": "module",
|
||||
"description": "Canonical Even Realities Fusion plugin with board/task cards, actions, notifications, and webhook transport",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/grok-runtime
|
||||
|
||||
## 0.2.13-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.13-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/grok-runtime",
|
||||
"version": "0.2.13-beta.2",
|
||||
"version": "0.2.13-beta.3",
|
||||
"type": "module",
|
||||
"description": "Grok CLI runtime plugin for Fusion (ACP agent stdio)",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/hermes-runtime
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/hermes-runtime",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Hermes AI runtime plugin for Fusion - provides AI agent execution runtime",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/linear-import
|
||||
|
||||
## 0.1.17-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.17-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/linear-import",
|
||||
"version": "0.1.17-beta.2",
|
||||
"version": "0.1.17-beta.3",
|
||||
"type": "module",
|
||||
"description": "Linear issue import plugin for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/omp-runtime
|
||||
|
||||
## 0.1.10-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.10-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/omp-runtime",
|
||||
"version": "0.1.10-beta.2",
|
||||
"version": "0.1.10-beta.3",
|
||||
"type": "module",
|
||||
"description": "Oh My Pi (omp) runtime plugin for Fusion via Agent Client Protocol (omp acp)",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/openclaw-runtime
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/openclaw-runtime",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Provides OpenClaw runtime for Fusion AI agents",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/paperclip-runtime
|
||||
|
||||
## 0.2.85-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.2.85-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/paperclip-runtime",
|
||||
"version": "0.2.85-beta.2",
|
||||
"version": "0.2.85-beta.3",
|
||||
"type": "module",
|
||||
"description": "Paperclip runtime plugin for Fusion — provides AI agent web access capabilities",
|
||||
"keywords": [
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/quality
|
||||
|
||||
## 0.1.10-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.10-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/quality",
|
||||
"version": "0.1.10-beta.2",
|
||||
"version": "0.1.10-beta.3",
|
||||
"type": "module",
|
||||
"description": "Quality hub and Task QA surfaces for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @fusion-plugin-examples/reports
|
||||
|
||||
## 0.1.54-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/dashboard@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.54-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/reports",
|
||||
"version": "0.1.54-beta.2",
|
||||
"version": "0.1.54-beta.3",
|
||||
"type": "module",
|
||||
"description": "Reports plugin for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/roadmap
|
||||
|
||||
## 0.1.54-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.54-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/roadmap",
|
||||
"version": "0.1.54-beta.2",
|
||||
"version": "0.1.54-beta.3",
|
||||
"type": "module",
|
||||
"description": "Roadmap plugin package for Fusion",
|
||||
"private": true,
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @fusion-plugin-examples/todos
|
||||
|
||||
## 0.1.3-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/core@0.76.0-beta.3
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.3-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/todos",
|
||||
"version": "0.1.3-beta.2",
|
||||
"version": "0.1.3-beta.3",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"description": "Todo Lists plugin package for Fusion",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @fusion-plugin-examples/whatsapp-chat
|
||||
|
||||
## 0.1.54-beta.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @fusion/plugin-sdk@0.76.0-beta.3
|
||||
|
||||
## 0.1.54-beta.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fusion-plugin-examples/whatsapp-chat",
|
||||
"version": "0.1.54-beta.2",
|
||||
"version": "0.1.54-beta.3",
|
||||
"type": "module",
|
||||
"description": "WhatsApp Web (Baileys) chat bridge for Fusion agents",
|
||||
"keywords": [
|
||||
|
||||
Reference in New Issue
Block a user