free-computer-use 0.2.4 → 0.2.6
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.
- package/CHANGELOG.md +16 -0
- package/README.md +5 -5
- package/dist/actions/schema.d.ts +842 -0
- package/dist/actions/schema.js +1 -0
- package/dist/actions/schema.js.map +1 -1
- package/dist/agent/Agent.js +7 -2
- package/dist/agent/Agent.js.map +1 -1
- package/dist/llm/ClaudeSubscriptionProvider.js +2 -2
- package/dist/llm/ClaudeSubscriptionProvider.js.map +1 -1
- package/dist/llm/CodexSubscriptionProvider.js +2 -2
- package/dist/llm/CodexSubscriptionProvider.js.map +1 -1
- package/dist/llm/FlashProvider.js +2 -2
- package/dist/llm/FlashProvider.js.map +1 -1
- package/dist/llm/prompts.d.ts +1 -1
- package/dist/llm/prompts.js +1 -1
- package/dist/llm/prompts.js.map +1 -1
- package/docs/LOCAL_VALIDATION.md +39 -1
- package/docs/MCP.md +1 -1
- package/docs/REQUIREMENTS.md +1 -1
- package/docs/SUPPORT_MATRIX.md +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.6 - 2026-09-27
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Keep unchanged controls and page data in follow-up planner context when a
|
|
10
|
+
compact page diff would omit them. Use diffs only when they contain the full
|
|
11
|
+
current snapshot needed by the next stateless provider call.
|
|
12
|
+
|
|
13
|
+
## 0.2.5 - 2026-09-27
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Planner responses no longer repeat the task goal. The runtime keeps the
|
|
18
|
+
validated original goal, preserving the 4,000-character limit while leaving
|
|
19
|
+
more output budget for steps, actions and checks.
|
|
20
|
+
|
|
5
21
|
## 0.2.4 - 2026-09-27
|
|
6
22
|
|
|
7
23
|
### Fixed
|
package/README.md
CHANGED
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
|
|
25
25
|
Use an API or supported model CLI for open-ended tasks. Skip model setup for common page-reading jobs: deterministic local strategies read visible text, links and tables without a model call.
|
|
26
26
|
|
|
27
|
-
## New in 0.2.
|
|
27
|
+
## New in 0.2.6: keep current context between plans
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
When a task needs another planning pass, unchanged controls and page text stay available to the next plan. The agent uses a compact diff only when it contains all current controls and relevant page data; otherwise it sends the full bounded snapshot. This fixes follow-up plans that could lose useful context between stateless model calls.
|
|
30
30
|
|
|
31
31
|
## No model key needed
|
|
32
32
|
|
|
33
33
|
Install the release and start the local dashboard:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
npm install --global free-computer-use@0.2.
|
|
36
|
+
npm install --global free-computer-use@0.2.6
|
|
37
37
|
FCU_BROWSER_CHANNEL=chrome agent doctor
|
|
38
38
|
FCU_BROWSER_CHANNEL=chrome agent ui
|
|
39
39
|
```
|
|
@@ -47,7 +47,7 @@ Open **http://127.0.0.1:4318**, enter a page URL and one of these goals, then ap
|
|
|
47
47
|
| `Extract the first 5 links` | Return a bounded list of the first five links. |
|
|
48
48
|
| `Extract the table` | Try the synthetic [practice revenue table](https://othmaneblial.github.io/FreeComputerUse/lab/reports.html). |
|
|
49
49
|
|
|
50
|
-
These narrow workflows use local strategies and make zero model calls. General tasks need a configured provider. Release
|
|
50
|
+
These narrow workflows use local strategies and make zero model calls. General tasks need a configured provider. Release validation and platform coverage are recorded in the [support matrix](docs/SUPPORT_MATRIX.md).
|
|
51
51
|
|
|
52
52
|
## Watch a real run
|
|
53
53
|
|
|
@@ -77,7 +77,7 @@ Requires Node.js 22.13+, npm and an installed browser. The verified setup select
|
|
|
77
77
|
### Install from npm
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
npm install --global free-computer-use@0.2.
|
|
80
|
+
npm install --global free-computer-use@0.2.6
|
|
81
81
|
FCU_BROWSER_CHANNEL=chrome agent doctor
|
|
82
82
|
FCU_BROWSER_CHANNEL=chrome agent ui
|
|
83
83
|
```
|