@rudderhq/cli 0.4.5 → 0.4.6-canary.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.
- package/README.md +8 -8
- package/dist/index.js +274 -62
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Agents that think, build, play, and learn from real work.
|
|
|
6
6
|
|
|
7
7
|
[Website](https://rudderhq.dev) | [Docs](https://docs.rudderhq.dev)
|
|
8
8
|
|
|
9
|
-
Rudder turns goals, issues, agent runs, reviews, and feedback into a work loop for agent teams. It gives humans and agents a shared operating structure for
|
|
9
|
+
Rudder turns goals, tasks, chats, issues, agent runs, reviews, and feedback into a work loop for agent teams. It gives humans and agents a shared operating structure for moving work forward, running agents, reviewing outputs, controlling spend, and preserving the lessons that should make the next run better.
|
|
10
10
|
|
|
11
11
|
Rudder began as a fork of an early version of Paperclip. That gave the project a practical starting point for agent operations; Rudder is now evolving around a sharper product idea: agent teams improve when real work leaves behind durable context, decisions, feedback, and reusable operating patterns.
|
|
12
12
|
|
|
@@ -17,10 +17,10 @@ Rudder is built for the moment when agent work stops looking like a single promp
|
|
|
17
17
|
Rudder is designed around the loop that makes agent work compound:
|
|
18
18
|
|
|
19
19
|
```text
|
|
20
|
-
Goal -> Issue -> Agent run -> Review -> Feedback -> Learning -> Better future runs
|
|
20
|
+
Goal -> Plan -> Chat or Issue -> Agent run -> Review -> Feedback -> Learning -> Better future runs
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
The control plane matters because this loop needs structure. Goals explain why work exists.
|
|
23
|
+
The control plane matters because this loop needs inspectable execution and the right amount of structure. Goals explain why work exists. Chat supports conversation-driven execution; issues add explicit coordination fields. Agent runs keep execution visible. Reviews and approvals keep autonomy governable. Feedback, comments, documents, run history, and skills give the team a place to keep what it learned.
|
|
24
24
|
|
|
25
25
|
Rudder does not assume every lesson is automatically promoted into a new skill or workflow. The product direction is to make those promotion paths explicit, reviewable, and reusable instead of leaving them buried in chat transcripts or one-off prompts.
|
|
26
26
|
|
|
@@ -53,7 +53,7 @@ Rudder turns those coordination patterns into product primitives for agent teams
|
|
|
53
53
|
- work belongs to an organization, not a loose thread
|
|
54
54
|
- every issue should trace back to a goal
|
|
55
55
|
- agents have roles, runtime config, reporting lines, and skills
|
|
56
|
-
- chat
|
|
56
|
+
- chat and issues provide conversational and structured ways to move work forward, with execution attached to inspectable runs, outputs, reviews, and history
|
|
57
57
|
- autonomy stays legible, governable, and budget-aware
|
|
58
58
|
|
|
59
59
|
## What Rudder Is
|
|
@@ -118,14 +118,14 @@ Rudder defaults to embedded PostgreSQL in development. If `DATABASE_URL` is unse
|
|
|
118
118
|
2. Define the organization goal.
|
|
119
119
|
3. Create or use a default agent with a clear role and runtime.
|
|
120
120
|
4. Add more agents only when repeated work needs stable ownership.
|
|
121
|
-
5.
|
|
122
|
-
6. Let agents
|
|
121
|
+
5. Choose Chat for conversation-driven execution or an issue for structured coordination.
|
|
122
|
+
6. Let agents execute through Chat turns or issue heartbeat invocations.
|
|
123
123
|
7. Review outputs, approvals, activity, and spend from the board.
|
|
124
|
-
8. Leave feedback
|
|
124
|
+
8. Leave feedback in the conversation, run, issue, or output.
|
|
125
125
|
9. Preserve reusable lessons as better context, skills, decisions, or workflows.
|
|
126
126
|
10. Future runs use the improved team context.
|
|
127
127
|
|
|
128
|
-
Every durable piece of work should still answer one question: why does this
|
|
128
|
+
Every durable piece of work should still answer one question: why does this task exist? In Rudder, the answer should remain traceable from its Chat or issue context back to the organization goal.
|
|
129
129
|
|
|
130
130
|
## Contributing
|
|
131
131
|
|