@nairon-ai/aegis 0.6.0 → 0.6.2
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/.flue/agents/bug-fix.ts +38 -0
- package/.flue/app.ts +7 -1
- package/README.md +8 -0
- package/dist-node/agent/client.d.ts +3 -1
- package/dist-node/agent/client.d.ts.map +1 -1
- package/dist-node/agent/client.js +5 -4
- package/dist-node/agent/client.js.map +1 -1
- package/dist-node/cli/commands/peek.d.ts.map +1 -1
- package/dist-node/cli/commands/peek.js +1 -0
- package/dist-node/cli/commands/peek.js.map +1 -1
- package/dist-node/cli/commands/recover.d.ts +11 -0
- package/dist-node/cli/commands/recover.d.ts.map +1 -0
- package/dist-node/cli/commands/recover.js +46 -0
- package/dist-node/cli/commands/recover.js.map +1 -0
- package/dist-node/cli/index.js +2 -0
- package/dist-node/cli/index.js.map +1 -1
- package/dist-node/cli/state.d.ts.map +1 -1
- package/dist-node/cli/state.js +5 -0
- package/dist-node/cli/state.js.map +1 -1
- package/dist-node/core/runs.d.ts +12 -1
- package/dist-node/core/runs.d.ts.map +1 -1
- package/dist-node/core/runs.js +60 -0
- package/dist-node/core/runs.js.map +1 -1
- package/dist-node/server/app.d.ts.map +1 -1
- package/dist-node/server/app.js +69 -3
- package/dist-node/server/app.js.map +1 -1
- package/dist-node/shared/types.d.ts +7 -0
- package/dist-node/shared/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/agent/client.ts +8 -1
- package/src/cli/commands/peek.ts +1 -0
- package/src/cli/commands/recover.ts +52 -0
- package/src/cli/index.ts +2 -0
- package/src/cli/state.ts +5 -0
- package/src/core/runs.ts +81 -0
- package/src/server/app.ts +84 -3
- package/src/shared/types.ts +7 -0
package/src/shared/types.ts
CHANGED
|
@@ -81,6 +81,11 @@ export type RunSnapshot = {
|
|
|
81
81
|
export type SandboxPeekResult = {
|
|
82
82
|
runId: string;
|
|
83
83
|
checkedAt: string;
|
|
84
|
+
status: {
|
|
85
|
+
exitCode: number;
|
|
86
|
+
stdout: string;
|
|
87
|
+
stderr: string;
|
|
88
|
+
};
|
|
84
89
|
workspace: {
|
|
85
90
|
exitCode: number;
|
|
86
91
|
stdout: string;
|
|
@@ -218,6 +223,8 @@ export type Bindings = {
|
|
|
218
223
|
AUTOMATION_MODE?: AutomationMode;
|
|
219
224
|
CONTEXT_PROFILE?: ContextProfile;
|
|
220
225
|
MAX_CONCURRENT_RUNS?: string;
|
|
226
|
+
AEGIS_PLAN_TIMEOUT_MINUTES?: string;
|
|
227
|
+
AEGIS_STALE_RUN_MINUTES?: string;
|
|
221
228
|
READY_LABEL?: string;
|
|
222
229
|
BUG_LABEL?: string;
|
|
223
230
|
IN_PROGRESS_LABEL?: string;
|