@crewkit/cli 0.1.8 → 0.1.11
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/README.md +72 -50
- package/bin/crewkit +23 -0
- package/lib/getBinary.js +88 -0
- package/package.json +42 -86
- package/scripts/postinstall.js +38 -0
- package/bin/dev.cmd +0 -3
- package/bin/dev.js +0 -5
- package/bin/run.cmd +0 -3
- package/bin/run.js +0 -5
- package/dist/base-command.d.ts +0 -15
- package/dist/base-command.js +0 -1
- package/dist/commands/auth/dev-login.d.ts +0 -7
- package/dist/commands/auth/dev-login.js +0 -1
- package/dist/commands/auth/login.d.ts +0 -6
- package/dist/commands/auth/login.js +0 -1
- package/dist/commands/auth/logout.d.ts +0 -6
- package/dist/commands/auth/logout.js +0 -1
- package/dist/commands/auth/status.d.ts +0 -6
- package/dist/commands/auth/status.js +0 -1
- package/dist/commands/chat.d.ts +0 -19
- package/dist/commands/chat.js +0 -1
- package/dist/commands/code.d.ts +0 -11
- package/dist/commands/code.js +0 -1
- package/dist/commands/feedback.d.ts +0 -17
- package/dist/commands/feedback.js +0 -1
- package/dist/commands/init.d.ts +0 -13
- package/dist/commands/init.js +0 -1
- package/dist/config/api.d.ts +0 -18
- package/dist/config/api.js +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/lib/sentry.d.ts +0 -17
- package/dist/lib/sentry.js +0 -1
- package/dist/services/agent-sync.d.ts +0 -30
- package/dist/services/agent-sync.js +0 -1
- package/dist/services/api-client.d.ts +0 -44
- package/dist/services/api-client.js +0 -1
- package/dist/services/auth-manager.d.ts +0 -41
- package/dist/services/auth-manager.js +0 -1
- package/dist/services/backup.d.ts +0 -20
- package/dist/services/backup.js +0 -1
- package/dist/services/checksum.d.ts +0 -40
- package/dist/services/checksum.js +0 -1
- package/dist/services/git-remote-detector.d.ts +0 -40
- package/dist/services/git-remote-detector.js +0 -1
- package/dist/services/update-checker.d.ts +0 -38
- package/dist/services/update-checker.js +0 -1
- package/dist/types/api.d.ts +0 -74
- package/dist/types/api.js +0 -1
- package/oclif.manifest.json +0 -289
package/oclif.manifest.json
DELETED
|
@@ -1,289 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"commands": {
|
|
3
|
-
"chat": {
|
|
4
|
-
"aliases": [],
|
|
5
|
-
"args": {
|
|
6
|
-
"prompt": {
|
|
7
|
-
"description": "Initial prompt to send to Claude",
|
|
8
|
-
"name": "prompt",
|
|
9
|
-
"required": false
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
"description": "Start an interactive chat session with Claude",
|
|
13
|
-
"examples": [
|
|
14
|
-
"<%= config.bin %> <%= command.id %>",
|
|
15
|
-
"<%= config.bin %> <%= command.id %> \"explain this codebase\"",
|
|
16
|
-
"<%= config.bin %> <%= command.id %> --no-auth"
|
|
17
|
-
],
|
|
18
|
-
"flags": {
|
|
19
|
-
"continue": {
|
|
20
|
-
"char": "c",
|
|
21
|
-
"description": "Continue the most recent conversation",
|
|
22
|
-
"name": "continue",
|
|
23
|
-
"allowNo": false,
|
|
24
|
-
"type": "boolean"
|
|
25
|
-
},
|
|
26
|
-
"model": {
|
|
27
|
-
"char": "m",
|
|
28
|
-
"description": "Model to use (sonnet, opus, haiku)",
|
|
29
|
-
"name": "model",
|
|
30
|
-
"hasDynamicHelp": false,
|
|
31
|
-
"multiple": false,
|
|
32
|
-
"type": "option"
|
|
33
|
-
},
|
|
34
|
-
"no-auth": {
|
|
35
|
-
"description": "Skip authentication and API calls (dev mode)",
|
|
36
|
-
"name": "no-auth",
|
|
37
|
-
"allowNo": false,
|
|
38
|
-
"type": "boolean"
|
|
39
|
-
},
|
|
40
|
-
"print": {
|
|
41
|
-
"char": "p",
|
|
42
|
-
"description": "Print response and exit (non-interactive)",
|
|
43
|
-
"name": "print",
|
|
44
|
-
"allowNo": false,
|
|
45
|
-
"type": "boolean"
|
|
46
|
-
},
|
|
47
|
-
"resume": {
|
|
48
|
-
"char": "r",
|
|
49
|
-
"description": "Resume a specific conversation by session ID",
|
|
50
|
-
"name": "resume",
|
|
51
|
-
"hasDynamicHelp": false,
|
|
52
|
-
"multiple": false,
|
|
53
|
-
"type": "option"
|
|
54
|
-
},
|
|
55
|
-
"system-prompt": {
|
|
56
|
-
"description": "Custom system prompt",
|
|
57
|
-
"name": "system-prompt",
|
|
58
|
-
"hasDynamicHelp": false,
|
|
59
|
-
"multiple": false,
|
|
60
|
-
"type": "option"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
"hasDynamicHelp": false,
|
|
64
|
-
"hiddenAliases": [],
|
|
65
|
-
"id": "chat",
|
|
66
|
-
"pluginAlias": "@crewkit/cli",
|
|
67
|
-
"pluginName": "@crewkit/cli",
|
|
68
|
-
"pluginType": "core",
|
|
69
|
-
"strict": true,
|
|
70
|
-
"isESM": true,
|
|
71
|
-
"relativePath": [
|
|
72
|
-
"dist",
|
|
73
|
-
"commands",
|
|
74
|
-
"chat.js"
|
|
75
|
-
]
|
|
76
|
-
},
|
|
77
|
-
"code": {
|
|
78
|
-
"aliases": [],
|
|
79
|
-
"args": {},
|
|
80
|
-
"description": "Start Claude Code with synced agents",
|
|
81
|
-
"examples": [
|
|
82
|
-
"<%= config.bin %> <%= command.id %>"
|
|
83
|
-
],
|
|
84
|
-
"flags": {
|
|
85
|
-
"no-watch": {
|
|
86
|
-
"description": "Disable file watching for agent modifications",
|
|
87
|
-
"name": "no-watch",
|
|
88
|
-
"allowNo": false,
|
|
89
|
-
"type": "boolean"
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"hasDynamicHelp": false,
|
|
93
|
-
"hiddenAliases": [],
|
|
94
|
-
"id": "code",
|
|
95
|
-
"pluginAlias": "@crewkit/cli",
|
|
96
|
-
"pluginName": "@crewkit/cli",
|
|
97
|
-
"pluginType": "core",
|
|
98
|
-
"strict": true,
|
|
99
|
-
"isESM": true,
|
|
100
|
-
"relativePath": [
|
|
101
|
-
"dist",
|
|
102
|
-
"commands",
|
|
103
|
-
"code.js"
|
|
104
|
-
]
|
|
105
|
-
},
|
|
106
|
-
"feedback": {
|
|
107
|
-
"aliases": [],
|
|
108
|
-
"args": {
|
|
109
|
-
"message": {
|
|
110
|
-
"description": "Feedback message",
|
|
111
|
-
"name": "message",
|
|
112
|
-
"required": false
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"description": "Submit feedback about crewkit CLI",
|
|
116
|
-
"examples": [
|
|
117
|
-
"<%= config.bin %> <%= command.id %> \"The sync is too slow\"",
|
|
118
|
-
"<%= config.bin %> <%= command.id %> # Interactive mode"
|
|
119
|
-
],
|
|
120
|
-
"flags": {
|
|
121
|
-
"email": {
|
|
122
|
-
"char": "e",
|
|
123
|
-
"description": "Your email (optional, for follow-up)",
|
|
124
|
-
"name": "email",
|
|
125
|
-
"hasDynamicHelp": false,
|
|
126
|
-
"multiple": false,
|
|
127
|
-
"type": "option"
|
|
128
|
-
},
|
|
129
|
-
"name": {
|
|
130
|
-
"char": "n",
|
|
131
|
-
"description": "Your name (optional)",
|
|
132
|
-
"name": "name",
|
|
133
|
-
"hasDynamicHelp": false,
|
|
134
|
-
"multiple": false,
|
|
135
|
-
"type": "option"
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
|
-
"hasDynamicHelp": false,
|
|
139
|
-
"hiddenAliases": [],
|
|
140
|
-
"id": "feedback",
|
|
141
|
-
"pluginAlias": "@crewkit/cli",
|
|
142
|
-
"pluginName": "@crewkit/cli",
|
|
143
|
-
"pluginType": "core",
|
|
144
|
-
"strict": true,
|
|
145
|
-
"isESM": true,
|
|
146
|
-
"relativePath": [
|
|
147
|
-
"dist",
|
|
148
|
-
"commands",
|
|
149
|
-
"feedback.js"
|
|
150
|
-
]
|
|
151
|
-
},
|
|
152
|
-
"init": {
|
|
153
|
-
"aliases": [],
|
|
154
|
-
"args": {
|
|
155
|
-
"org": {
|
|
156
|
-
"description": "Organization slug",
|
|
157
|
-
"name": "org",
|
|
158
|
-
"required": false
|
|
159
|
-
},
|
|
160
|
-
"project": {
|
|
161
|
-
"description": "Project slug",
|
|
162
|
-
"name": "project",
|
|
163
|
-
"required": false
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
"description": "Initialize crewkit configuration for a project",
|
|
167
|
-
"examples": [
|
|
168
|
-
"<%= config.bin %> <%= command.id %>",
|
|
169
|
-
"<%= config.bin %> <%= command.id %> acme-corp customer-portal"
|
|
170
|
-
],
|
|
171
|
-
"flags": {
|
|
172
|
-
"force": {
|
|
173
|
-
"char": "f",
|
|
174
|
-
"description": "Overwrite existing configuration",
|
|
175
|
-
"name": "force",
|
|
176
|
-
"allowNo": false,
|
|
177
|
-
"type": "boolean"
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
"hasDynamicHelp": false,
|
|
181
|
-
"hiddenAliases": [],
|
|
182
|
-
"id": "init",
|
|
183
|
-
"pluginAlias": "@crewkit/cli",
|
|
184
|
-
"pluginName": "@crewkit/cli",
|
|
185
|
-
"pluginType": "core",
|
|
186
|
-
"strict": true,
|
|
187
|
-
"isESM": true,
|
|
188
|
-
"relativePath": [
|
|
189
|
-
"dist",
|
|
190
|
-
"commands",
|
|
191
|
-
"init.js"
|
|
192
|
-
]
|
|
193
|
-
},
|
|
194
|
-
"auth:dev-login": {
|
|
195
|
-
"aliases": [],
|
|
196
|
-
"args": {},
|
|
197
|
-
"description": "Quick login for local development (bypasses OAuth)",
|
|
198
|
-
"examples": [
|
|
199
|
-
"<%= config.bin %> <%= command.id %>"
|
|
200
|
-
],
|
|
201
|
-
"flags": {},
|
|
202
|
-
"hasDynamicHelp": false,
|
|
203
|
-
"hidden": true,
|
|
204
|
-
"hiddenAliases": [],
|
|
205
|
-
"id": "auth:dev-login",
|
|
206
|
-
"pluginAlias": "@crewkit/cli",
|
|
207
|
-
"pluginName": "@crewkit/cli",
|
|
208
|
-
"pluginType": "core",
|
|
209
|
-
"strict": true,
|
|
210
|
-
"isESM": true,
|
|
211
|
-
"relativePath": [
|
|
212
|
-
"dist",
|
|
213
|
-
"commands",
|
|
214
|
-
"auth",
|
|
215
|
-
"dev-login.js"
|
|
216
|
-
]
|
|
217
|
-
},
|
|
218
|
-
"auth:login": {
|
|
219
|
-
"aliases": [],
|
|
220
|
-
"args": {},
|
|
221
|
-
"description": "Authenticate with crewkit.io",
|
|
222
|
-
"examples": [
|
|
223
|
-
"<%= config.bin %> <%= command.id %>"
|
|
224
|
-
],
|
|
225
|
-
"flags": {},
|
|
226
|
-
"hasDynamicHelp": false,
|
|
227
|
-
"hiddenAliases": [],
|
|
228
|
-
"id": "auth:login",
|
|
229
|
-
"pluginAlias": "@crewkit/cli",
|
|
230
|
-
"pluginName": "@crewkit/cli",
|
|
231
|
-
"pluginType": "core",
|
|
232
|
-
"strict": true,
|
|
233
|
-
"isESM": true,
|
|
234
|
-
"relativePath": [
|
|
235
|
-
"dist",
|
|
236
|
-
"commands",
|
|
237
|
-
"auth",
|
|
238
|
-
"login.js"
|
|
239
|
-
]
|
|
240
|
-
},
|
|
241
|
-
"auth:logout": {
|
|
242
|
-
"aliases": [],
|
|
243
|
-
"args": {},
|
|
244
|
-
"description": "Clear authentication credentials",
|
|
245
|
-
"examples": [
|
|
246
|
-
"<%= config.bin %> <%= command.id %>"
|
|
247
|
-
],
|
|
248
|
-
"flags": {},
|
|
249
|
-
"hasDynamicHelp": false,
|
|
250
|
-
"hiddenAliases": [],
|
|
251
|
-
"id": "auth:logout",
|
|
252
|
-
"pluginAlias": "@crewkit/cli",
|
|
253
|
-
"pluginName": "@crewkit/cli",
|
|
254
|
-
"pluginType": "core",
|
|
255
|
-
"strict": true,
|
|
256
|
-
"isESM": true,
|
|
257
|
-
"relativePath": [
|
|
258
|
-
"dist",
|
|
259
|
-
"commands",
|
|
260
|
-
"auth",
|
|
261
|
-
"logout.js"
|
|
262
|
-
]
|
|
263
|
-
},
|
|
264
|
-
"auth:status": {
|
|
265
|
-
"aliases": [],
|
|
266
|
-
"args": {},
|
|
267
|
-
"description": "Show current authentication status",
|
|
268
|
-
"examples": [
|
|
269
|
-
"<%= config.bin %> <%= command.id %>"
|
|
270
|
-
],
|
|
271
|
-
"flags": {},
|
|
272
|
-
"hasDynamicHelp": false,
|
|
273
|
-
"hiddenAliases": [],
|
|
274
|
-
"id": "auth:status",
|
|
275
|
-
"pluginAlias": "@crewkit/cli",
|
|
276
|
-
"pluginName": "@crewkit/cli",
|
|
277
|
-
"pluginType": "core",
|
|
278
|
-
"strict": true,
|
|
279
|
-
"isESM": true,
|
|
280
|
-
"relativePath": [
|
|
281
|
-
"dist",
|
|
282
|
-
"commands",
|
|
283
|
-
"auth",
|
|
284
|
-
"status.js"
|
|
285
|
-
]
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
"version": "0.1.8"
|
|
289
|
-
}
|