@agent-idle/cli 0.1.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.
- package/README.md +37 -0
- package/index.js +1382 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @agent-idle/cli
|
|
2
|
+
|
|
3
|
+
The Agent Idle sensor CLI: it watches your coding agent (Claude Code / Codex),
|
|
4
|
+
appraises prompts **locally**, and reports only numeric token counts + a quality
|
|
5
|
+
score — never prompt text or source code.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @agent-idle/cli setup # one-time setup (installs the agent hook)
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or globally:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm i -g @agent-idle/cli
|
|
17
|
+
agent-idle setup
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Commands
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
agent-idle setup [claude] [codex] # install the hook + start the daemon
|
|
24
|
+
agent-idle status # show the local daemon / session state
|
|
25
|
+
agent-idle remove # sign out everywhere + remove the hook
|
|
26
|
+
agent-idle kill # stop the local daemon
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Privacy
|
|
30
|
+
|
|
31
|
+
Prompts are appraised on your machine. Only a numeric quality score and token
|
|
32
|
+
counts ever leave it — there is no prompt-text or source-code field anywhere in
|
|
33
|
+
the wire format.
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
AGPL-3.0-only
|