@codedrifters/configulator 0.0.292 → 0.0.293
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/lib/index.d.mts +7 -7
- package/lib/index.d.ts +7 -7
- package/lib/index.js +306 -211
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +306 -211
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -3422,7 +3422,7 @@ declare const baseBundle: AgentRuleBundle;
|
|
|
3422
3422
|
* surfaced items via `people:research`, `company:research`, and
|
|
3423
3423
|
* `research:scope` issues.
|
|
3424
3424
|
*/
|
|
3425
|
-
declare function buildBcmWriterBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
3425
|
+
declare function buildBcmWriterBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3426
3426
|
/**
|
|
3427
3427
|
* Default-paths instance of the bcm-writer bundle, preserved for
|
|
3428
3428
|
* backward compatibility with consumers that import the const directly.
|
|
@@ -3446,7 +3446,7 @@ declare const bcmWriterBundle: AgentRuleBundle;
|
|
|
3446
3446
|
* `company-profile` via the shared `<BUSINESS_MODELS_ROOT>` default
|
|
3447
3447
|
* path (`<docsRoot>/industry-research/`).
|
|
3448
3448
|
*/
|
|
3449
|
-
declare function buildBusinessModelsBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
3449
|
+
declare function buildBusinessModelsBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3450
3450
|
/**
|
|
3451
3451
|
* Default-paths instance of the business-models bundle, preserved for
|
|
3452
3452
|
* backward compatibility with consumers that import the const
|
|
@@ -3672,7 +3672,7 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
3672
3672
|
* automatically pick up the label taxonomy through the sync-labels
|
|
3673
3673
|
* workflow.
|
|
3674
3674
|
*/
|
|
3675
|
-
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
3675
|
+
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3676
3676
|
/**
|
|
3677
3677
|
* Default-paths instance of the maintenance-audit bundle, preserved
|
|
3678
3678
|
* for backward compatibility with consumers that import the const
|
|
@@ -5277,7 +5277,7 @@ declare function renderStubIndexConventionRuleContent(): string;
|
|
|
5277
5277
|
* consumer override of `AgentConfigOptions.paths` propagates to the
|
|
5278
5278
|
* rendered output.
|
|
5279
5279
|
*/
|
|
5280
|
-
declare function buildRequirementsAnalystBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5280
|
+
declare function buildRequirementsAnalystBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5281
5281
|
/**
|
|
5282
5282
|
* Default-paths instance of the requirements-analyst bundle, preserved
|
|
5283
5283
|
* for backward compatibility with consumers that import the const
|
|
@@ -5317,7 +5317,7 @@ declare const requirementsAnalystBundle: AgentRuleBundle;
|
|
|
5317
5317
|
* phase label so they share the same queue and triage flow as the
|
|
5318
5318
|
* rest of the requirements pipeline.
|
|
5319
5319
|
*/
|
|
5320
|
-
declare function buildRequirementsReviewerBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5320
|
+
declare function buildRequirementsReviewerBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5321
5321
|
/**
|
|
5322
5322
|
* Default-paths instance of the requirements-reviewer bundle, preserved
|
|
5323
5323
|
* for backward compatibility with consumers that import the const
|
|
@@ -5360,7 +5360,7 @@ declare const REQUIREMENTS_WRITER_PATHS: {
|
|
|
5360
5360
|
* `type:requirement` is intentionally **not** declared here — it is
|
|
5361
5361
|
* already declared by the `requirements-analyst` bundle and reused.
|
|
5362
5362
|
*/
|
|
5363
|
-
declare function buildRequirementsWriterBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5363
|
+
declare function buildRequirementsWriterBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5364
5364
|
/**
|
|
5365
5365
|
* Default-paths instance of the requirements-writer bundle, preserved
|
|
5366
5366
|
* for backward compatibility with consumers that import the const
|
|
@@ -5377,7 +5377,7 @@ declare const requirementsWriterBundle: AgentRuleBundle;
|
|
|
5377
5377
|
* interpolation of the supplied `paths` struct, so a consumer override
|
|
5378
5378
|
* of `AgentConfigOptions.paths` propagates to the rendered output.
|
|
5379
5379
|
*/
|
|
5380
|
-
declare function buildResearchPipelineBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5380
|
+
declare function buildResearchPipelineBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5381
5381
|
/**
|
|
5382
5382
|
* Default-paths instance of the research-pipeline bundle, preserved
|
|
5383
5383
|
* for backward compatibility with consumers that import the const
|
package/lib/index.d.ts
CHANGED
|
@@ -3471,7 +3471,7 @@ declare const baseBundle: AgentRuleBundle;
|
|
|
3471
3471
|
* surfaced items via `people:research`, `company:research`, and
|
|
3472
3472
|
* `research:scope` issues.
|
|
3473
3473
|
*/
|
|
3474
|
-
declare function buildBcmWriterBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
3474
|
+
declare function buildBcmWriterBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3475
3475
|
/**
|
|
3476
3476
|
* Default-paths instance of the bcm-writer bundle, preserved for
|
|
3477
3477
|
* backward compatibility with consumers that import the const directly.
|
|
@@ -3495,7 +3495,7 @@ declare const bcmWriterBundle: AgentRuleBundle;
|
|
|
3495
3495
|
* `company-profile` via the shared `<BUSINESS_MODELS_ROOT>` default
|
|
3496
3496
|
* path (`<docsRoot>/industry-research/`).
|
|
3497
3497
|
*/
|
|
3498
|
-
declare function buildBusinessModelsBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
3498
|
+
declare function buildBusinessModelsBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3499
3499
|
/**
|
|
3500
3500
|
* Default-paths instance of the business-models bundle, preserved for
|
|
3501
3501
|
* backward compatibility with consumers that import the const
|
|
@@ -3721,7 +3721,7 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
3721
3721
|
* automatically pick up the label taxonomy through the sync-labels
|
|
3722
3722
|
* workflow.
|
|
3723
3723
|
*/
|
|
3724
|
-
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
3724
|
+
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* Default-paths instance of the maintenance-audit bundle, preserved
|
|
3727
3727
|
* for backward compatibility with consumers that import the const
|
|
@@ -5326,7 +5326,7 @@ declare function renderStubIndexConventionRuleContent(): string;
|
|
|
5326
5326
|
* consumer override of `AgentConfigOptions.paths` propagates to the
|
|
5327
5327
|
* rendered output.
|
|
5328
5328
|
*/
|
|
5329
|
-
declare function buildRequirementsAnalystBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5329
|
+
declare function buildRequirementsAnalystBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5330
5330
|
/**
|
|
5331
5331
|
* Default-paths instance of the requirements-analyst bundle, preserved
|
|
5332
5332
|
* for backward compatibility with consumers that import the const
|
|
@@ -5366,7 +5366,7 @@ declare const requirementsAnalystBundle: AgentRuleBundle;
|
|
|
5366
5366
|
* phase label so they share the same queue and triage flow as the
|
|
5367
5367
|
* rest of the requirements pipeline.
|
|
5368
5368
|
*/
|
|
5369
|
-
declare function buildRequirementsReviewerBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5369
|
+
declare function buildRequirementsReviewerBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5370
5370
|
/**
|
|
5371
5371
|
* Default-paths instance of the requirements-reviewer bundle, preserved
|
|
5372
5372
|
* for backward compatibility with consumers that import the const
|
|
@@ -5409,7 +5409,7 @@ declare const REQUIREMENTS_WRITER_PATHS: {
|
|
|
5409
5409
|
* `type:requirement` is intentionally **not** declared here — it is
|
|
5410
5410
|
* already declared by the `requirements-analyst` bundle and reused.
|
|
5411
5411
|
*/
|
|
5412
|
-
declare function buildRequirementsWriterBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5412
|
+
declare function buildRequirementsWriterBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5413
5413
|
/**
|
|
5414
5414
|
* Default-paths instance of the requirements-writer bundle, preserved
|
|
5415
5415
|
* for backward compatibility with consumers that import the const
|
|
@@ -5426,7 +5426,7 @@ declare const requirementsWriterBundle: AgentRuleBundle;
|
|
|
5426
5426
|
* interpolation of the supplied `paths` struct, so a consumer override
|
|
5427
5427
|
* of `AgentConfigOptions.paths` propagates to the rendered output.
|
|
5428
5428
|
*/
|
|
5429
|
-
declare function buildResearchPipelineBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
5429
|
+
declare function buildResearchPipelineBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5430
5430
|
/**
|
|
5431
5431
|
* Default-paths instance of the research-pipeline bundle, preserved
|
|
5432
5432
|
* for backward compatibility with consumers that import the const
|