chatccc 0.2.226 → 0.2.228

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.
Files changed (67) hide show
  1. package/.agents/skills/create-chatccc-feishu-app/SKILL.md +85 -85
  2. package/.claude/skills/create-chatccc-feishu-app/SKILL.md +85 -85
  3. package/.cursor/skills/create-chatccc-feishu-app/SKILL.md +85 -85
  4. package/README.md +90 -90
  5. package/package.json +1 -1
  6. package/src/__tests__/agent-activity.test.ts +76 -76
  7. package/src/__tests__/builtin-chat-session.test.ts +350 -350
  8. package/src/__tests__/builtin-config.test.ts +26 -26
  9. package/src/__tests__/builtin-context.test.ts +163 -163
  10. package/src/__tests__/builtin-file-tools.test.ts +275 -275
  11. package/src/__tests__/builtin-permissions.test.ts +211 -211
  12. package/src/__tests__/builtin-session-select.test.ts +116 -116
  13. package/src/__tests__/builtin-skills.test.ts +252 -141
  14. package/src/__tests__/builtin-web-tools.test.ts +220 -0
  15. package/src/__tests__/card-action-routing.test.ts +18 -18
  16. package/src/__tests__/ccc-adapter.test.ts +136 -136
  17. package/src/__tests__/claude-adapter.test.ts +614 -614
  18. package/src/__tests__/codex-adapter.test.ts +58 -58
  19. package/src/__tests__/codex-raw-stream-log.test.ts +170 -170
  20. package/src/__tests__/cursor-adapter.test.ts +268 -268
  21. package/src/__tests__/feishu-avatar.test.ts +164 -164
  22. package/src/__tests__/feishu-message-ingress.test.ts +138 -138
  23. package/src/__tests__/package-files.test.ts +24 -24
  24. package/src/__tests__/progress-reducer.test.ts +110 -110
  25. package/src/__tests__/response-stall.test.ts +49 -49
  26. package/src/__tests__/sim-platform.test.ts +16 -16
  27. package/src/__tests__/startup-lifecycle.test.ts +231 -231
  28. package/src/__tests__/stop-session.test.ts +34 -34
  29. package/src/__tests__/terminal-renderer.test.ts +247 -247
  30. package/src/__tests__/update-command-guard.test.ts +144 -144
  31. package/src/__tests__/web-ui.test.ts +326 -326
  32. package/src/adapters/adapter-interface.ts +18 -18
  33. package/src/adapters/ccc-adapter.ts +131 -131
  34. package/src/adapters/claude-adapter.ts +620 -620
  35. package/src/adapters/codex-adapter.ts +426 -426
  36. package/src/adapters/cursor-adapter.ts +681 -681
  37. package/src/agent-activity.ts +170 -170
  38. package/src/agent-delegate-task.ts +91 -91
  39. package/src/builtin/cli.ts +61 -2
  40. package/src/builtin/config.ts +84 -84
  41. package/src/builtin/context.ts +323 -323
  42. package/src/builtin/file-log.ts +38 -38
  43. package/src/builtin/file-tools.ts +37 -0
  44. package/src/builtin/index.ts +44 -24
  45. package/src/builtin/proc-tree-kill.ts +61 -61
  46. package/src/builtin/progress/cards-helpers.ts +76 -76
  47. package/src/builtin/progress/reducer.ts +108 -108
  48. package/src/builtin/progress/terminal-renderer.ts +294 -294
  49. package/src/builtin/progress/view.ts +77 -77
  50. package/src/builtin/raw-stream-log.ts +124 -124
  51. package/src/builtin/session-select.ts +48 -48
  52. package/src/builtin/skills.ts +190 -108
  53. package/src/builtin/web-tools.ts +313 -0
  54. package/src/card-action-routing.ts +14 -14
  55. package/src/feishu-api.ts +193 -193
  56. package/src/feishu-message-ingress.ts +195 -195
  57. package/src/index.ts +306 -306
  58. package/src/orchestrator.ts +2388 -2388
  59. package/src/platform-adapter.ts +6 -6
  60. package/src/progress/reducer.ts +108 -108
  61. package/src/progress/terminal-renderer.ts +294 -294
  62. package/src/progress/view.ts +77 -77
  63. package/src/response-stall.ts +28 -28
  64. package/src/session-chat-binding.ts +82 -82
  65. package/src/startup-lifecycle.ts +250 -250
  66. package/src/stream-state.ts +18 -18
  67. package/src/update-command-guard.ts +165 -165
@@ -1,144 +1,144 @@
1
- import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
2
- import { mkdir, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";
3
- import { tmpdir } from "node:os";
4
- import { join } from "node:path";
5
-
6
- import {
7
- acquireUpdateCommandGuard,
8
- buildUpdateCommandId,
9
- extractFeishuEventId,
10
- } from "../update-command-guard.ts";
11
-
12
- describe("Feishu update command IDs", () => {
13
- it("extracts and namespaces a card callback event_id", () => {
14
- const eventId = extractFeishuEventId({
15
- schema: "2.0",
16
- header: { event_id: "evt_update_001" },
17
- event: { action: { value: { action: "update" } } },
18
- });
19
-
20
- expect(buildUpdateCommandId("card", eventId)).toBe("card:evt_update_001");
21
- expect(buildUpdateCommandId("message", "om_update_001")).toBe("message:om_update_001");
22
- });
23
- });
24
-
25
- describe("acquireUpdateCommandGuard", () => {
26
- let tempDir: string;
27
- let guardFile: string;
28
-
29
- beforeEach(async () => {
30
- tempDir = await mkdtemp(join(tmpdir(), "chatccc-update-guard-"));
31
- guardFile = join(tempDir, "state", "update-command-guard.json");
32
- });
33
-
34
- afterEach(async () => {
35
- await rm(tempDir, { recursive: true, force: true });
36
- });
37
-
38
- it("persists an accepted update ID before returning", async () => {
39
- const result = acquireUpdateCommandGuard({
40
- filePath: guardFile,
41
- commandId: "message:om_update_001",
42
- now: 1_000,
43
- });
44
-
45
- expect(result).toEqual({ allowed: true, reason: "accepted" });
46
- const saved = JSON.parse(await readFile(guardFile, "utf8"));
47
- expect(saved).toEqual({
48
- version: 1,
49
- processed: [{ id: "message:om_update_001", recordedAt: 1_000 }],
50
- });
51
- });
52
-
53
- it("rejects the same ID after a simulated process restart", () => {
54
- expect(acquireUpdateCommandGuard({
55
- filePath: guardFile,
56
- commandId: "message:om_update_001",
57
- now: 1_000,
58
- }).allowed).toBe(true);
59
-
60
- // 第二次调用不共享任何内存状态,只通过落盘文件模拟新进程重启后的判断。
61
- expect(acquireUpdateCommandGuard({
62
- filePath: guardFile,
63
- commandId: "message:om_update_001",
64
- now: 9_999_999,
65
- })).toEqual({ allowed: false, reason: "duplicate_id" });
66
- });
67
-
68
- it("accepts different IDs immediately without a cooldown", () => {
69
- expect(acquireUpdateCommandGuard({
70
- filePath: guardFile,
71
- commandId: "message:om_update_001",
72
- now: 1_000,
73
- }).allowed).toBe(true);
74
-
75
- expect(acquireUpdateCommandGuard({
76
- filePath: guardFile,
77
- commandId: "message:om_update_002",
78
- now: 1_001,
79
- })).toEqual({ allowed: true, reason: "accepted" });
80
- });
81
-
82
- it("repairs a corrupt state file and warns without creating an update loop", async () => {
83
- await mkdir(join(tempDir, "state"), { recursive: true });
84
- await writeFile(guardFile, "not-json", "utf8");
85
- const warn = vi.fn();
86
-
87
- expect(acquireUpdateCommandGuard({
88
- filePath: guardFile,
89
- commandId: "message:om_update_001",
90
- now: 1_000,
91
- warn,
92
- })).toEqual({ allowed: true, reason: "accepted" });
93
- expect(warn).toHaveBeenCalledOnce();
94
-
95
- // 损坏文件已被有效状态覆盖,因此重启后的重复投递仍会被拦截。
96
- expect(acquireUpdateCommandGuard({
97
- filePath: guardFile,
98
- commandId: "message:om_update_001",
99
- now: 2_000,
100
- warn,
101
- })).toEqual({ allowed: false, reason: "duplicate_id" });
102
- });
103
-
104
- it("fails closed when the accepted ID cannot be persisted", async () => {
105
- const blocker = join(tempDir, "not-a-directory");
106
- await writeFile(blocker, "block", "utf8");
107
- const warn = vi.fn();
108
-
109
- expect(acquireUpdateCommandGuard({
110
- filePath: join(blocker, "update-command-guard.json"),
111
- commandId: "message:om_update_001",
112
- now: 1_000,
113
- warn,
114
- })).toEqual({ allowed: false, reason: "state_write_failed" });
115
- expect(warn).toHaveBeenCalledOnce();
116
- });
117
-
118
- it("allows sources without a stable ID without writing a misleading record", async () => {
119
- expect(acquireUpdateCommandGuard({
120
- filePath: guardFile,
121
- commandId: undefined,
122
- now: 1_000,
123
- })).toEqual({ allowed: true, reason: "missing_id" });
124
- await expect(readFile(guardFile, "utf8")).rejects.toMatchObject({ code: "ENOENT" });
125
- });
126
-
127
- it("keeps only the newest configured number of update IDs", async () => {
128
- for (let i = 0; i < 4; i++) {
129
- expect(acquireUpdateCommandGuard({
130
- filePath: guardFile,
131
- commandId: `message:om_update_${i}`,
132
- now: i,
133
- maxEntries: 3,
134
- }).allowed).toBe(true);
135
- }
136
-
137
- const saved = JSON.parse(await readFile(guardFile, "utf8"));
138
- expect(saved.processed.map((entry: { id: string }) => entry.id)).toEqual([
139
- "message:om_update_1",
140
- "message:om_update_2",
141
- "message:om_update_3",
142
- ]);
143
- });
144
- });
1
+ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
2
+ import { mkdir, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";
3
+ import { tmpdir } from "node:os";
4
+ import { join } from "node:path";
5
+
6
+ import {
7
+ acquireUpdateCommandGuard,
8
+ buildUpdateCommandId,
9
+ extractFeishuEventId,
10
+ } from "../update-command-guard.ts";
11
+
12
+ describe("Feishu update command IDs", () => {
13
+ it("extracts and namespaces a card callback event_id", () => {
14
+ const eventId = extractFeishuEventId({
15
+ schema: "2.0",
16
+ header: { event_id: "evt_update_001" },
17
+ event: { action: { value: { action: "update" } } },
18
+ });
19
+
20
+ expect(buildUpdateCommandId("card", eventId)).toBe("card:evt_update_001");
21
+ expect(buildUpdateCommandId("message", "om_update_001")).toBe("message:om_update_001");
22
+ });
23
+ });
24
+
25
+ describe("acquireUpdateCommandGuard", () => {
26
+ let tempDir: string;
27
+ let guardFile: string;
28
+
29
+ beforeEach(async () => {
30
+ tempDir = await mkdtemp(join(tmpdir(), "chatccc-update-guard-"));
31
+ guardFile = join(tempDir, "state", "update-command-guard.json");
32
+ });
33
+
34
+ afterEach(async () => {
35
+ await rm(tempDir, { recursive: true, force: true });
36
+ });
37
+
38
+ it("persists an accepted update ID before returning", async () => {
39
+ const result = acquireUpdateCommandGuard({
40
+ filePath: guardFile,
41
+ commandId: "message:om_update_001",
42
+ now: 1_000,
43
+ });
44
+
45
+ expect(result).toEqual({ allowed: true, reason: "accepted" });
46
+ const saved = JSON.parse(await readFile(guardFile, "utf8"));
47
+ expect(saved).toEqual({
48
+ version: 1,
49
+ processed: [{ id: "message:om_update_001", recordedAt: 1_000 }],
50
+ });
51
+ });
52
+
53
+ it("rejects the same ID after a simulated process restart", () => {
54
+ expect(acquireUpdateCommandGuard({
55
+ filePath: guardFile,
56
+ commandId: "message:om_update_001",
57
+ now: 1_000,
58
+ }).allowed).toBe(true);
59
+
60
+ // 第二次调用不共享任何内存状态,只通过落盘文件模拟新进程重启后的判断。
61
+ expect(acquireUpdateCommandGuard({
62
+ filePath: guardFile,
63
+ commandId: "message:om_update_001",
64
+ now: 9_999_999,
65
+ })).toEqual({ allowed: false, reason: "duplicate_id" });
66
+ });
67
+
68
+ it("accepts different IDs immediately without a cooldown", () => {
69
+ expect(acquireUpdateCommandGuard({
70
+ filePath: guardFile,
71
+ commandId: "message:om_update_001",
72
+ now: 1_000,
73
+ }).allowed).toBe(true);
74
+
75
+ expect(acquireUpdateCommandGuard({
76
+ filePath: guardFile,
77
+ commandId: "message:om_update_002",
78
+ now: 1_001,
79
+ })).toEqual({ allowed: true, reason: "accepted" });
80
+ });
81
+
82
+ it("repairs a corrupt state file and warns without creating an update loop", async () => {
83
+ await mkdir(join(tempDir, "state"), { recursive: true });
84
+ await writeFile(guardFile, "not-json", "utf8");
85
+ const warn = vi.fn();
86
+
87
+ expect(acquireUpdateCommandGuard({
88
+ filePath: guardFile,
89
+ commandId: "message:om_update_001",
90
+ now: 1_000,
91
+ warn,
92
+ })).toEqual({ allowed: true, reason: "accepted" });
93
+ expect(warn).toHaveBeenCalledOnce();
94
+
95
+ // 损坏文件已被有效状态覆盖,因此重启后的重复投递仍会被拦截。
96
+ expect(acquireUpdateCommandGuard({
97
+ filePath: guardFile,
98
+ commandId: "message:om_update_001",
99
+ now: 2_000,
100
+ warn,
101
+ })).toEqual({ allowed: false, reason: "duplicate_id" });
102
+ });
103
+
104
+ it("fails closed when the accepted ID cannot be persisted", async () => {
105
+ const blocker = join(tempDir, "not-a-directory");
106
+ await writeFile(blocker, "block", "utf8");
107
+ const warn = vi.fn();
108
+
109
+ expect(acquireUpdateCommandGuard({
110
+ filePath: join(blocker, "update-command-guard.json"),
111
+ commandId: "message:om_update_001",
112
+ now: 1_000,
113
+ warn,
114
+ })).toEqual({ allowed: false, reason: "state_write_failed" });
115
+ expect(warn).toHaveBeenCalledOnce();
116
+ });
117
+
118
+ it("allows sources without a stable ID without writing a misleading record", async () => {
119
+ expect(acquireUpdateCommandGuard({
120
+ filePath: guardFile,
121
+ commandId: undefined,
122
+ now: 1_000,
123
+ })).toEqual({ allowed: true, reason: "missing_id" });
124
+ await expect(readFile(guardFile, "utf8")).rejects.toMatchObject({ code: "ENOENT" });
125
+ });
126
+
127
+ it("keeps only the newest configured number of update IDs", async () => {
128
+ for (let i = 0; i < 4; i++) {
129
+ expect(acquireUpdateCommandGuard({
130
+ filePath: guardFile,
131
+ commandId: `message:om_update_${i}`,
132
+ now: i,
133
+ maxEntries: 3,
134
+ }).allowed).toBe(true);
135
+ }
136
+
137
+ const saved = JSON.parse(await readFile(guardFile, "utf8"));
138
+ expect(saved.processed.map((entry: { id: string }) => entry.id)).toEqual([
139
+ "message:om_update_1",
140
+ "message:om_update_2",
141
+ "message:om_update_3",
142
+ ]);
143
+ });
144
+ });