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.
- package/bin/lathe +12 -7
- 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
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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
|
|
35
|
-
meta
|
|
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
|