agent-afk 5.52.0 → 5.52.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/dist/cli.mjs +476 -476
- package/dist/index.mjs +159 -159
- package/dist/telegram.mjs +213 -213
- package/dist/utils/errors.d.ts +3 -0
- package/package.json +1 -1
package/dist/utils/errors.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ export declare class HookBlockedError extends Error {
|
|
|
13
13
|
cause?: unknown;
|
|
14
14
|
});
|
|
15
15
|
}
|
|
16
|
+
export declare class StreamIncompleteError extends Error {
|
|
17
|
+
constructor(message: string);
|
|
18
|
+
}
|
|
16
19
|
export declare class BudgetExceededError extends Error {
|
|
17
20
|
readonly runningCostUsd: number;
|
|
18
21
|
readonly maxBudgetUsd: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-afk",
|
|
3
|
-
"version": "5.52.
|
|
3
|
+
"version": "5.52.1",
|
|
4
4
|
"description": "Open-source coding-agent harness you can actually change — own the loop (prompts, gates, routing, skills, terminal states), use any model, run long tasks while you're away.",
|
|
5
5
|
"main": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|