clixad 0.0.1-beta.2 → 0.0.1-beta.20
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 +31 -2
- package/dist/clixad.mjs +4896 -577
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# clixad
|
|
2
2
|
|
|
3
3
|
A terminal coding agent that routes model calls through the Clixad metering gateway. No
|
|
4
|
-
subscription:
|
|
5
|
-
model API calls.
|
|
4
|
+
subscription: the cheapest models are free to use up to a daily allowance, and past that you earn
|
|
5
|
+
credits by completing rewarded offers in your browser and spend them on real model API calls.
|
|
6
|
+
|
|
7
|
+
`/model` marks which models are free and shows roughly how many free turns the allowance still buys
|
|
8
|
+
on each — the same allowance goes a lot further on the cheapest one. The status line counts it down,
|
|
9
|
+
and once it is gone the model carries on against credits.
|
|
6
10
|
|
|
7
11
|
**Early beta.** Commands, interfaces and credit mechanics may change between beta versions. Run the
|
|
8
12
|
most recent published build with:
|
|
@@ -19,6 +23,31 @@ npm install -g clixad
|
|
|
19
23
|
|
|
20
24
|
Requires Node.js >= 20.
|
|
21
25
|
|
|
26
|
+
## Community
|
|
27
|
+
|
|
28
|
+
Discord: <https://discord.gg/pwxPM3QyF> — bug reports and feature requests are read there.
|
|
29
|
+
|
|
30
|
+
## What it does
|
|
31
|
+
|
|
32
|
+
It reads, searches and edits files and runs shell commands in the directory you start it in, asking
|
|
33
|
+
before it changes anything (`shift+tab` cycles between asking, auto-accepting edits, and a read-only
|
|
34
|
+
plan mode). Beyond that:
|
|
35
|
+
|
|
36
|
+
- **Reads the web** — searches for current documentation and error messages, and fetches a page,
|
|
37
|
+
JSON endpoint or PDF to read it.
|
|
38
|
+
- **Runs things in the background** — dev servers, watchers, tailed logs. They keep running across
|
|
39
|
+
turns; `/bg` lists them and stops them, and nothing survives the session.
|
|
40
|
+
- **Looks at images** — point it at a screenshot with `@shot.png` and it sees the picture, not the
|
|
41
|
+
filename.
|
|
42
|
+
- **Delegates wide searches** to a sub-agent, so the forty files it opened to find the three that
|
|
43
|
+
mattered stay out of the conversation you are paying for.
|
|
44
|
+
- **Keeps a task list** on multi-step work, and **asks you** when guessing wrong would waste real
|
|
45
|
+
work.
|
|
46
|
+
- **Uses MCP servers** you configure in `.mcp.json` or `~/.clixad/mcp.json`; `/mcp` shows their
|
|
47
|
+
status. Every tool a server offers is put to you before it runs.
|
|
48
|
+
|
|
49
|
+
Type `/help` for the commands, `@` to attach a file, and `!` to run a shell command yourself.
|
|
50
|
+
|
|
22
51
|
## Status
|
|
23
52
|
|
|
24
53
|
Pre-release, published under the `beta` dist-tag. `npx clixad` resolves to the latest published
|