@joshski/dust 0.1.11 → 0.1.13

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:
5
+ Dust provides a CLI that agents use to systematically blitz through your work queue.
10
6
 
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
13
-
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
 
@@ -33,10 +26,10 @@ claude "implement the next task"
33
26
  Or let dust run agents continuously [in a sandbox](./.dust/facts/autonomous-agents-need-sandboxes.md) with the [loop](./.dust/facts/loop-command.md) command:
34
27
 
35
28
  ```bash
36
- npx dust loop
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 none remain.
32
+ This runs Claude Code in a [ralph loop](https://ghuntley.com/loop/), picking up tasks until they are all done.
40
33
 
41
34
  ## Learn More
42
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";