chore(release): v0.73.0-beta.2

Version bump via changesets.
This commit is contained in:
gsxdsm
2026-07-21 21:01:23 -07:00
parent 757b423370
commit 88e343e331
72 changed files with 382 additions and 35 deletions

View File

@@ -69,6 +69,7 @@
"fix-pooled-worktree-ownership",
"fix-postgres-activity-lifecycle",
"fix-postgres-startup-migration-deadlock",
"fix-settings-beta-update-check",
"fix-task-card-overseer-cache",
"fix-task-done-summary-prose",
"fix-triage-prompt-writer-tools",

View File

@@ -13885,6 +13885,14 @@ for reference.
- Updated dependencies [a2ed6d0]
- @runfusion/fusion@0.1.0
## 0.39.31-beta.2
### @fusion/i18n
#### Patch Changes
- @fusion/core@0.73.0-beta.2
## 0.39.31-beta.1
### @fusion/i18n
@@ -14144,6 +14152,14 @@ for reference.
- @fusion/core@0.40.0
## 0.11.57-beta.2
### @fusion/droid-cli
#### Patch Changes
- @fusion-plugin-examples/droid-runtime@0.1.57-beta.2
## 0.11.57-beta.1
### @fusion/droid-cli

View File

@@ -2,6 +2,110 @@
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.73.0-beta.2
### Highlights
- Choose your update track: new beta and stable release channels, selectable in Settings or via `fn update --channel`
- Custom workflows finally own the board — cards move through your own columns, not a fixed six
- Security: report screenshots and activity traces are scrubbed of paths and tokens before filing
- Auto-generated task verification videos now show up in the Quality hub when review artifacts are enabled
- Dozens of Planning Mode fixes: reliable resume, scrollable plans, mobile support, and an end to false completions
### New
- Beta and stable release channels with independent update tracking
- Quality hub shows task verification videos when review artifacts are enabled
- Review artifact controls and deliverable galleries for task reviews
- Auto-generated feature-video artifacts captured at task completion
- Guided in-app Bug, Feedback, Idea, and Help reporting, with GitHub Issues or Discussions destinations and roadmap dedup
- Consent-based screenshots and scrubbed activity context attached to in-app reports
- Mission auto-merge override so a mission's features can share one branch and PR
- Mailbox approval flow for ephemeral agent follow-up tasks
- Unified max concurrency across planning, execution, and review with simplified board capacity indicators
- Configuration version history and rollback moved into Settings
- Portable secret-scrubbed organization export/import via `fn org-export` / `fn org-import`
- Ideation is now a top-level experimental view with atomic Mission handoff
- Mission hierarchy tools exposed to engine agents and dashboard chat
- Task E2E verification requests observable from chat
- Promote completed research findings into mission roadmap features
- Native structure previews (missions, findings, evals, goals, roadmap items) in chat and mail
- WhatsApp pairing QR and setup instructions surfaced in plugin settings
- Embeddable PostgreSQL connection cap now configurable in Advanced Settings
- Aurora, Calm, and Dawn dashboard color themes
- Dashboard chat agents can now edit files and run bash with coding workspace tools
### Fixed
- SQLite→PostgreSQL migration status now shown on the dashboard during cutover
- Reconnecting status text removed from Planning Mode
- Approved task scope preserved during review and worktree recovery
- Retried agent steps no longer create duplicate follow-up tasks
- Boards on custom workflows show and move cards in their own columns
- Built-in workflows no longer send cards backward to Todo or stall the PR workflow
- Chat/mailbox crash from raw NUL bytes fixed
- Server Claude CLI login issues reported immediately instead of a false usage timeout
- Codex weekly usage now shown correctly
- Task chat progress feed added for steps, failures, reviews, and rollbacks
- Numerous Planning Mode reliability fixes: persistent timers, clean resume, mobile taps, refinement submission, clarifying questions, plan drafting, and history behavior
- Workflows without a merge step now finish in their completion column
- Tasks with no saved workflow selection can move between columns again
- Dependency-ready workflow steps finalize correctly alongside slower steps
- Task completion no longer blocked by summary wording
- Windows update reliability and Compound Engineering persona restoration in npm installs
- Chinese translations restored for duplicate roadmap reports
- Overseer eye icon visibility fixes across task cards and detail view
- Archived shared-branch landing proof preserved during PostgreSQL promotion
- Task-card cost badge repositioned below Promote button
- GitHub/GitLab issue form auto-translation fixed
- PWAs recover auth tokens after unauthorized backend responses
- Foreign-language issue forms auto-translate correctly
- Token counts no longer inflated by reused agent sessions
- GitHub issue import dedup hardened against edited descriptions
- Dashboard build failure from missing html2canvas dependency fixed
- Settings now auto-save with safe flush on close
- Task detail inline icons and action buttons sized consistently across themes/breakpoints
- Pinned chat conversations separated in list; message edit Save fixed
- Compound Engineering navigation visibility fixed
- Same-agent near-duplicates stay on the board by default
- Report menu stacking and Command Center report placement fixed
- Settings Configuration Versions translations restored for several locales
- `@agentclientprotocol/sdk` install fix for Claude CLI pi extension
- Mission interview start crash fixed for default thinking level
- Startup crash fixed for projects with fallback and registered partition data
- Grok/Claude Fusion MCP bridge packaging and model marker fixes
- Only one agent badge shown when task is assigned to its creator
- CLI chat replies and dashboard inbox reads restored
- `fn chat` now a stable named mailbox conversation
- Workflow tasks stay paused while awaiting operator answers to agent questions
- Mobile navigation and Planning Mode back-navigation fixes
- Dashboard TUI Logs tab timestamp noise reduced
- Duplicate decisions persisted so Fusion doesn't re-ask
- Skill loading, plugin enable-state consistency, and duplicate onLoad fixes
- Workflow-definition ID collision fix on create
- Provider-scoped task pauses now recover automatically when capacity returns
- Mid-flight tasks from older Fusion versions now adopted cleanly on upgrade
- MCP server unavailability no longer stalls tasks
- Merge-review blockers preserved across concurrent-main rebuilds
- Plan Review recovery for missing workflow plans
- Duplicate in-progress GitHub tracking issue notifications eliminated
- Custom Merging column now receives the card at merge instead of In-review
- Mission features resume correctly after engine restart
- Test-mode database isolation from the normal Fusion database
- Anthropic OAuth token rotation no longer causes concurrent task fallback
- Duplicate diagnostic follow-ups deduplicated across parents
- Quick Add agent picker closes on outside click
- In-progress-to-Todo moves now await executor cancellation before persisting
- Plan Review replans no longer strand completed tasks in Triage
- PostgreSQL migration-health read permission errors fixed
- Report screenshots stored as validated local artifacts
### Breaking
- Removed the Planning Mode deepening checkpoint and fixed interview depth caps; explicit user validation now replaces AI-driven completion
### Security
- Report activityTrace payloads are now scrubbed of paths and tokens before filing
### Internal
- Review gates now run exclusively as workflow graph nodes; the in-session step reviewer (`fn_review_step`) and its RETHINK/checkpoint machinery are removed
## 0.73.0-beta.1
### Highlights

View File

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

View File

@@ -1,5 +1,12 @@
# runfusion.ai
## 0.73.0-beta.2
### Patch Changes
- Updated dependencies [757b423]
- @runfusion/fusion@0.73.0-beta.2
## 0.73.0-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,13 @@
# @runfusion/fusion
## 0.73.0-beta.2
### Patch Changes
- 757b423: summary: Settings Check for updates now finds newer beta releases when the beta channel is selected.
category: fix
dev: Settings footer and GET /api/updates/check now force-refresh through channel-aware performUpdateCheck (updateChannel + npm beta dist-tag) instead of always querying registry latest with prerelease-blind compare.
## 0.73.0-beta.1
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@runfusion/fusion",
"version": "0.73.0-beta.1",
"version": "0.73.0-beta.2",
"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",

View File

@@ -1,5 +1,7 @@
# @fusion/core
## 0.73.0-beta.2
## 0.73.0-beta.1
## 0.73.0-beta.0

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/core",
"version": "0.73.0-beta.1",
"version": "0.73.0-beta.2",
"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",

View File

@@ -1,5 +1,26 @@
# @fusion/dashboard
## 0.73.0-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/engine@0.73.0-beta.2
- @fusion/i18n@0.39.31-beta.2
- @fusion-plugin-examples/claude-runtime@0.1.6-beta.2
- @fusion-plugin-examples/cli-printing-press@0.1.48-beta.2
- @fusion-plugin-examples/compound-engineering@0.1.31-beta.2
- @fusion-plugin-examples/dependency-graph@0.1.62-beta.2
- @fusion-plugin-examples/grok-runtime@0.2.9-beta.2
- @fusion-plugin-examples/omp-runtime@0.1.6-beta.2
- @fusion-plugin-examples/quality@0.1.6-beta.2
- @fusion-plugin-examples/roadmap@0.1.50-beta.2
- @fusion-plugin-examples/cursor-runtime@0.1.50-beta.2
- @fusion-plugin-examples/droid-runtime@0.1.57-beta.2
- @fusion-plugin-examples/hermes-runtime@0.2.81-beta.2
- @fusion-plugin-examples/openclaw-runtime@0.2.81-beta.2
- @fusion-plugin-examples/paperclip-runtime@0.2.81-beta.2
## 0.73.0-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/dashboard",
"version": "0.73.0-beta.1",
"version": "0.73.0-beta.2",
"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",

View File

@@ -1,5 +1,13 @@
# @fusion/desktop
## 0.73.0-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/dashboard@0.73.0-beta.2
- @fusion/engine@0.73.0-beta.2
## 0.73.0-beta.1
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@fusion/desktop",
"productName": "Fusion",
"version": "0.73.0-beta.1",
"version": "0.73.0-beta.2",
"license": "MIT",
"author": {
"name": "Runfusion",

View File

@@ -1,5 +1,11 @@
# @fusion/droid-cli
## 0.11.57-beta.2
### Patch Changes
- @fusion-plugin-examples/droid-runtime@0.1.57-beta.2
## 0.11.57-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion/engine
## 0.73.0-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/pi-claude-cli@0.73.0-beta.2
## 0.73.0-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion/i18n
## 0.39.31-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
## 0.39.31-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/i18n",
"version": "0.39.31-beta.1",
"version": "0.39.31-beta.2",
"license": "MIT",
"description": "Fusion i18n: authored translation catalogs and shared i18next configuration for the Fusion dashboard and terminal UI.",
"type": "module",

View File

@@ -1,5 +1,7 @@
# @fusion/mobile
## 0.73.0-beta.2
## 0.73.0-beta.1
## 0.73.0-beta.0

View File

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

View File

@@ -1,5 +1,7 @@
# @fusion/pi-claude-cli
## 0.73.0-beta.2
## 0.73.0-beta.1
## 0.73.0-beta.0

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/pi-claude-cli",
"version": "0.73.0-beta.1",
"version": "0.73.0-beta.2",
"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,

View File

@@ -1,5 +1,11 @@
# @fusion/plugin-sdk
## 0.73.0-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
## 0.73.0-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion/plugin-sdk",
"version": "0.73.0-beta.1",
"version": "0.73.0-beta.2",
"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",

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/auto-label
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/ci-status
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/notification
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/settings-demo
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/acp-runtime
## 0.1.31-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.31-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/acp-runtime",
"version": "0.1.31-beta.1",
"version": "0.1.31-beta.2",
"type": "module",
"description": "ACP (Agent Client Protocol) runtime plugin for Fusion — drives any ACP-compatible agent over JSON-RPC/stdio",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/agent-browser
## 0.1.51-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.51-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/claude-runtime
## 0.1.6-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.6-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/claude-runtime",
"version": "0.1.6-beta.1",
"version": "0.1.6-beta.2",
"type": "module",
"description": "Claude Code runtime plugin for Fusion (ACP bridge)",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/cli-printing-press
## 0.1.48-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.48-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/compound-engineering
## 0.1.31-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.31-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/compound-engineering",
"version": "0.1.31-beta.1",
"version": "0.1.31-beta.2",
"type": "module",
"description": "Compound Engineering plugin for Fusion",
"private": true,

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/cursor-runtime
## 0.1.50-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.50-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/dependency-graph
## 0.1.62-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.62-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# Changelog
## 0.1.57-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.57-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/even-realities-glasses
## 0.1.50-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.50-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/even-realities-glasses",
"version": "0.1.50-beta.1",
"version": "0.1.50-beta.2",
"type": "module",
"description": "Canonical Even Realities Fusion plugin with board/task cards, actions, notifications, and webhook transport",
"keywords": [

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/grok-runtime
## 0.2.9-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.9-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/grok-runtime",
"version": "0.2.9-beta.1",
"version": "0.2.9-beta.2",
"type": "module",
"description": "Grok CLI runtime plugin for Fusion (ACP agent stdio)",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/hermes-runtime
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/linear-import
## 0.1.13-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.13-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/linear-import",
"version": "0.1.13-beta.1",
"version": "0.1.13-beta.2",
"type": "module",
"description": "Linear issue import plugin for Fusion",
"private": true,

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/omp-runtime
## 0.1.6-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.6-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/omp-runtime",
"version": "0.1.6-beta.1",
"version": "0.1.6-beta.2",
"type": "module",
"description": "Oh My Pi (omp) runtime plugin for Fusion via Agent Client Protocol (omp acp)",
"keywords": [

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/openclaw-runtime
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/paperclip-runtime
## 0.2.81-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.2.81-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/quality
## 0.1.6-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.6-beta.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@fusion-plugin-examples/quality",
"version": "0.1.6-beta.1",
"version": "0.1.6-beta.2",
"type": "module",
"description": "Quality hub and Task QA surfaces for Fusion",
"private": true,

View File

@@ -1,5 +1,13 @@
# @fusion-plugin-examples/reports
## 0.1.50-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/dashboard@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.50-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,12 @@
# @fusion-plugin-examples/roadmap
## 0.1.50-beta.2
### Patch Changes
- @fusion/core@0.73.0-beta.2
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.50-beta.1
### Patch Changes

View File

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

View File

@@ -1,5 +1,11 @@
# @fusion-plugin-examples/whatsapp-chat
## 0.1.50-beta.2
### Patch Changes
- @fusion/plugin-sdk@0.73.0-beta.2
## 0.1.50-beta.1
### Patch Changes

View File

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