@joshski/dust 0.1.12 → 0.1.14

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 CHANGED
@@ -1,17 +1,10 @@
1
1
  # Dust
2
2
 
3
- A workflow tool for keeping AI coding agents on track.
3
+ **Flow state for AI coding agents.**
4
4
 
5
- [![CI](https://github.com/joshski/dust/actions/workflows/ci.yml/badge.svg)](https://github.com/joshski/dust/actions/workflows/ci.yml)
6
-
7
- ## Why Use This?
8
-
9
- AI coding agents work best with clear tasks and fast feedback. Dust gives them both:
10
-
11
- - **Tasks** — a queue of work, each with clear requirements and definition of done
12
- - **Checks** — quality gates (tests, lint, build) that run before and after changes
5
+ Dust provides a CLI that agents use to systematically blaze through your backlog.
13
6
 
14
- Agents pick tasks, implement them, verify checks pass, and move on. You add tasks, review commits, and steer direction.
7
+ [![CI](https://github.com/joshski/dust/actions/workflows/ci.yml/badge.svg)](https://github.com/joshski/dust/actions/workflows/ci.yml)
15
8
 
16
9
  ## Quick Start
17
10
 
@@ -36,11 +29,7 @@ Or let dust run agents continuously [in a sandbox](./.dust/facts/autonomous-agen
36
29
  npx dust loop claude
37
30
  ```
38
31
 
39
- This runs Claude Code in a [ralph loop](https://ghuntley.com/loop/), picking up tasks until the iteration limit is reached (default: 10). You can specify a custom limit:
40
-
41
- ```bash
42
- npx dust loop claude 5
43
- ```
32
+ This runs Claude Code in a [ralph loop](https://ghuntley.com/loop/), picking up tasks until they are all done.
44
33
 
45
34
  ## Learn More
46
35
 
package/bin/dust CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env bun
2
2
 
3
- import "../lib/cli/entry";
3
+ import "../lib/cli/run";