@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 +4 -15
- package/bin/dust +1 -1
- package/dist/dust.js +841 -205
- package/package.json +3 -3
- package/templates/agent-greeting.txt +19 -8
- package/templates/agent-implement-task.txt +4 -3
- package/templates/agent-new-goal.txt +3 -2
- package/templates/agent-new-task.txt +20 -10
- package/templates/help.txt +30 -22
- package/templates/templates/agent-greeting.txt +19 -8
- package/templates/templates/agent-implement-task.txt +4 -3
- package/templates/templates/agent-new-goal.txt +3 -2
- package/templates/templates/agent-new-task.txt +20 -10
- package/templates/templates/help.txt +30 -22
- package/templates/agent-help.txt +0 -35
- package/templates/agent-understand-goals.txt +0 -9
- package/templates/templates/agent-help.txt +0 -35
- package/templates/templates/agent-understand-goals.txt +0 -9
package/README.md
CHANGED
|
@@ -1,17 +1,10 @@
|
|
|
1
1
|
# Dust
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Flow state for AI coding agents.**
|
|
4
4
|
|
|
5
|
-
|
|
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
|
-
|
|
7
|
+
[](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
|
|
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