binder-cli 1.1.0 → 1.2.5
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 +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,6 +34,25 @@ binder status
|
|
|
34
34
|
|
|
35
35
|
## Commands
|
|
36
36
|
|
|
37
|
+
```
|
|
38
|
+
❯ binder -h
|
|
39
|
+
Usage: binder [options] [command]
|
|
40
|
+
|
|
41
|
+
Orchestrate Virtual Monoliths from distributed repositories
|
|
42
|
+
|
|
43
|
+
Options:
|
|
44
|
+
-V, --version output the version number
|
|
45
|
+
-v, --verbose Enable verbose output
|
|
46
|
+
-h, --help display help for command
|
|
47
|
+
|
|
48
|
+
Commands:
|
|
49
|
+
init Create a new binder.yaml configuration file
|
|
50
|
+
pull Clone missing repositories and checkout configured branches
|
|
51
|
+
context [options] Generate CONTEXT_MAP.md for AI agents
|
|
52
|
+
status Show workspace status (repos, branches, dirty state)
|
|
53
|
+
help [command] display help for command
|
|
54
|
+
```
|
|
55
|
+
|
|
37
56
|
### `binder init`
|
|
38
57
|
|
|
39
58
|
Creates a new `binder.yaml` configuration file with a commented template.
|
package/package.json
CHANGED