ysagc-agent 0.8.0 → 0.8.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/agent.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { type ClientState } from './protocol';
2
2
  import { type AgentConfig } from './config';
3
3
  /** Kept in sync with package.json. */
4
- export declare const AGENT_VERSION = "0.7.1";
4
+ export declare const AGENT_VERSION = "0.8.1";
5
5
  export interface AgentHandle {
6
6
  stop(): void;
7
7
  }
package/dist/agent.js CHANGED
@@ -12,7 +12,7 @@ const tools_1 = require("./tools");
12
12
  const config_1 = require("./config");
13
13
  const tokens_1 = require("./tokens");
14
14
  /** Kept in sync with package.json. */
15
- exports.AGENT_VERSION = '0.7.1';
15
+ exports.AGENT_VERSION = '0.8.1';
16
16
  const MAX_IDEMPOTENCY_ENTRIES = 512;
17
17
  const HEARTBEAT_MS = 30000;
18
18
  const READY_OPEN = 1; // ws.WebSocket.OPEN
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ysagc-agent",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Local execution agent for ysagc: a state-agnostic, safety-bounded worker that connects to a platform backend over WebSocket, executes tool instructions inside an authorization root, and reports results back.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",