@pstdio/pocketcoder-cli 0.1.0 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +6 -2
  2. package/dist/index.js +11014 -249
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -4,11 +4,11 @@ The operator and diagnostics CLI for Pocketcoder.
4
4
 
5
5
  ## Install
6
6
 
7
- Pocketcoderctl requires Bun 1.3.14 or newer:
7
+ pcd requires Bun 1.3.14 or newer:
8
8
 
9
9
  ```sh
10
10
  bun add --global @pstdio/pocketcoder-cli
11
- pocketcoderctl --help
11
+ pcd --help
12
12
  ```
13
13
 
14
14
  Database and administrative commands use `POCKETCODER_DATABASE_URL` and
@@ -19,4 +19,8 @@ The CLI automatically loads the nearest `.env` file without overriding values
19
19
  already exported by the shell. Use `--workdir <directory>` to select another
20
20
  project directory or `--env-file <path>` to load a specific file.
21
21
 
22
+ `pcd server start|status|stop` manages only the PocketCoder server process. It
23
+ does not build workspace images, generate templates, start a model gateway, or
24
+ initialize deployment prerequisites.
25
+
22
26
  See the full [CLI reference](https://github.com/pufflyai/pocketcoder/blob/main/docs/cli.md).