@openplaybooks/converge 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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Converge Framework Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,131 @@
1
+ # @openplaybooks/converge
2
+
3
+ **CLI for Converge** — the canonical npm package for the `converge` command.
4
+
5
+ This is the standalone CLI package and the recommended global install target. For the programmatic library, see [@openplaybooks/converge-core](../core).
6
+
7
+ ---
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install -g @openplaybooks/converge
13
+ ```
14
+
15
+ ---
16
+
17
+ ## Usage
18
+
19
+ ```bash
20
+ # Initialize project
21
+ converge init
22
+
23
+ # Run workflows
24
+ converge run
25
+
26
+ # Show status
27
+ converge status
28
+
29
+ # Get help
30
+ converge --help
31
+ ```
32
+
33
+ ---
34
+
35
+ ## Commands
36
+
37
+ ### Workflow Execution
38
+
39
+ ```bash
40
+ converge run [filter] # Run autonomous agent loop
41
+ converge run --step # Run one task then stop
42
+ converge run --dry # Dry run (plan only)
43
+ converge run --force # Force re-run completed tasks
44
+ converge run --max-iterations 50 # Limit iterations
45
+ ```
46
+
47
+ ### Project Management
48
+
49
+ ```bash
50
+ converge init # Initialize new project
51
+ converge status [filter] # Show project status
52
+ converge verify # Verify project structure
53
+ converge plan "prompt" # Generate playbook from prompt
54
+ ```
55
+
56
+ ### Inspection & Debugging
57
+
58
+ ```bash
59
+ converge inspect [--task taskId] # Inspect execution sessions
60
+ converge show journal # Show execution history
61
+ converge show gantt # Show Gantt chart
62
+ converge show graph # Show dependency graph
63
+ converge metrics # Show cost and token metrics
64
+ ```
65
+
66
+ ### Task Management
67
+
68
+ ```bash
69
+ converge reset <taskId...> # Reset task(s) for re-execution
70
+ converge reset --all # Reset entire project
71
+ converge goals # Evaluate project goals
72
+ ```
73
+
74
+ ---
75
+
76
+ ## Path-Based Execution
77
+
78
+ Run commands directly on specific files:
79
+
80
+ ```bash
81
+ converge path/to/project.yml run
82
+ converge path/to/playbook.yml status
83
+ converge path/to/TASK.md inspect
84
+ ```
85
+
86
+ ---
87
+
88
+ ## Configuration
89
+
90
+ Create `.converge/project.yml`:
91
+
92
+ ```yaml
93
+ version: 2
94
+ name: my-app
95
+ description: My autonomous AI project
96
+
97
+ runtime:
98
+ maxIterations: 100
99
+
100
+ ai:
101
+ provider: anthropic
102
+ model: claude-3-5-sonnet-20241022
103
+ ```
104
+
105
+ ---
106
+
107
+ ## Documentation
108
+
109
+ - [Getting Started](../../docs/getting-started.md)
110
+ - [CLI Reference](../core/CLI.md)
111
+ - [Core Library](../core/README.md)
112
+
113
+ ---
114
+
115
+ ## Architecture
116
+
117
+ This package owns the `converge` binary and depends on `@openplaybooks/converge-core` for runtime functionality. The core library can be used independently for programmatic access.
118
+
119
+ ```
120
+ @openplaybooks/converge (CLI)
121
+
122
+ @openplaybooks/converge-core (Library)
123
+
124
+ Your Application
125
+ ```
126
+
127
+ ---
128
+
129
+ ## License
130
+
131
+ MIT