@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 +5 -12
- package/bin/dust +1 -1
- package/dist/dust.js +619 -215
- package/package.json +4 -3
- package/templates/agent-greeting.txt +19 -8
- package/templates/agent-implement-task.txt +4 -3
- package/templates/agent-new-goal.txt +4 -3
- package/templates/agent-new-idea.txt +1 -1
- package/templates/agent-new-task.txt +20 -10
- package/templates/help.txt +25 -14
- package/templates/templates/agent-greeting.txt +25 -0
- package/templates/templates/agent-implement-task.txt +25 -0
- package/templates/templates/agent-new-goal.txt +22 -0
- package/templates/templates/agent-new-idea.txt +11 -0
- package/templates/templates/agent-new-task.txt +30 -0
- package/templates/templates/agent-pick-task.txt +7 -0
- package/templates/templates/agents-md.txt +5 -0
- package/templates/templates/claude-md.txt +5 -0
- package/templates/templates/help.txt +35 -0
- package/templates/agent-help.txt +0 -35
- package/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:
|
|
5
|
+
Dust provides a CLI that agents use to systematically blitz through your work queue.
|
|
10
6
|
|
|
11
|
-
|
|
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
|
+
[](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
|
|
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