episoda 0.2.53 → 0.2.55

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 ADDED
@@ -0,0 +1,37 @@
1
+ # Episoda CLI
2
+
3
+ Command-line tool for Episoda local development workflow orchestration.
4
+
5
+ ## Installation
6
+
7
+ ### From npm (recommended)
8
+
9
+ ```bash
10
+ npm install -g episoda
11
+ ```
12
+
13
+ ### For local development
14
+
15
+ When developing the CLI locally, use `npm run install-global` instead of `npm link`. This copies files rather than creating symlinks, so the CLI survives worktree removal:
16
+
17
+ ```bash
18
+ cd packages/episoda
19
+ npm run install-global
20
+ ```
21
+
22
+ > **Why not `npm link`?** Using `npm link` creates a symlink to the worktree directory. When that worktree is removed (after merge), the CLI breaks. The `install-global` script uses `npm pack` + `npm install -g` to copy files instead.
23
+
24
+ ## Commands
25
+
26
+ - `episoda auth` - Authenticate with Episoda
27
+ - `episoda dev` - Connect project to Episoda daemon
28
+ - `episoda status` - Show connection status
29
+ - `episoda checkout <module>` - Create worktree for a module
30
+ - `episoda release <module>` - Remove worktree after merge
31
+ - `episoda list` - Show active worktrees
32
+
33
+ ## Auto-Updates
34
+
35
+ The CLI automatically checks for updates when you run `episoda status`. If a new version is available, it will be installed automatically.
36
+
37
+ For file-linked development installs, auto-update is skipped (shows "linked" in version output).