@viraatdas/rudder 0.2.0 → 0.3.0

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/dist/types.d.ts CHANGED
@@ -76,7 +76,7 @@ export type BackendConfig = {
76
76
  effort?: "low" | "medium" | "high" | "xhigh" | "max";
77
77
  reasoningEffort?: "low" | "medium" | "high" | "xhigh";
78
78
  };
79
- export type RunStatus = "created" | "running" | "verifying" | "completed" | "failed" | "cancelled" | "merge-conflict" | "merged";
79
+ export type RunStatus = "created" | "running" | "steering" | "verifying" | "completed" | "failed" | "cancelled" | "merge-conflict" | "merged";
80
80
  export type RunRecord = {
81
81
  id: string;
82
82
  status: RunStatus;
@@ -100,6 +100,18 @@ export type RunRecord = {
100
100
  exitCode?: number | null;
101
101
  signal?: NodeJS.Signals | null;
102
102
  };
103
+ currentPrompt?: string;
104
+ turns?: Array<{
105
+ ts: string;
106
+ prompt: string;
107
+ source: "user" | "steerer";
108
+ }>;
109
+ lastUserInputAt?: string;
110
+ autoSteer?: {
111
+ count: number;
112
+ max: number;
113
+ waitingSince?: string;
114
+ };
103
115
  session?: {
104
116
  nativeSessionId?: string;
105
117
  acpxSessionId?: string;
@@ -118,7 +130,7 @@ export type MergeState = {
118
130
  export type RudderEvent = {
119
131
  ts: string;
120
132
  runId: string;
121
- type: "run.created" | "run.started" | "run.detached" | "planner.spec" | "backend.output" | "backend.error" | "backend.exit" | "verifier.result" | "run.completed" | "run.failed" | "run.cancelled" | "merge.result";
133
+ type: "run.created" | "run.started" | "run.continued" | "run.detached" | "steerer.waiting" | "steerer.prompt" | "planner.spec" | "backend.output" | "backend.error" | "backend.exit" | "verifier.result" | "run.completed" | "run.failed" | "run.cancelled" | "merge.result";
122
134
  message?: string;
123
135
  data?: JsonValue;
124
136
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viraatdas/rudder",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "A coding-agent harness for Claude Code, Codex, and acpx with worktree-isolated runs.",
5
5
  "type": "module",
6
6
  "bin": {