@runfusion/fusion 0.18.1 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/bin.js +1809 -689
  2. package/dist/client/assets/{ChatView-3Sqm6teN.js → ChatView-DEG93wpC.js} +1 -1
  3. package/dist/client/assets/{DevServerView-r6V3FqkY.js → DevServerView-DI71QIND.js} +1 -1
  4. package/dist/client/assets/{DirectoryPicker-CTZE95Fk.js → DirectoryPicker-6eBfMR3k.js} +1 -1
  5. package/dist/client/assets/{DocumentsView-DSEf1Lmg.js → DocumentsView-D9pxwmaa.js} +1 -1
  6. package/dist/client/assets/{InsightsView-F5PZsX5u.js → InsightsView-D2_XwizY.js} +1 -1
  7. package/dist/client/assets/{MemoryView-DicXjec9.js → MemoryView-DfjllRpZ.js} +1 -1
  8. package/dist/client/assets/{NodesView-DddCS7zB.js → NodesView-D7hWWUCW.js} +1 -1
  9. package/dist/client/assets/{PiExtensionsManager-Ch7si-v8.js → PiExtensionsManager-d8cJKjcL.js} +2 -2
  10. package/dist/client/assets/{PluginManager-LcTh_fHP.js → PluginManager-CNzhmPzJ.js} +1 -1
  11. package/dist/client/assets/{ResearchView-D0TY1VcX.js → ResearchView-2xAa3pzZ.js} +1 -1
  12. package/dist/client/assets/{RoadmapsView-DfEF3mql.js → RoadmapsView-ajwwf979.js} +1 -1
  13. package/dist/client/assets/SettingsModal-BWe0KrGY.css +1 -0
  14. package/dist/client/assets/{SettingsModal-YcScdFiG.js → SettingsModal-D732WMft.js} +1 -1
  15. package/dist/client/assets/SettingsModal-Dk0zKdTy.js +31 -0
  16. package/dist/client/assets/{SetupWizardModal-EDYuf9Yc.js → SetupWizardModal-DohGTvQT.js} +1 -1
  17. package/dist/client/assets/{SkillsView-Dkq2CQla.js → SkillsView-CzVO7yTO.js} +1 -1
  18. package/dist/client/assets/index-CVCt2pCH.css +1 -0
  19. package/dist/client/assets/index-hnO5QagU.js +1239 -0
  20. package/dist/client/assets/{users-Cp5TSxVm.js → users-R3_m9pE5.js} +1 -1
  21. package/dist/client/index.html +2 -2
  22. package/dist/client/version.json +1 -1
  23. package/dist/droid-cli/package.json +1 -1
  24. package/dist/droid-cli/src/__tests__/provider.test.ts +1 -1
  25. package/dist/extension.js +610 -114
  26. package/dist/pi-claude-cli/package.json +1 -1
  27. package/dist/plugins/fusion-plugin-dependency-graph/package.json +1 -1
  28. package/package.json +3 -2
  29. package/skill/fusion/references/engine-tools.md +2 -0
  30. package/dist/client/assets/SettingsModal-SOADcCNJ.js +0 -31
  31. package/dist/client/assets/SettingsModal-oOnIed5O.css +0 -1
  32. package/dist/client/assets/index-4hC8zoTD.css +0 -1
  33. package/dist/client/assets/index-DNzA4aZ7.js +0 -1229
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusion/pi-claude-cli",
3
- "version": "0.18.1",
3
+ "version": "0.19.0",
4
4
  "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.",
5
5
  "license": "MIT",
6
6
  "private": true,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusion-plugin-examples/dependency-graph",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "Dependency graph dashboard view plugin for Fusion",
6
6
  "private": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runfusion/fusion",
3
- "version": "0.18.1",
3
+ "version": "0.19.0",
4
4
  "license": "MIT",
5
5
  "description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.",
6
6
  "homepage": "https://github.com/Runfusion/Fusion#readme",
@@ -78,7 +78,8 @@
78
78
  "typebox": "^1.0.0",
79
79
  "typescript": "^5.7.0",
80
80
  "vitest": "^3.1.0",
81
- "yaml": "^2.8.3"
81
+ "yaml": "^2.8.3",
82
+ "@fusion/pi-llama-cpp": "0.17.2"
82
83
  },
83
84
  "repository": {
84
85
  "type": "git",
@@ -24,6 +24,8 @@ These tools are **not** part of the user-invokable extension surface. They are i
24
24
  | `fn_reflect_on_performance` | executor | Generate reflection insights from prior runs | `focus_area?` (string) |
25
25
  | `fn_list_agents` | triage, executor, heartbeat | List agents (optionally filtered) | `role?` (string), `state?` (string), `includeEphemeral?` (boolean) |
26
26
  | `fn_delegate_task` | triage, executor, heartbeat | Create and assign a new task to a specific agent | `agent_id` (string), `description` (string), `dependencies?` (string[]) |
27
+ | `fn_get_agent_config` | executor, heartbeat | Read full config for a direct-report agent | `agent_id` (string) |
28
+ | `fn_update_agent_config` | executor, heartbeat | Update config fields for a direct-report, non-ephemeral agent | `agent_id` (string), optional: `soul`, `instructions_text`, `instructions_path`, `heartbeat_procedure_path`, `heartbeat_interval_ms`, `heartbeat_timeout_ms`, `max_concurrent_runs`, `message_response_mode` |
27
29
  | `fn_send_message` | executor, heartbeat | Send inbox messages to agents/users | `to_id` (string), `content` (string), `type?` (`agent-to-agent` \| `agent-to-user`), `reply_to_message_id?` (string) |
28
30
  | `fn_read_messages` | executor, heartbeat | Read inbox messages | `unread_only?` (boolean), `limit?` (number) |
29
31