picocode 0.9.44 → 0.9.45
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 +9 -10
- package/dist/pico.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
# pico
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
A coding agent that runs in your terminal. Rendering is [@trendr/core](https://github.com/nvms/trendr), model access is [@prsm/ai](https://github.com/prsmjs/ai).
|
|
4
5
|
|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<img src=".github/assets/quick-task.gif" alt="pico demo">
|
|
10
|
+
</p>
|
|
11
|
+
|
|
5
12
|
## Install
|
|
6
13
|
|
|
7
14
|
```
|
|
8
15
|
npm i -g picocode
|
|
9
16
|
```
|
|
10
17
|
|
|
11
|
-
Requires node 24 or newer and ripgrep. Set at least one provider key in your environment: `GEMINI_API_KEY`, `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, or `XAI_API_KEY`. Models are offered based on
|
|
18
|
+
Requires node 24 or newer and ripgrep. Set at least one provider key in your environment: `GEMINI_API_KEY`, `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, or `XAI_API_KEY`. Alternatively, use `/connect` in pico to sign in with your ChatGPT subscription and access Codex models. Models are offered based on the credentials available.
|
|
12
19
|
|
|
13
20
|
## Use
|
|
14
21
|
|
|
15
22
|
Run `pico` in a project directory. Type `/` to browse commands, or run `/help` for the full reference.
|
|
16
23
|
|
|
17
|
-
Sessions are stored under `~/.pico` as jsonl event logs
|
|
18
|
-
|
|
19
|
-
## Develop
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
make help
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
`make deps-local` points the trend and prsm dependencies at sibling working trees if you have them checked out.
|
|
24
|
+
Sessions are stored under `~/.pico` as jsonl event logs. AGENTS.md files are read automatically from the working directory up to the git root, and lazily from subdirectories as the agent touches them. User-defined prompt templates live in `~/.pico/commands` and `.pico/commands`, skills in `~/.pico/skills` and `.pico/skills`.
|