lathe-cli 1.0.0 → 1.0.1

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 (2) hide show
  1. package/bin/lathe +12 -7
  2. package/package.json +1 -1
package/bin/lathe CHANGED
@@ -25,15 +25,20 @@ case "$CMD" in
25
25
  cat <<EOF
26
26
  lathe — agent harness CLI
27
27
 
28
+ Initialize a project with main / develop / meta worktrees backed by a
29
+ shared bare git repo, then drive target / meta agents over Claude Code.
30
+
28
31
  Commands:
29
- init Initialize Lathe in current git repo
30
- (creates develop + meta branches, two worktrees)
31
- process <pr#> Pick up a PR for target processing
32
- (creates task worktree, launches target with PR context)
32
+ init Initialize Lathe in current (empty) directory.
33
+ Creates ./.git (bare) and three worktrees:
34
+ ./main your app code
35
+ ./develop target harness, runs/ auto-commit here
36
+ ./meta meta agent + improvements/
37
+ process <pr#> Pick up a GitHub PR for target processing
38
+ (creates ./tasks/<pr#>/ worktree, launches target)
33
39
  sync Re-sync harness/ -> target/.claude/ in develop worktree
34
- target Launch target agent (cd develop worktree, claude)
35
- meta Launch meta agent (cd meta worktree, claude)
36
- status Show worktrees, recent runs, recent improvements
40
+ target [args] Launch target agent (cd develop/target, claude args)
41
+ meta [args] Launch meta agent (cd meta/meta, claude args)
37
42
  help This message
38
43
 
39
44
  LATHE_HOME=$LATHE_HOME
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lathe-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Agent harness CLI: target/meta git worktrees driven by Claude Code",
5
5
  "bin": {
6
6
  "lathe": "./bin/lathe"