@posthog/agent 2.3.418 → 2.3.425

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posthog/agent",
3
- "version": "2.3.418",
3
+ "version": "2.3.425",
4
4
  "repository": "https://github.com/PostHog/code",
5
5
  "description": "TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog",
6
6
  "exports": {
@@ -37,12 +37,12 @@ describe("agentsh runtime detection", () => {
37
37
  {
38
38
  name: "returns the agentsh session id and version",
39
39
  getVersion: async () => ({
40
- stdout: "agentsh version 0.16.7\n",
40
+ stdout: "agentsh version 0.18.3\n",
41
41
  stderr: "",
42
42
  }),
43
43
  expected: {
44
44
  sessionId: "session-123",
45
- version: "agentsh version 0.16.7",
45
+ version: "agentsh version 0.18.3",
46
46
  },
47
47
  },
48
48
  {
@@ -71,7 +71,7 @@ describe("agentsh runtime detection", () => {
71
71
  await logAgentshRuntimeInfo(logger, {
72
72
  readSessionId: async () => "session-123\n",
73
73
  getVersion: async () => ({
74
- stdout: "agentsh version 0.16.7\n",
74
+ stdout: "agentsh version 0.18.3\n",
75
75
  stderr: "",
76
76
  }),
77
77
  });
@@ -80,7 +80,7 @@ describe("agentsh runtime detection", () => {
80
80
  "Agentsh session ID: session-123",
81
81
  );
82
82
  expect(logger.debug).toHaveBeenCalledWith(
83
- "Agentsh hardening version: agentsh version 0.16.7",
83
+ "Agentsh hardening version: agentsh version 0.18.3",
84
84
  );
85
85
  });
86
86