@defai.digital/ax-cli 3.6.0 → 3.6.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/.ax-cli/checkpoints/2025-11-20/checkpoint-11e9e0ba-c39d-4fd2-aa77-bc818811c921.json +69 -0
- package/.ax-cli/checkpoints/2025-11-20/checkpoint-2b260b98-b418-4c7c-9694-e2b94967e662.json +24 -0
- package/.ax-cli/checkpoints/2025-11-20/checkpoint-7e03601e-e8ab-4cd7-9841-a74b66adf78f.json +69 -0
- package/.ax-cli/checkpoints/2025-11-20/checkpoint-7f9c6562-771f-4fd0-adcf-9e7e9ac34ae8.json +44 -0
- package/.ax-cli/checkpoints/2025-11-20/checkpoint-e1ebe666-4c3a-4367-ba5c-27fe512a9c70.json +24 -0
- package/.ax-cli/checkpoints/2025-11-21/checkpoint-15743e7d-430c-4d76-b6fc-955d7a5c250c.json +44 -0
- package/.ax-cli/checkpoints/2025-11-21/checkpoint-25cf7679-0b3f-4988-83d7-704548fbba91.json +69 -0
- package/.ax-cli/checkpoints/2025-11-21/checkpoint-54aedbac-6db0-464e-8ebb-dbb3979e6dca.json +24 -0
- package/.ax-cli/checkpoints/2025-11-21/checkpoint-7658aed8-fe5d-4222-903f-1a7c63717ea7.json +24 -0
- package/.ax-cli/checkpoints/2025-11-21/checkpoint-c9c13497-40dc-4294-a327-6a5fc854eaa1.json +69 -0
- package/.ax-cli/memory.json +8 -1
- package/README.md +423 -89
- package/ax.config.json +333 -0
- package/dist/analyzers/code-smells/detectors/data-clumps-detector.js +7 -9
- package/dist/analyzers/code-smells/detectors/data-clumps-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/dead-code-detector.js +1 -1
- package/dist/analyzers/code-smells/detectors/dead-code-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/duplicate-code-detector.js +22 -10
- package/dist/analyzers/code-smells/detectors/duplicate-code-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/feature-envy-detector.js +1 -1
- package/dist/analyzers/code-smells/detectors/feature-envy-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/inappropriate-intimacy-detector.js +1 -1
- package/dist/analyzers/code-smells/detectors/inappropriate-intimacy-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/large-class-detector.js +4 -1
- package/dist/analyzers/code-smells/detectors/large-class-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/long-method-detector.js +4 -1
- package/dist/analyzers/code-smells/detectors/long-method-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/long-parameter-list-detector.js +4 -1
- package/dist/analyzers/code-smells/detectors/long-parameter-list-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/magic-numbers-detector.js +4 -5
- package/dist/analyzers/code-smells/detectors/magic-numbers-detector.js.map +1 -1
- package/dist/analyzers/code-smells/detectors/nested-conditionals-detector.js +4 -1
- package/dist/analyzers/code-smells/detectors/nested-conditionals-detector.js.map +1 -1
- package/dist/hooks/use-chat-reducer.d.ts +61 -0
- package/dist/hooks/use-chat-reducer.js +118 -0
- package/dist/hooks/use-chat-reducer.js.map +1 -0
- package/dist/hooks/use-enhanced-input.d.ts +40 -0
- package/dist/hooks/use-enhanced-input.js +249 -0
- package/dist/hooks/use-enhanced-input.js.map +1 -0
- package/dist/hooks/use-input-handler.d.ts +46 -0
- package/dist/hooks/use-input-handler.js +1430 -0
- package/dist/hooks/use-input-handler.js.map +1 -0
- package/dist/hooks/use-input-history.d.ts +9 -0
- package/dist/hooks/use-input-history.js +112 -0
- package/dist/hooks/use-input-history.js.map +1 -0
- package/dist/index.js +0 -0
- package/dist/index.js.bak +664 -0
- package/dist/schemas/settings-schemas.d.ts +23 -0
- package/dist/schemas/settings-schemas.js +17 -0
- package/dist/schemas/settings-schemas.js.map +1 -1
- package/dist/tools/web-search/index.d.ts +0 -2
- package/dist/tools/web-search/index.js +0 -2
- package/dist/tools/web-search/index.js.map +1 -1
- package/dist/tools/web-search/router.d.ts +0 -2
- package/dist/tools/web-search/router.js +2 -37
- package/dist/tools/web-search/router.js.map +1 -1
- package/dist/tools/web-search/web-search-tool.js +2 -12
- package/dist/tools/web-search/web-search-tool.js.map +1 -1
- package/dist/ui/components/chat-input.d.ts +4 -1
- package/dist/ui/components/chat-input.js +133 -52
- package/dist/ui/components/chat-input.js.map +1 -1
- package/dist/ui/components/chat-interface.js +2 -2
- package/dist/ui/components/chat-interface.js.map +1 -1
- package/dist/ui/components/keyboard-hints.js +2 -0
- package/dist/ui/components/keyboard-hints.js.map +1 -1
- package/dist/ui/components/status-bar.js +1 -11
- package/dist/ui/components/status-bar.js.map +1 -1
- package/dist/ui/components/welcome-panel.js +4 -0
- package/dist/ui/components/welcome-panel.js.map +1 -1
- package/dist/ui/hooks/use-enhanced-input.d.ts +4 -0
- package/dist/ui/hooks/use-enhanced-input.js +119 -9
- package/dist/ui/hooks/use-enhanced-input.js.map +1 -1
- package/dist/ui/hooks/use-input-handler.d.ts +2 -0
- package/dist/ui/hooks/use-input-handler.js +15 -3
- package/dist/ui/hooks/use-input-handler.js.map +1 -1
- package/dist/utils/audit-logger.d.ts +28 -70
- package/dist/utils/audit-logger.js +30 -135
- package/dist/utils/audit-logger.js.map +1 -1
- package/dist/utils/paste-collapse.d.ts +46 -0
- package/dist/utils/paste-collapse.js +77 -0
- package/dist/utils/paste-collapse.js.map +1 -0
- package/dist/utils/paste-utils.d.ts +99 -0
- package/dist/utils/paste-utils.js +239 -0
- package/dist/utils/paste-utils.js.map +1 -0
- package/dist/utils/rate-limiter.d.ts +15 -1
- package/dist/utils/rate-limiter.js +15 -1
- package/dist/utils/rate-limiter.js.map +1 -1
- package/package.json +3 -7
- package/packages/schemas/dist/index.d.ts +14 -0
- package/packages/schemas/dist/index.d.ts.map +1 -0
- package/packages/schemas/dist/index.js +19 -0
- package/packages/schemas/dist/index.js.map +1 -0
- package/packages/schemas/dist/public/core/brand-types.d.ts +308 -0
- package/packages/schemas/dist/public/core/brand-types.d.ts.map +1 -0
- package/packages/schemas/dist/public/core/brand-types.js +243 -0
- package/packages/schemas/dist/public/core/brand-types.js.map +1 -0
- package/packages/schemas/dist/public/core/enums.d.ts +227 -0
- package/packages/schemas/dist/public/core/enums.d.ts.map +1 -0
- package/packages/schemas/dist/public/core/enums.js +222 -0
- package/packages/schemas/dist/public/core/enums.js.map +1 -0
- package/packages/schemas/dist/public/core/id-types.d.ts +286 -0
- package/packages/schemas/dist/public/core/id-types.d.ts.map +1 -0
- package/packages/schemas/dist/public/core/id-types.js +136 -0
- package/packages/schemas/dist/public/core/id-types.js.map +1 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "11e9e0ba-c39d-4fd2-aa77-bc818811c921",
|
|
3
|
+
"timestamp": "2025-11-21T03:58:12.786Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763697492786.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Message 40",
|
|
17
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "user",
|
|
21
|
+
"content": "Message 41",
|
|
22
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "user",
|
|
26
|
+
"content": "Message 42",
|
|
27
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "user",
|
|
31
|
+
"content": "Message 43",
|
|
32
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "user",
|
|
36
|
+
"content": "Message 44",
|
|
37
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "user",
|
|
41
|
+
"content": "Message 45",
|
|
42
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "user",
|
|
46
|
+
"content": "Message 46",
|
|
47
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"type": "user",
|
|
51
|
+
"content": "Message 47",
|
|
52
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "user",
|
|
56
|
+
"content": "Message 48",
|
|
57
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "user",
|
|
61
|
+
"content": "Message 49",
|
|
62
|
+
"timestamp": "2025-11-21T03:58:12.786Z"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"metadata": {
|
|
66
|
+
"model": "glm-4.6",
|
|
67
|
+
"triggeredBy": "test"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "2b260b98-b418-4c7c-9694-e2b94967e662",
|
|
3
|
+
"timestamp": "2025-11-21T03:58:12.781Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763697492781.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Test message",
|
|
17
|
+
"timestamp": "2025-11-21T03:58:12.781Z"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"metadata": {
|
|
21
|
+
"model": "glm-4.6",
|
|
22
|
+
"triggeredBy": "test"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "7e03601e-e8ab-4cd7-9841-a74b66adf78f",
|
|
3
|
+
"timestamp": "2025-11-21T03:58:12.790Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763697492790.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Message 10",
|
|
17
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "user",
|
|
21
|
+
"content": "Message 11",
|
|
22
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "user",
|
|
26
|
+
"content": "Message 12",
|
|
27
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "user",
|
|
31
|
+
"content": "Message 13",
|
|
32
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "user",
|
|
36
|
+
"content": "Message 14",
|
|
37
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "user",
|
|
41
|
+
"content": "Message 15",
|
|
42
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "user",
|
|
46
|
+
"content": "Message 16",
|
|
47
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"type": "user",
|
|
51
|
+
"content": "Message 17",
|
|
52
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "user",
|
|
56
|
+
"content": "Message 18",
|
|
57
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "user",
|
|
61
|
+
"content": "Message 19",
|
|
62
|
+
"timestamp": "2025-11-21T03:58:12.790Z"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"metadata": {
|
|
66
|
+
"model": "glm-4.6",
|
|
67
|
+
"triggeredBy": "test"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "7f9c6562-771f-4fd0-adcf-9e7e9ac34ae8",
|
|
3
|
+
"timestamp": "2025-11-21T03:58:12.795Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763697492795.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Message 0",
|
|
17
|
+
"timestamp": "2025-11-21T03:58:12.795Z"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "user",
|
|
21
|
+
"content": "Message 1",
|
|
22
|
+
"timestamp": "2025-11-21T03:58:12.795Z"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "user",
|
|
26
|
+
"content": "Message 2",
|
|
27
|
+
"timestamp": "2025-11-21T03:58:12.795Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "user",
|
|
31
|
+
"content": "Message 3",
|
|
32
|
+
"timestamp": "2025-11-21T03:58:12.795Z"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "user",
|
|
36
|
+
"content": "Message 4",
|
|
37
|
+
"timestamp": "2025-11-21T03:58:12.795Z"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"metadata": {
|
|
41
|
+
"model": "glm-4.6",
|
|
42
|
+
"triggeredBy": "test"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "e1ebe666-4c3a-4367-ba5c-27fe512a9c70",
|
|
3
|
+
"timestamp": "2025-11-21T03:58:12.783Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763697492783.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Test message",
|
|
17
|
+
"timestamp": "2025-11-21T03:58:12.783Z"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"metadata": {
|
|
21
|
+
"model": "glm-4.6",
|
|
22
|
+
"triggeredBy": "test"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "15743e7d-430c-4d76-b6fc-955d7a5c250c",
|
|
3
|
+
"timestamp": "2025-11-21T04:38:27.918Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763699907918.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Message 0",
|
|
17
|
+
"timestamp": "2025-11-21T04:38:27.918Z"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "user",
|
|
21
|
+
"content": "Message 1",
|
|
22
|
+
"timestamp": "2025-11-21T04:38:27.918Z"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "user",
|
|
26
|
+
"content": "Message 2",
|
|
27
|
+
"timestamp": "2025-11-21T04:38:27.918Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "user",
|
|
31
|
+
"content": "Message 3",
|
|
32
|
+
"timestamp": "2025-11-21T04:38:27.918Z"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "user",
|
|
36
|
+
"content": "Message 4",
|
|
37
|
+
"timestamp": "2025-11-21T04:38:27.918Z"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"metadata": {
|
|
41
|
+
"model": "glm-4.6",
|
|
42
|
+
"triggeredBy": "test"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "25cf7679-0b3f-4988-83d7-704548fbba91",
|
|
3
|
+
"timestamp": "2025-11-21T04:38:27.917Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763699907917.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Message 10",
|
|
17
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "user",
|
|
21
|
+
"content": "Message 11",
|
|
22
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "user",
|
|
26
|
+
"content": "Message 12",
|
|
27
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "user",
|
|
31
|
+
"content": "Message 13",
|
|
32
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "user",
|
|
36
|
+
"content": "Message 14",
|
|
37
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "user",
|
|
41
|
+
"content": "Message 15",
|
|
42
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "user",
|
|
46
|
+
"content": "Message 16",
|
|
47
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"type": "user",
|
|
51
|
+
"content": "Message 17",
|
|
52
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "user",
|
|
56
|
+
"content": "Message 18",
|
|
57
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "user",
|
|
61
|
+
"content": "Message 19",
|
|
62
|
+
"timestamp": "2025-11-21T04:38:27.917Z"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"metadata": {
|
|
66
|
+
"model": "glm-4.6",
|
|
67
|
+
"triggeredBy": "test"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "54aedbac-6db0-464e-8ebb-dbb3979e6dca",
|
|
3
|
+
"timestamp": "2025-11-21T04:38:27.914Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763699907914.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Test message",
|
|
17
|
+
"timestamp": "2025-11-21T04:38:27.914Z"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"metadata": {
|
|
21
|
+
"model": "glm-4.6",
|
|
22
|
+
"triggeredBy": "test"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "7658aed8-fe5d-4222-903f-1a7c63717ea7",
|
|
3
|
+
"timestamp": "2025-11-21T04:38:27.913Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763699907913.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Test message",
|
|
17
|
+
"timestamp": "2025-11-21T04:38:27.913Z"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"metadata": {
|
|
21
|
+
"model": "glm-4.6",
|
|
22
|
+
"triggeredBy": "test"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "c9c13497-40dc-4294-a327-6a5fc854eaa1",
|
|
3
|
+
"timestamp": "2025-11-21T04:38:27.915Z",
|
|
4
|
+
"description": "Test checkpoint",
|
|
5
|
+
"files": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/test/file-1763699907915.ts",
|
|
8
|
+
"content": "test content",
|
|
9
|
+
"hash": "6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72",
|
|
10
|
+
"size": 12
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"conversationState": [
|
|
14
|
+
{
|
|
15
|
+
"type": "user",
|
|
16
|
+
"content": "Message 40",
|
|
17
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "user",
|
|
21
|
+
"content": "Message 41",
|
|
22
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "user",
|
|
26
|
+
"content": "Message 42",
|
|
27
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "user",
|
|
31
|
+
"content": "Message 43",
|
|
32
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "user",
|
|
36
|
+
"content": "Message 44",
|
|
37
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "user",
|
|
41
|
+
"content": "Message 45",
|
|
42
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "user",
|
|
46
|
+
"content": "Message 46",
|
|
47
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"type": "user",
|
|
51
|
+
"content": "Message 47",
|
|
52
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "user",
|
|
56
|
+
"content": "Message 48",
|
|
57
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "user",
|
|
61
|
+
"content": "Message 49",
|
|
62
|
+
"timestamp": "2025-11-21T04:38:27.915Z"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"metadata": {
|
|
66
|
+
"model": "glm-4.6",
|
|
67
|
+
"triggeredBy": "test"
|
|
68
|
+
}
|
|
69
|
+
}
|
package/.ax-cli/memory.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
3
|
"created_at": "2025-11-22T11:59:21.278Z",
|
|
4
|
-
"updated_at": "2025-11-
|
|
4
|
+
"updated_at": "2025-11-22T13:09:05.236Z",
|
|
5
5
|
"project_root": "/Users/akiralam/code/ax-cli",
|
|
6
6
|
"content_hash": "sha256:213c195995de78eced482260119b8ac69826a6a26f7bffe20ab0e3874b4f0f9f",
|
|
7
7
|
"source": {
|
|
@@ -51,5 +51,12 @@
|
|
|
51
51
|
"config": 838,
|
|
52
52
|
"patterns": 99
|
|
53
53
|
}
|
|
54
|
+
},
|
|
55
|
+
"stats": {
|
|
56
|
+
"last_cached_tokens": 43,
|
|
57
|
+
"last_prompt_tokens": 13864,
|
|
58
|
+
"total_tokens_saved": 84815,
|
|
59
|
+
"usage_count": 9,
|
|
60
|
+
"last_used_at": "2025-11-22T13:09:05.236Z"
|
|
54
61
|
}
|
|
55
62
|
}
|