majlis 0.1.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/README.md +31 -0
- package/dist/cli.js +3346 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# majlis
|
|
2
|
+
|
|
3
|
+
Multi-agent workflow CLI for structured doubt, independent verification, and compressed knowledge.
|
|
4
|
+
|
|
5
|
+
This is the CLI package. For full documentation, see the [root README](../../README.md).
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install --save-dev majlis
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or use the scaffolder for a full setup:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx create-majlis my-project
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
majlis init # Initialize in current project
|
|
23
|
+
majlis status # Show experiment states
|
|
24
|
+
majlis new "hyp" # Create experiment
|
|
25
|
+
majlis next # Advance to next cycle step
|
|
26
|
+
majlis next --auto # Run full cycle automatically
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|