picocode 0.9.119 → 0.9.121

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.
Files changed (3) hide show
  1. package/dist/pico.js +309 -6017
  2. package/package.json +5 -11
  3. package/README.md +0 -45
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "picocode",
3
- "version": "0.9.119",
3
+ "version": "0.9.121",
4
4
  "description": "a TUI coding agent built on trend and @prsm/ai",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/nvms/pico.git"
9
+ "url": "git+https://github.com/nvms/pico.git",
10
+ "directory": "packages/pico"
10
11
  },
11
12
  "bin": {
12
13
  "pico": "./bin/pico"
@@ -22,21 +23,14 @@
22
23
  "build": "node esbuild.config.js",
23
24
  "test": "node --test 'test/**/*.test.js'",
24
25
  "start": "node dist/pico.js",
25
- "prepublishOnly": "node scripts/snapshot-catalog.js && npm run build"
26
+ "prepublishOnly": "npm run build"
26
27
  },
27
28
  "dependencies": {
28
- "@modelcontextprotocol/sdk": "^1.12.0",
29
- "@prsm/ai": "^1.6.1",
30
29
  "@shikijs/cli": "^3.0.0",
31
30
  "@trendr/core": "0.4.39",
32
- "diff": "^7.0.0",
33
- "fast-glob": "^3.3.0",
34
- "proper-lockfile": "^4.1.2"
31
+ "picocode-core": "0.9.121"
35
32
  },
36
33
  "devDependencies": {
37
34
  "esbuild": "^0.25.0"
38
- },
39
- "allowScripts": {
40
- "esbuild@0.25.12": true
41
35
  }
42
36
  }
package/README.md DELETED
@@ -1,45 +0,0 @@
1
- # pico
2
-
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).
5
-
6
- ![pico terminal interface](.github/assets/pico.png)
7
-
8
- ## Install
9
-
10
- ```
11
- npm i -g picocode
12
- ```
13
-
14
- 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.
15
-
16
- ## Use
17
-
18
- Run `pico` in a project directory. Type `/` to browse commands, or run `/help` for the full reference.
19
-
20
- 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`.
21
-
22
- ## Obligatory feature list
23
-
24
- - Multi-provider support
25
- - ChatGPT/Codex subscription support through Codex OAuth
26
- - Headless mode with text, JSON, and JSONL output
27
- - Background shells, with a management UI
28
- - Parallel background agents, with a management UI
29
- - Full MCP support
30
- - Project and global memories with on-demand recall and management
31
- - Fast session, project, model, prompt, and file pickers
32
- - Scheduled wake-ups and recurring agent tasks
33
- - Skills and commands
34
- - Image attachments (drag and drop or via file picker)
35
- - Per-project config for memories, commands, skills, tools, and MCP servers
36
-
37
- And quite a bit more, actually.
38
-
39
- ## Tips
40
-
41
- Pico can extend itself. Describe what you want and whether it should be available globally or only in the current project.
42
-
43
- - Ask Pico to create a skill for you
44
- - Ask Pico to create a command for you
45
- - Ask Pico to create a tool for itself