@anthropic-ai/claude-code 0.2.99 → 0.2.101
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/cli.js +1007 -886
- package/migrations/0003_dusty_ezekiel_stane.sql +5 -0
- package/migrations/meta/0003_snapshot.json +283 -0
- package/migrations/meta/_journal.json +7 -0
- package/package.json +1 -1
- package/vendor/claude-code-jetbrains-plugin/lib/claude-code-jetbrains-plugin-0.0.5-alpha-searchableOptions.jar +0 -0
- package/vendor/claude-code-jetbrains-plugin/lib/claude-code-jetbrains-plugin-0.0.5-alpha.jar +0 -0
- package/vendor/claude-code.vsix +0 -0
- package/vendor/ripgrep/arm64-darwin/ripgrep.node +0 -0
- package/vendor/ripgrep/arm64-linux/ripgrep.node +0 -0
- package/vendor/ripgrep/x64-darwin/ripgrep.node +0 -0
- package/vendor/ripgrep/x64-linux/ripgrep.node +0 -0
- package/vendor/ripgrep/x64-win32/ripgrep.node +0 -0
- package/vendor/claude-code-jetbrains-plugin/lib/claude-code-jetbrains-plugin-0.0.3-alpha-searchableOptions.jar +0 -0
- package/vendor/claude-code-jetbrains-plugin/lib/claude-code-jetbrains-plugin-0.0.3-alpha.jar +0 -0
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "6",
|
|
3
|
+
"dialect": "sqlite",
|
|
4
|
+
"id": "03027fd0-9366-48ef-984a-3f7c23f82672",
|
|
5
|
+
"prevId": "df604d74-8d21-4860-aa04-e09a621590f3",
|
|
6
|
+
"tables": {
|
|
7
|
+
"assistant_messages": {
|
|
8
|
+
"name": "assistant_messages",
|
|
9
|
+
"columns": {
|
|
10
|
+
"uuid": {
|
|
11
|
+
"name": "uuid",
|
|
12
|
+
"type": "text",
|
|
13
|
+
"primaryKey": true,
|
|
14
|
+
"notNull": true,
|
|
15
|
+
"autoincrement": false
|
|
16
|
+
},
|
|
17
|
+
"cost_usd": {
|
|
18
|
+
"name": "cost_usd",
|
|
19
|
+
"type": "real",
|
|
20
|
+
"primaryKey": false,
|
|
21
|
+
"notNull": true,
|
|
22
|
+
"autoincrement": false
|
|
23
|
+
},
|
|
24
|
+
"duration_ms": {
|
|
25
|
+
"name": "duration_ms",
|
|
26
|
+
"type": "integer",
|
|
27
|
+
"primaryKey": false,
|
|
28
|
+
"notNull": true,
|
|
29
|
+
"autoincrement": false
|
|
30
|
+
},
|
|
31
|
+
"message": {
|
|
32
|
+
"name": "message",
|
|
33
|
+
"type": "text",
|
|
34
|
+
"primaryKey": false,
|
|
35
|
+
"notNull": true,
|
|
36
|
+
"autoincrement": false
|
|
37
|
+
},
|
|
38
|
+
"is_api_error_message": {
|
|
39
|
+
"name": "is_api_error_message",
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"primaryKey": false,
|
|
42
|
+
"notNull": true,
|
|
43
|
+
"autoincrement": false,
|
|
44
|
+
"default": false
|
|
45
|
+
},
|
|
46
|
+
"timestamp": {
|
|
47
|
+
"name": "timestamp",
|
|
48
|
+
"type": "integer",
|
|
49
|
+
"primaryKey": false,
|
|
50
|
+
"notNull": true,
|
|
51
|
+
"autoincrement": false
|
|
52
|
+
},
|
|
53
|
+
"model": {
|
|
54
|
+
"name": "model",
|
|
55
|
+
"type": "text",
|
|
56
|
+
"primaryKey": false,
|
|
57
|
+
"notNull": true,
|
|
58
|
+
"autoincrement": false
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"indexes": {},
|
|
62
|
+
"foreignKeys": {
|
|
63
|
+
"assistant_messages_uuid_base_messages_uuid_fk": {
|
|
64
|
+
"name": "assistant_messages_uuid_base_messages_uuid_fk",
|
|
65
|
+
"tableFrom": "assistant_messages",
|
|
66
|
+
"tableTo": "base_messages",
|
|
67
|
+
"columnsFrom": [
|
|
68
|
+
"uuid"
|
|
69
|
+
],
|
|
70
|
+
"columnsTo": [
|
|
71
|
+
"uuid"
|
|
72
|
+
],
|
|
73
|
+
"onDelete": "no action",
|
|
74
|
+
"onUpdate": "no action"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"compositePrimaryKeys": {},
|
|
78
|
+
"uniqueConstraints": {},
|
|
79
|
+
"checkConstraints": {}
|
|
80
|
+
},
|
|
81
|
+
"base_messages": {
|
|
82
|
+
"name": "base_messages",
|
|
83
|
+
"columns": {
|
|
84
|
+
"uuid": {
|
|
85
|
+
"name": "uuid",
|
|
86
|
+
"type": "text",
|
|
87
|
+
"primaryKey": true,
|
|
88
|
+
"notNull": true,
|
|
89
|
+
"autoincrement": false
|
|
90
|
+
},
|
|
91
|
+
"parent_uuid": {
|
|
92
|
+
"name": "parent_uuid",
|
|
93
|
+
"type": "text",
|
|
94
|
+
"primaryKey": false,
|
|
95
|
+
"notNull": false,
|
|
96
|
+
"autoincrement": false
|
|
97
|
+
},
|
|
98
|
+
"session_id": {
|
|
99
|
+
"name": "session_id",
|
|
100
|
+
"type": "text",
|
|
101
|
+
"primaryKey": false,
|
|
102
|
+
"notNull": true,
|
|
103
|
+
"autoincrement": false
|
|
104
|
+
},
|
|
105
|
+
"timestamp": {
|
|
106
|
+
"name": "timestamp",
|
|
107
|
+
"type": "integer",
|
|
108
|
+
"primaryKey": false,
|
|
109
|
+
"notNull": true,
|
|
110
|
+
"autoincrement": false
|
|
111
|
+
},
|
|
112
|
+
"message_type": {
|
|
113
|
+
"name": "message_type",
|
|
114
|
+
"type": "text",
|
|
115
|
+
"primaryKey": false,
|
|
116
|
+
"notNull": true,
|
|
117
|
+
"autoincrement": false
|
|
118
|
+
},
|
|
119
|
+
"cwd": {
|
|
120
|
+
"name": "cwd",
|
|
121
|
+
"type": "text",
|
|
122
|
+
"primaryKey": false,
|
|
123
|
+
"notNull": true,
|
|
124
|
+
"autoincrement": false
|
|
125
|
+
},
|
|
126
|
+
"original_cwd": {
|
|
127
|
+
"name": "original_cwd",
|
|
128
|
+
"type": "text",
|
|
129
|
+
"primaryKey": false,
|
|
130
|
+
"notNull": true,
|
|
131
|
+
"autoincrement": false
|
|
132
|
+
},
|
|
133
|
+
"user_type": {
|
|
134
|
+
"name": "user_type",
|
|
135
|
+
"type": "text",
|
|
136
|
+
"primaryKey": false,
|
|
137
|
+
"notNull": true,
|
|
138
|
+
"autoincrement": false
|
|
139
|
+
},
|
|
140
|
+
"version": {
|
|
141
|
+
"name": "version",
|
|
142
|
+
"type": "text",
|
|
143
|
+
"primaryKey": false,
|
|
144
|
+
"notNull": true,
|
|
145
|
+
"autoincrement": false
|
|
146
|
+
},
|
|
147
|
+
"isSidechain": {
|
|
148
|
+
"name": "isSidechain",
|
|
149
|
+
"type": "integer",
|
|
150
|
+
"primaryKey": false,
|
|
151
|
+
"notNull": true,
|
|
152
|
+
"autoincrement": false
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"indexes": {},
|
|
156
|
+
"foreignKeys": {
|
|
157
|
+
"base_messages_parent_uuid_base_messages_uuid_fk": {
|
|
158
|
+
"name": "base_messages_parent_uuid_base_messages_uuid_fk",
|
|
159
|
+
"tableFrom": "base_messages",
|
|
160
|
+
"tableTo": "base_messages",
|
|
161
|
+
"columnsFrom": [
|
|
162
|
+
"parent_uuid"
|
|
163
|
+
],
|
|
164
|
+
"columnsTo": [
|
|
165
|
+
"uuid"
|
|
166
|
+
],
|
|
167
|
+
"onDelete": "no action",
|
|
168
|
+
"onUpdate": "no action"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"compositePrimaryKeys": {},
|
|
172
|
+
"uniqueConstraints": {},
|
|
173
|
+
"checkConstraints": {}
|
|
174
|
+
},
|
|
175
|
+
"conversation_summaries": {
|
|
176
|
+
"name": "conversation_summaries",
|
|
177
|
+
"columns": {
|
|
178
|
+
"leaf_uuid": {
|
|
179
|
+
"name": "leaf_uuid",
|
|
180
|
+
"type": "text",
|
|
181
|
+
"primaryKey": true,
|
|
182
|
+
"notNull": true,
|
|
183
|
+
"autoincrement": false
|
|
184
|
+
},
|
|
185
|
+
"summary": {
|
|
186
|
+
"name": "summary",
|
|
187
|
+
"type": "text",
|
|
188
|
+
"primaryKey": false,
|
|
189
|
+
"notNull": true,
|
|
190
|
+
"autoincrement": false
|
|
191
|
+
},
|
|
192
|
+
"updated_at": {
|
|
193
|
+
"name": "updated_at",
|
|
194
|
+
"type": "integer",
|
|
195
|
+
"primaryKey": false,
|
|
196
|
+
"notNull": true,
|
|
197
|
+
"autoincrement": false
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"indexes": {},
|
|
201
|
+
"foreignKeys": {
|
|
202
|
+
"conversation_summaries_leaf_uuid_base_messages_uuid_fk": {
|
|
203
|
+
"name": "conversation_summaries_leaf_uuid_base_messages_uuid_fk",
|
|
204
|
+
"tableFrom": "conversation_summaries",
|
|
205
|
+
"tableTo": "base_messages",
|
|
206
|
+
"columnsFrom": [
|
|
207
|
+
"leaf_uuid"
|
|
208
|
+
],
|
|
209
|
+
"columnsTo": [
|
|
210
|
+
"uuid"
|
|
211
|
+
],
|
|
212
|
+
"onDelete": "no action",
|
|
213
|
+
"onUpdate": "no action"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"compositePrimaryKeys": {},
|
|
217
|
+
"uniqueConstraints": {},
|
|
218
|
+
"checkConstraints": {}
|
|
219
|
+
},
|
|
220
|
+
"user_messages": {
|
|
221
|
+
"name": "user_messages",
|
|
222
|
+
"columns": {
|
|
223
|
+
"uuid": {
|
|
224
|
+
"name": "uuid",
|
|
225
|
+
"type": "text",
|
|
226
|
+
"primaryKey": true,
|
|
227
|
+
"notNull": true,
|
|
228
|
+
"autoincrement": false
|
|
229
|
+
},
|
|
230
|
+
"message": {
|
|
231
|
+
"name": "message",
|
|
232
|
+
"type": "text",
|
|
233
|
+
"primaryKey": false,
|
|
234
|
+
"notNull": true,
|
|
235
|
+
"autoincrement": false
|
|
236
|
+
},
|
|
237
|
+
"tool_use_result": {
|
|
238
|
+
"name": "tool_use_result",
|
|
239
|
+
"type": "text",
|
|
240
|
+
"primaryKey": false,
|
|
241
|
+
"notNull": false,
|
|
242
|
+
"autoincrement": false
|
|
243
|
+
},
|
|
244
|
+
"timestamp": {
|
|
245
|
+
"name": "timestamp",
|
|
246
|
+
"type": "integer",
|
|
247
|
+
"primaryKey": false,
|
|
248
|
+
"notNull": true,
|
|
249
|
+
"autoincrement": false
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"indexes": {},
|
|
253
|
+
"foreignKeys": {
|
|
254
|
+
"user_messages_uuid_base_messages_uuid_fk": {
|
|
255
|
+
"name": "user_messages_uuid_base_messages_uuid_fk",
|
|
256
|
+
"tableFrom": "user_messages",
|
|
257
|
+
"tableTo": "base_messages",
|
|
258
|
+
"columnsFrom": [
|
|
259
|
+
"uuid"
|
|
260
|
+
],
|
|
261
|
+
"columnsTo": [
|
|
262
|
+
"uuid"
|
|
263
|
+
],
|
|
264
|
+
"onDelete": "no action",
|
|
265
|
+
"onUpdate": "no action"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"compositePrimaryKeys": {},
|
|
269
|
+
"uniqueConstraints": {},
|
|
270
|
+
"checkConstraints": {}
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
"views": {},
|
|
274
|
+
"enums": {},
|
|
275
|
+
"_meta": {
|
|
276
|
+
"schemas": {},
|
|
277
|
+
"tables": {},
|
|
278
|
+
"columns": {}
|
|
279
|
+
},
|
|
280
|
+
"internal": {
|
|
281
|
+
"indexes": {}
|
|
282
|
+
}
|
|
283
|
+
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/vendor/claude-code.vsix
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|