@dzhechkov/harness-cli 0.8.22 → 0.8.24
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/.dz-manifest.json +16 -16
- package/README.md +591 -138
- package/dist/boolean-flags.d.ts.map +1 -1
- package/dist/boolean-flags.js +4 -0
- package/dist/boolean-flags.js.map +1 -1
- package/dist/cli.d.ts +96 -2
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +1975 -332
- package/dist/cli.js.map +1 -1
- package/dist/known-flags.d.ts.map +1 -1
- package/dist/known-flags.js +22 -0
- package/dist/known-flags.js.map +1 -1
- package/package.json +28 -28
- package/sbom.json +15 -15
- package/src/boolean-flags.ts +4 -0
- package/src/cli.ts +2102 -366
- package/src/known-flags.ts +22 -0
package/src/known-flags.ts
CHANGED
|
@@ -15,7 +15,9 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
15
15
|
'allow-cold-start',
|
|
16
16
|
'allow-integrations',
|
|
17
17
|
'allow-same-family',
|
|
18
|
+
'allow-sibling-drift',
|
|
18
19
|
'allow-same-family-qe',
|
|
20
|
+
'agents',
|
|
19
21
|
'any',
|
|
20
22
|
'append',
|
|
21
23
|
'apply',
|
|
@@ -36,6 +38,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
36
38
|
'body',
|
|
37
39
|
'book',
|
|
38
40
|
'books',
|
|
41
|
+
'brief',
|
|
39
42
|
'bto',
|
|
40
43
|
'budget',
|
|
41
44
|
'budget-extra',
|
|
@@ -65,8 +68,10 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
65
68
|
'confirm',
|
|
66
69
|
'confirmed',
|
|
67
70
|
'context-only',
|
|
71
|
+
'coder',
|
|
68
72
|
'corroborate',
|
|
69
73
|
'count-project',
|
|
74
|
+
'dangerously-bypass-approvals-and-sandbox',
|
|
70
75
|
'day',
|
|
71
76
|
'deep',
|
|
72
77
|
'default-family',
|
|
@@ -123,6 +128,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
123
128
|
'html',
|
|
124
129
|
'id',
|
|
125
130
|
'include-domain',
|
|
131
|
+
'include-drifted',
|
|
126
132
|
'include-pairs',
|
|
127
133
|
'init',
|
|
128
134
|
'input-hash',
|
|
@@ -135,11 +141,13 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
135
141
|
'json',
|
|
136
142
|
'judge',
|
|
137
143
|
'k',
|
|
144
|
+
'keep',
|
|
138
145
|
'keep-scratch',
|
|
139
146
|
'key',
|
|
140
147
|
'kind',
|
|
141
148
|
'ladder',
|
|
142
149
|
'legacy',
|
|
150
|
+
'lesson',
|
|
143
151
|
'lexical',
|
|
144
152
|
'license',
|
|
145
153
|
'limit',
|
|
@@ -147,6 +155,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
147
155
|
'live-content',
|
|
148
156
|
'loc-cap',
|
|
149
157
|
'local-path',
|
|
158
|
+
'log',
|
|
150
159
|
'manifest',
|
|
151
160
|
'margin',
|
|
152
161
|
'mark',
|
|
@@ -163,7 +172,9 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
163
172
|
'name',
|
|
164
173
|
'name-only',
|
|
165
174
|
'night',
|
|
175
|
+
'note',
|
|
166
176
|
'no-audit',
|
|
177
|
+
'no-cost',
|
|
167
178
|
'no-decorate',
|
|
168
179
|
'no-dry-run',
|
|
169
180
|
'no-evals',
|
|
@@ -178,6 +189,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
178
189
|
'no-memory',
|
|
179
190
|
'no-merges',
|
|
180
191
|
'no-mirror',
|
|
192
|
+
'no-new-knowledge',
|
|
181
193
|
'no-provenance',
|
|
182
194
|
'no-result',
|
|
183
195
|
'no-semantic',
|
|
@@ -189,9 +201,12 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
189
201
|
'oneline',
|
|
190
202
|
'only',
|
|
191
203
|
'op',
|
|
204
|
+
'older-than',
|
|
192
205
|
'original',
|
|
193
206
|
'out',
|
|
194
207
|
'outcome',
|
|
208
|
+
'owner-pid',
|
|
209
|
+
'owner-run',
|
|
195
210
|
'output',
|
|
196
211
|
'output-format',
|
|
197
212
|
'override',
|
|
@@ -218,6 +233,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
218
233
|
'promote',
|
|
219
234
|
'proposal',
|
|
220
235
|
'provenance',
|
|
236
|
+
'prune',
|
|
221
237
|
'prune-noise',
|
|
222
238
|
'prune-quarantine',
|
|
223
239
|
'pubkey',
|
|
@@ -241,8 +257,10 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
241
257
|
'resume',
|
|
242
258
|
'retention-days',
|
|
243
259
|
'revise',
|
|
260
|
+
'reviewer',
|
|
244
261
|
'reward',
|
|
245
262
|
'row',
|
|
263
|
+
'round',
|
|
246
264
|
'rounds',
|
|
247
265
|
'run',
|
|
248
266
|
'run-dir',
|
|
@@ -276,6 +294,7 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
276
294
|
'stage-timeout',
|
|
277
295
|
'stages-json',
|
|
278
296
|
'stall-minutes',
|
|
297
|
+
'state-root',
|
|
279
298
|
'static',
|
|
280
299
|
'stats',
|
|
281
300
|
'status',
|
|
@@ -297,11 +316,14 @@ export const KNOWN_CLI_FLAGS: readonly string[] = [
|
|
|
297
316
|
'tie-rate',
|
|
298
317
|
'tier',
|
|
299
318
|
'timeout',
|
|
319
|
+
'timeout-min',
|
|
300
320
|
'title',
|
|
301
321
|
'to',
|
|
302
322
|
'tolerance',
|
|
303
323
|
'tools',
|
|
324
|
+
'topic',
|
|
304
325
|
'topics',
|
|
326
|
+
'tokens',
|
|
305
327
|
'transcript',
|
|
306
328
|
'type',
|
|
307
329
|
'untracked-files', // git status argument
|