clixad 0.0.1-beta.7 → 0.0.1-beta.9
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 +21 -0
- package/dist/clixad.mjs +2610 -150
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,27 @@ npm install -g clixad
|
|
|
19
19
|
|
|
20
20
|
Requires Node.js >= 20.
|
|
21
21
|
|
|
22
|
+
## What it does
|
|
23
|
+
|
|
24
|
+
It reads, searches and edits files and runs shell commands in the directory you start it in, asking
|
|
25
|
+
before it changes anything (`shift+tab` cycles between asking, auto-accepting edits, and a read-only
|
|
26
|
+
plan mode). Beyond that:
|
|
27
|
+
|
|
28
|
+
- **Reads the web** — searches for current documentation and error messages, and fetches a page,
|
|
29
|
+
JSON endpoint or PDF to read it.
|
|
30
|
+
- **Runs things in the background** — dev servers, watchers, tailed logs. They keep running across
|
|
31
|
+
turns; `/bg` lists them and stops them, and nothing survives the session.
|
|
32
|
+
- **Looks at images** — point it at a screenshot with `@shot.png` and it sees the picture, not the
|
|
33
|
+
filename.
|
|
34
|
+
- **Delegates wide searches** to a sub-agent, so the forty files it opened to find the three that
|
|
35
|
+
mattered stay out of the conversation you are paying for.
|
|
36
|
+
- **Keeps a task list** on multi-step work, and **asks you** when guessing wrong would waste real
|
|
37
|
+
work.
|
|
38
|
+
- **Uses MCP servers** you configure in `.mcp.json` or `~/.clixad/mcp.json`; `/mcp` shows their
|
|
39
|
+
status. Every tool a server offers is put to you before it runs.
|
|
40
|
+
|
|
41
|
+
Type `/help` for the commands, `@` to attach a file, and `!` to run a shell command yourself.
|
|
42
|
+
|
|
22
43
|
## Status
|
|
23
44
|
|
|
24
45
|
Pre-release, published under the `beta` dist-tag. `npx clixad` resolves to the latest published
|