bounded-loops 0.1.0 → 0.2.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/README.md +9 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,8 +8,9 @@ The engine itself is a **Python 3.11+** package. This wrapper lets you run it wi
8
8
  one command:
9
9
 
10
10
  ```bash
11
- npx bounded-loops list
12
- npx bounded-loops run loops/bug-fix-red-green --yes
11
+ npx bounded-loops new --list
12
+ npx bounded-loops new pytest-basic my-loop
13
+ npx bounded-loops run my-loop --yes
13
14
  ```
14
15
 
15
16
  On first run it detects Python 3.11+, installs the `bounded-loops` Python package
@@ -20,10 +21,14 @@ Prefer the native install if you already have Python:
20
21
 
21
22
  ```bash
22
23
  pip install bounded-loops
23
- bl list
24
+ bl new --list
25
+ bl new pytest-basic my-loop
26
+ bl run my-loop --yes
24
27
  ```
25
28
 
26
- Full documentation, the 63 runnable loops, the nine bounds, and the architecture
29
+ Full documentation, the 67 loop folders, the nine bounds, and the architecture
27
30
  docs live in the [main repository](https://github.com/qualixar/bounded-loops).
31
+ Clone the repository when you want `bl list` to browse the full shipped loop
32
+ catalog.
28
33
 
29
34
  Apache-2.0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bounded-loops",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "npx launcher for bounded-loops — runnable, bounded AI-agent loops. The engine is a Python 3.11+ package; this wrapper detects Python, installs it on first run, and runs it.",
5
5
  "bin": {
6
6
  "bounded-loops": "bin/bounded-loops.js"