@rudderhq/cli 0.6.4 → 0.6.5-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 +21 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# Rudder
|
|
2
4
|
|
|
3
5
|
> Build your self-improving Agent Team.
|
|
4
6
|
|
|
5
7
|
Agents that think, build, play, and learn from real work.
|
|
6
8
|
|
|
7
|
-
[Website](https://rudderhq.dev) | [Docs](https://docs.rudderhq.dev)
|
|
9
|
+
[Website](https://rudderhq.dev) | [Docs](https://docs.rudderhq.dev) | [Discord](https://discord.gg/ZcfWwPVkUz)
|
|
8
10
|
|
|
9
11
|
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
12
|
|
|
@@ -12,6 +14,16 @@ Rudder began as a fork of an early version of Paperclip. That gave the project a
|
|
|
12
14
|
|
|
13
15
|
Rudder is built for the moment when agent work stops looking like a single prompt and starts looking like a real team.
|
|
14
16
|
|
|
17
|
+
## A Better Harness for Agent Work
|
|
18
|
+
|
|
19
|
+
We benchmarked Rudder, Codex CLI, and Claude Code on a random sample of professional tasks from OpenAI's GDPval dataset, with every system requesting the same model and reasoning effort. Rudder achieved the highest score under our local case-equal rubric metric.
|
|
20
|
+
|
|
21
|
+
[](https://docs.rudderhq.dev/benchmarks/gdpval-harness)
|
|
22
|
+
|
|
23
|
+
A model is only as effective as the environment around it. Rudder gives agents durable context, coordinated tools, structured work, review feedback, budgets, and memory—helping them stay focused, preserve what they learn, and produce stronger results across real work.
|
|
24
|
+
|
|
25
|
+
The benchmark provides directional evidence that the harness and work environment matter; it is not an official GDPval score or leaderboard result. [Read the methodology and evidence limits.](https://docs.rudderhq.dev/benchmarks/gdpval-harness)
|
|
26
|
+
|
|
15
27
|
## The Work Loop
|
|
16
28
|
|
|
17
29
|
Rudder is designed around the loop that makes agent work compound:
|
|
@@ -53,6 +65,14 @@ Rudder is open-source software for assigning, running, reviewing, and improving
|
|
|
53
65
|
|
|
54
66
|
Rudder coordinates agents. It does not force one runtime, one model, one prompt format, or one execution environment.
|
|
55
67
|
|
|
68
|
+
## Bring Your Own Runtime
|
|
69
|
+
|
|
70
|
+
Rudder is the coordination layer, not the model provider. Run agents with the local tools and provider accounts you already use—including Codex, Claude Code, Cursor, OpenClaw, Bash, or your own HTTP service. Local runtimes keep their existing installation, login, and credentials; Rudder connects assignment, context, execution, review, budgets, and memory around them.
|
|
71
|
+
|
|
72
|
+

|
|
73
|
+
|
|
74
|
+
[See supported runtimes and configuration options.](https://docs.rudderhq.dev/reference/runtime-types)
|
|
75
|
+
|
|
56
76
|
## Get Started
|
|
57
77
|
|
|
58
78
|
### Try Rudder
|
package/dist/index.js
CHANGED
|
@@ -27,6 +27,13 @@ var init_chat_inline_visuals = __esm({
|
|
|
27
27
|
}
|
|
28
28
|
});
|
|
29
29
|
|
|
30
|
+
// ../packages/shared/dist/chat-subagents.js
|
|
31
|
+
var init_chat_subagents = __esm({
|
|
32
|
+
"../packages/shared/dist/chat-subagents.js"() {
|
|
33
|
+
"use strict";
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
30
37
|
// ../packages/shared/dist/project-mentions.js
|
|
31
38
|
var init_project_mentions = __esm({
|
|
32
39
|
"../packages/shared/dist/project-mentions.js"() {
|
|
@@ -4728,6 +4735,7 @@ var init_dist = __esm({
|
|
|
4728
4735
|
"use strict";
|
|
4729
4736
|
init_browser_shortcuts();
|
|
4730
4737
|
init_chat_inline_visuals();
|
|
4738
|
+
init_chat_subagents();
|
|
4731
4739
|
init_chat_work_manifest();
|
|
4732
4740
|
init_constants();
|
|
4733
4741
|
init_constants();
|