perchai-cli 2.4.9 → 2.4.11
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/LICENSE +13 -0
- package/README.md +2 -4
- package/dist/perch.mjs +92722 -91412
- package/package.json +4 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Perch AI CLI Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Perch AI. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software is proprietary and confidential. You may install and use this
|
|
6
|
+
package only as permitted by Perch AI or by a written agreement with Perch AI.
|
|
7
|
+
|
|
8
|
+
You may not copy, modify, distribute, sublicense, sell, rent, lease, reverse
|
|
9
|
+
engineer, decompile, or create derivative works from this software except where
|
|
10
|
+
expressly permitted by Perch AI in writing or by applicable law.
|
|
11
|
+
|
|
12
|
+
No rights are granted except those expressly stated here. This software is
|
|
13
|
+
provided "as is" without warranties of any kind, express or implied.
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Run Perch from a terminal without installing the Desktop app.
|
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
6
|
npm install -g perchai-cli
|
|
7
|
-
perch login
|
|
7
|
+
perch login
|
|
8
8
|
perch status
|
|
9
9
|
perch --cwd ~/Desktop/Project --permission take_the_wheel
|
|
10
10
|
perch run "Summarize this folder" --cwd .
|
|
@@ -13,8 +13,6 @@ perch ap packet ./01-ap
|
|
|
13
13
|
|
|
14
14
|
`perch login` opens your browser, completes OAuth through Perch, and saves the CLI session in the macOS Keychain or `~/.perch/cli-auth-session.json` on other platforms.
|
|
15
15
|
|
|
16
|
-
The CLI uses the hosted Perch model proxy by default when `--app-url` or `PERCH_CLI_APP_URL` points at a Perch app.
|
|
17
|
-
|
|
18
16
|
## Interactive Commands
|
|
19
17
|
|
|
20
18
|
Run `perch`, then use these commands inside the terminal chat:
|
|
@@ -26,7 +24,7 @@ Run `perch`, then use these commands inside the terminal chat:
|
|
|
26
24
|
- `/permissions [default|auto_review|take_the_wheel|plan]` — alias for `/permission`.
|
|
27
25
|
- `/mode [ask|agents|plan]` — show or change chat mode.
|
|
28
26
|
- `/persona [saffron|quill]` — show or change persona.
|
|
29
|
-
- `/
|
|
27
|
+
- `/context` — show context meter and compaction details.
|
|
30
28
|
- `/local-tools [on|off]` — show or toggle local shell/file tools.
|
|
31
29
|
- `/thread [new|id]` — show, reset, or set the current thread id.
|
|
32
30
|
- `/clear` — clear local conversation memory for this terminal session.
|