opencode-pilot 0.11.2 → 0.12.0
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/package.json +1 -1
- package/service/poll-service.js +11 -1
- package/service/readiness.js +50 -0
- package/test/unit/readiness.test.js +180 -0
- package/test/unit/repo-config.test.js +2 -1
package/package.json
CHANGED
package/service/poll-service.js
CHANGED
|
@@ -146,7 +146,17 @@ export async function pollOnce(options = {}) {
|
|
|
146
146
|
const repoKey = repoKeys.length > 0 ? repoKeys[0] : null;
|
|
147
147
|
const repoConfig = repoKey ? getRepoConfig(repoKey) : {};
|
|
148
148
|
|
|
149
|
-
|
|
149
|
+
// Merge source-level readiness config with repo config
|
|
150
|
+
// Source readiness takes precedence
|
|
151
|
+
const readinessConfig = {
|
|
152
|
+
...repoConfig,
|
|
153
|
+
readiness: {
|
|
154
|
+
...repoConfig.readiness,
|
|
155
|
+
...source.readiness,
|
|
156
|
+
},
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
const readiness = evaluateReadiness(item, readinessConfig);
|
|
150
160
|
debug(`Item ${item.id}: ready=${readiness.ready}, reason=${readiness.reason || 'none'}`);
|
|
151
161
|
return {
|
|
152
162
|
...item,
|
package/service/readiness.js
CHANGED
|
@@ -134,6 +134,46 @@ export function checkDependencies(issue, config) {
|
|
|
134
134
|
return { ready: true };
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
/**
|
|
138
|
+
* Check if item fields match required values
|
|
139
|
+
*
|
|
140
|
+
* Generic field-based readiness check. Configured via readiness.fields in config.
|
|
141
|
+
* All specified fields must match their required values for the item to be ready.
|
|
142
|
+
*
|
|
143
|
+
* Example config:
|
|
144
|
+
* readiness:
|
|
145
|
+
* fields:
|
|
146
|
+
* has_notes: true
|
|
147
|
+
* type: "meeting"
|
|
148
|
+
*
|
|
149
|
+
* @param {object} item - Item with fields to check
|
|
150
|
+
* @param {object} config - Config with optional readiness.fields
|
|
151
|
+
* @returns {object} { ready: boolean, reason?: string }
|
|
152
|
+
*/
|
|
153
|
+
export function checkFields(item, config) {
|
|
154
|
+
const readinessConfig = config.readiness || {};
|
|
155
|
+
const fieldsConfig = readinessConfig.fields || {};
|
|
156
|
+
|
|
157
|
+
// No fields configured - skip check
|
|
158
|
+
if (Object.keys(fieldsConfig).length === 0) {
|
|
159
|
+
return { ready: true };
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// Check each required field
|
|
163
|
+
for (const [field, requiredValue] of Object.entries(fieldsConfig)) {
|
|
164
|
+
const actualValue = item[field];
|
|
165
|
+
|
|
166
|
+
if (actualValue !== requiredValue) {
|
|
167
|
+
return {
|
|
168
|
+
ready: false,
|
|
169
|
+
reason: `Field '${field}' is ${JSON.stringify(actualValue)}, required ${JSON.stringify(requiredValue)}`,
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return { ready: true };
|
|
175
|
+
}
|
|
176
|
+
|
|
137
177
|
/**
|
|
138
178
|
* Check if a PR/issue has meaningful (non-bot, non-author) comments
|
|
139
179
|
*
|
|
@@ -246,6 +286,16 @@ export function evaluateReadiness(issue, config) {
|
|
|
246
286
|
};
|
|
247
287
|
}
|
|
248
288
|
|
|
289
|
+
// Check required field values
|
|
290
|
+
const fieldsResult = checkFields(issue, config);
|
|
291
|
+
if (!fieldsResult.ready) {
|
|
292
|
+
return {
|
|
293
|
+
ready: false,
|
|
294
|
+
reason: fieldsResult.reason,
|
|
295
|
+
priority: 0,
|
|
296
|
+
};
|
|
297
|
+
}
|
|
298
|
+
|
|
249
299
|
// Calculate priority for ready issues
|
|
250
300
|
const priority = calculatePriority(issue, config);
|
|
251
301
|
|
|
@@ -172,6 +172,143 @@ describe('readiness.js', () => {
|
|
|
172
172
|
});
|
|
173
173
|
});
|
|
174
174
|
|
|
175
|
+
describe('checkFields', () => {
|
|
176
|
+
test('returns ready when no fields configured', async () => {
|
|
177
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
178
|
+
|
|
179
|
+
const item = { id: 'item-1', has_notes: false };
|
|
180
|
+
const config = {};
|
|
181
|
+
|
|
182
|
+
const result = checkFields(item, config);
|
|
183
|
+
|
|
184
|
+
assert.strictEqual(result.ready, true);
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
test('returns ready when field matches required value (boolean)', async () => {
|
|
188
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
189
|
+
|
|
190
|
+
const meeting = { id: 'meeting-1', has_notes: true };
|
|
191
|
+
const config = {
|
|
192
|
+
readiness: {
|
|
193
|
+
fields: {
|
|
194
|
+
has_notes: true
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
const result = checkFields(meeting, config);
|
|
200
|
+
|
|
201
|
+
assert.strictEqual(result.ready, true);
|
|
202
|
+
});
|
|
203
|
+
|
|
204
|
+
test('returns not ready when field does not match required value', async () => {
|
|
205
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
206
|
+
|
|
207
|
+
const meeting = { id: 'meeting-1', has_notes: false };
|
|
208
|
+
const config = {
|
|
209
|
+
readiness: {
|
|
210
|
+
fields: {
|
|
211
|
+
has_notes: true
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
const result = checkFields(meeting, config);
|
|
217
|
+
|
|
218
|
+
assert.strictEqual(result.ready, false);
|
|
219
|
+
assert.ok(result.reason.includes('has_notes'));
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
test('returns not ready when required field is missing', async () => {
|
|
223
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
224
|
+
|
|
225
|
+
const item = { id: 'item-1', title: 'Test' };
|
|
226
|
+
const config = {
|
|
227
|
+
readiness: {
|
|
228
|
+
fields: {
|
|
229
|
+
has_notes: true
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
const result = checkFields(item, config);
|
|
235
|
+
|
|
236
|
+
assert.strictEqual(result.ready, false);
|
|
237
|
+
assert.ok(result.reason.includes('has_notes'));
|
|
238
|
+
});
|
|
239
|
+
|
|
240
|
+
test('checks multiple fields (all must match)', async () => {
|
|
241
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
242
|
+
|
|
243
|
+
const item = { id: 'item-1', has_notes: true, type: 'meeting' };
|
|
244
|
+
const config = {
|
|
245
|
+
readiness: {
|
|
246
|
+
fields: {
|
|
247
|
+
has_notes: true,
|
|
248
|
+
type: 'meeting'
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
};
|
|
252
|
+
|
|
253
|
+
const result = checkFields(item, config);
|
|
254
|
+
|
|
255
|
+
assert.strictEqual(result.ready, true);
|
|
256
|
+
});
|
|
257
|
+
|
|
258
|
+
test('fails if any field does not match', async () => {
|
|
259
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
260
|
+
|
|
261
|
+
const item = { id: 'item-1', has_notes: true, type: 'note' };
|
|
262
|
+
const config = {
|
|
263
|
+
readiness: {
|
|
264
|
+
fields: {
|
|
265
|
+
has_notes: true,
|
|
266
|
+
type: 'meeting'
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
const result = checkFields(item, config);
|
|
272
|
+
|
|
273
|
+
assert.strictEqual(result.ready, false);
|
|
274
|
+
assert.ok(result.reason.includes('type'));
|
|
275
|
+
});
|
|
276
|
+
|
|
277
|
+
test('supports string field values', async () => {
|
|
278
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
279
|
+
|
|
280
|
+
const item = { id: 'item-1', state: 'open' };
|
|
281
|
+
const config = {
|
|
282
|
+
readiness: {
|
|
283
|
+
fields: {
|
|
284
|
+
state: 'open'
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
};
|
|
288
|
+
|
|
289
|
+
const result = checkFields(item, config);
|
|
290
|
+
|
|
291
|
+
assert.strictEqual(result.ready, true);
|
|
292
|
+
});
|
|
293
|
+
|
|
294
|
+
test('supports numeric field values', async () => {
|
|
295
|
+
const { checkFields } = await import('../../service/readiness.js');
|
|
296
|
+
|
|
297
|
+
const item = { id: 'item-1', participant_count: 3 };
|
|
298
|
+
const config = {
|
|
299
|
+
readiness: {
|
|
300
|
+
fields: {
|
|
301
|
+
participant_count: 3
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
};
|
|
305
|
+
|
|
306
|
+
const result = checkFields(item, config);
|
|
307
|
+
|
|
308
|
+
assert.strictEqual(result.ready, true);
|
|
309
|
+
});
|
|
310
|
+
});
|
|
311
|
+
|
|
175
312
|
describe('evaluateReadiness', () => {
|
|
176
313
|
test('checks bot comments when _comments is present', async () => {
|
|
177
314
|
const { evaluateReadiness } = await import('../../service/readiness.js');
|
|
@@ -206,5 +343,48 @@ describe('readiness.js', () => {
|
|
|
206
343
|
|
|
207
344
|
assert.strictEqual(result.ready, true);
|
|
208
345
|
});
|
|
346
|
+
|
|
347
|
+
test('checks fields when readiness.fields is configured', async () => {
|
|
348
|
+
const { evaluateReadiness } = await import('../../service/readiness.js');
|
|
349
|
+
|
|
350
|
+
const meeting = {
|
|
351
|
+
id: 'meeting-123',
|
|
352
|
+
title: 'Team Standup',
|
|
353
|
+
has_notes: false
|
|
354
|
+
};
|
|
355
|
+
const config = {
|
|
356
|
+
readiness: {
|
|
357
|
+
fields: {
|
|
358
|
+
has_notes: true
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
};
|
|
362
|
+
|
|
363
|
+
const result = evaluateReadiness(meeting, config);
|
|
364
|
+
|
|
365
|
+
assert.strictEqual(result.ready, false);
|
|
366
|
+
assert.ok(result.reason.includes('has_notes'));
|
|
367
|
+
});
|
|
368
|
+
|
|
369
|
+
test('passes when field matches required value', async () => {
|
|
370
|
+
const { evaluateReadiness } = await import('../../service/readiness.js');
|
|
371
|
+
|
|
372
|
+
const meeting = {
|
|
373
|
+
id: 'meeting-123',
|
|
374
|
+
title: 'Team Standup',
|
|
375
|
+
has_notes: true
|
|
376
|
+
};
|
|
377
|
+
const config = {
|
|
378
|
+
readiness: {
|
|
379
|
+
fields: {
|
|
380
|
+
has_notes: true
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
};
|
|
384
|
+
|
|
385
|
+
const result = evaluateReadiness(meeting, config);
|
|
386
|
+
|
|
387
|
+
assert.strictEqual(result.ready, true);
|
|
388
|
+
});
|
|
209
389
|
});
|
|
210
390
|
});
|
|
@@ -700,8 +700,9 @@ sources:
|
|
|
700
700
|
loadRepoConfig(configPath);
|
|
701
701
|
const sources = getSources();
|
|
702
702
|
|
|
703
|
-
assert.strictEqual(sources[0].session.name, '{title}', 'linear
|
|
703
|
+
assert.strictEqual(sources[0].session.name, '{title}', 'linear preset should use title');
|
|
704
704
|
});
|
|
705
|
+
|
|
705
706
|
});
|
|
706
707
|
|
|
707
708
|
describe('shorthand syntax', () => {
|