@quiel/cli 0.5.2 → 0.5.3
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/README.md +3 -0
- package/dist/cli.js +1537 -1273
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,11 +16,14 @@ This package is the part that runs **on your machine**.
|
|
|
16
16
|
- **Installs hooks into your agent** so a shell command is checked against the project's trust profile *before* it runs. A command that matches a stop pattern is refused; a command that needs a human gets one.
|
|
17
17
|
- **Keeps the connection and the task lease alive**, so the platform knows the task is being worked on and not abandoned.
|
|
18
18
|
- **Counts the tokens each task costs** and reports the totals, so a project can be looked at afterwards.
|
|
19
|
+
- **Rescues unfinished work when your subscription limit runs out.** It commits what the agent managed and pushes it to the task's own branch, marked as interrupted, so the next person or agent continues from there instead of starting over. It never pushes to your main branch.
|
|
19
20
|
|
|
20
21
|
It never sends the contents of your files anywhere — only file names, paths and commands. The token counters are numbers only: the client reads them from the agent's own transcript on your machine and sends the totals, never the conversation.
|
|
21
22
|
|
|
22
23
|
Files go the other way only: a human attaches them in the browser, the agent downloads and reads them. The agent never uploads files of its own.
|
|
23
24
|
|
|
25
|
+
**The client does commit and push, and only ever to the task's branch.** This happens in one case: your subscription limit runs out mid-task. Losing half a day's work is worse than an extra branch in the repository — but you should know it happens, and where.
|
|
26
|
+
|
|
24
27
|
## Requirements
|
|
25
28
|
|
|
26
29
|
- Node.js 22 or newer
|