@codedrifters/configulator 0.0.350 → 0.0.352
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 +181 -15
- package/lib/index.d.ts +181 -15
- package/lib/index.js +433 -18
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +433 -18
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1454,6 +1454,53 @@ interface MeetingArea {
|
|
|
1454
1454
|
*/
|
|
1455
1455
|
readonly docRoot: string;
|
|
1456
1456
|
}
|
|
1457
|
+
/**
|
|
1458
|
+
* Tunes how the `meeting-analyst` Phase 4 (Link) decides whether an
|
|
1459
|
+
* extracted action item becomes a GitHub issue or stays recorded only
|
|
1460
|
+
* in the notes `## Action Items` table.
|
|
1461
|
+
*
|
|
1462
|
+
* The bundle ships a baked-in **agent-workability test**: an action
|
|
1463
|
+
* item is filed (through its dedicated downstream channel —
|
|
1464
|
+
* `req:write`, `docs:write`, `bcm:*`, `research:scope`, etc.) only when
|
|
1465
|
+
* completing it produces a documentation deliverable an automated agent
|
|
1466
|
+
* can author in this repo's docs tree. Human-owned, real-world tasks
|
|
1467
|
+
* (send/schedule/install/decide/communicate/get-access/build-elsewhere)
|
|
1468
|
+
* are recorded only in the notes table and never filed as an issue.
|
|
1469
|
+
*
|
|
1470
|
+
* Every field is optional; the defaults reproduce the baked-in
|
|
1471
|
+
* behaviour. Supplying this config lets a consumer opt out of the split
|
|
1472
|
+
* or extend the verb cues that classify an item without forking the
|
|
1473
|
+
* bundle.
|
|
1474
|
+
*
|
|
1475
|
+
* @see MeetingsConfig
|
|
1476
|
+
* @see ./bundles/meeting-types.ts#renderMeetingTypesSection
|
|
1477
|
+
*/
|
|
1478
|
+
interface ActionItemFilingConfig {
|
|
1479
|
+
/**
|
|
1480
|
+
* Master switch for the agent-workability split. When `true`
|
|
1481
|
+
* (default) human-owned action items are recorded only in the notes
|
|
1482
|
+
* `## Action Items` table and only agent-workable doc deliverables
|
|
1483
|
+
* are filed as issues. Set to `false` to restore the legacy
|
|
1484
|
+
* behaviour where Phase 4 files a generic issue for every
|
|
1485
|
+
* non-document action item.
|
|
1486
|
+
* @default true
|
|
1487
|
+
*/
|
|
1488
|
+
readonly enabled?: boolean;
|
|
1489
|
+
/**
|
|
1490
|
+
* Extra cues that mark an action item as **human-owned** (recorded in
|
|
1491
|
+
* the notes table only, never filed). Appended to the bundle's
|
|
1492
|
+
* built-in cue list. Supply short verb phrases as they would appear
|
|
1493
|
+
* in an action item, e.g. "reconcile the books", "renew the domain".
|
|
1494
|
+
*/
|
|
1495
|
+
readonly humanOwnedCues?: ReadonlyArray<string>;
|
|
1496
|
+
/**
|
|
1497
|
+
* Extra cues that mark an action item as **agent-workable** (filed
|
|
1498
|
+
* through its dedicated downstream channel). Appended to the bundle's
|
|
1499
|
+
* built-in cue list. Supply short verb phrases, e.g. "draft the
|
|
1500
|
+
* onboarding runbook", "document the API contract".
|
|
1501
|
+
*/
|
|
1502
|
+
readonly agentWorkableCues?: ReadonlyArray<string>;
|
|
1503
|
+
}
|
|
1457
1504
|
/**
|
|
1458
1505
|
* Meeting-analysis injection points — the set of typed
|
|
1459
1506
|
* configurations agents consult when classifying, routing, and
|
|
@@ -1463,14 +1510,19 @@ interface MeetingArea {
|
|
|
1463
1510
|
* - `meetingAreas` — maps entries in the `areas:` frontmatter list
|
|
1464
1511
|
* to doc-root sub-trees.
|
|
1465
1512
|
* - `agendaTemplateRoot` — where pre-meeting agenda skeletons live.
|
|
1513
|
+
* - `actionItemFiling` — tunes the Phase 4 agent-workability split that
|
|
1514
|
+
* keeps human-owned action items out of the issue queue.
|
|
1466
1515
|
*
|
|
1467
1516
|
* When supplied, the `meeting-analysis` bundle conditionally renders
|
|
1468
|
-
*
|
|
1469
|
-
* "Recognized meeting types" (when `meetingTypes` is non-empty)
|
|
1470
|
-
* "Area → doc-root mapping" (when `meetingAreas` is non-empty)
|
|
1517
|
+
* subsections into the `meeting-processing-workflow` rule —
|
|
1518
|
+
* "Recognized meeting types" (when `meetingTypes` is non-empty),
|
|
1519
|
+
* "Area → doc-root mapping" (when `meetingAreas` is non-empty), and
|
|
1520
|
+
* "Action-item filing policy" (when `actionItemFiling` overrides a
|
|
1521
|
+
* default).
|
|
1471
1522
|
*
|
|
1472
1523
|
* @see MeetingType
|
|
1473
1524
|
* @see MeetingArea
|
|
1525
|
+
* @see ActionItemFilingConfig
|
|
1474
1526
|
* @see ./bundles/meeting-types.ts#renderMeetingTypesSection
|
|
1475
1527
|
*/
|
|
1476
1528
|
interface MeetingsConfig {
|
|
@@ -1499,6 +1551,14 @@ interface MeetingsConfig {
|
|
|
1499
1551
|
* @default "<meetingsRoot>/_agenda-templates"
|
|
1500
1552
|
*/
|
|
1501
1553
|
readonly agendaTemplateRoot?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* Tunes the Phase 4 (Link) agent-workability split that decides
|
|
1556
|
+
* whether an extracted action item is filed as a GitHub issue or
|
|
1557
|
+
* recorded only in the notes `## Action Items` table. Omit to accept
|
|
1558
|
+
* the bundle's baked-in split (file agent-workable doc deliverables,
|
|
1559
|
+
* keep human-owned tasks notes-only).
|
|
1560
|
+
*/
|
|
1561
|
+
readonly actionItemFiling?: ActionItemFilingConfig;
|
|
1502
1562
|
}
|
|
1503
1563
|
/*******************************************************************************
|
|
1504
1564
|
*
|
|
@@ -1860,7 +1920,7 @@ interface ScopeGateConfig {
|
|
|
1860
1920
|
* phase-completion checklist that can be decomposed — clear the
|
|
1861
1921
|
* gate even when their AC count is well above the global cap.
|
|
1862
1922
|
*
|
|
1863
|
-
* Configulator ships
|
|
1923
|
+
* Configulator ships nine opt-in defaults out of the box —
|
|
1864
1924
|
* each calibrated against an observed cohort of phase-template
|
|
1865
1925
|
* issues whose AC list is the per-section content checklist for
|
|
1866
1926
|
* one cohesive deliverable rather than a phase-completion
|
|
@@ -1885,6 +1945,12 @@ interface ScopeGateConfig {
|
|
|
1885
1945
|
* jurisdiction, scope, obligations, penalties, and effective
|
|
1886
1946
|
* dates. Default override:
|
|
1887
1947
|
* `{ acceptanceCriteria: { mediumMax: 10 } }` (sources unchanged).
|
|
1948
|
+
* - `standards:research` — single standard-version research notes
|
|
1949
|
+
* enumerating one cohesive deliverable across per-section ACs
|
|
1950
|
+
* (candidate encodings, reconciliation, storage/query analysis,
|
|
1951
|
+
* citations, recommendation). Sibling of `regulatory:research`.
|
|
1952
|
+
* Default override:
|
|
1953
|
+
* `{ acceptanceCriteria: { mediumMax: 10 } }` (sources unchanged).
|
|
1888
1954
|
* - `software:map` — single capability-mapping matrix file whose
|
|
1889
1955
|
* Sources block typically cross-references the entire BCM tree
|
|
1890
1956
|
* slice. Default override:
|
|
@@ -1998,6 +2064,69 @@ interface PrReviewAutoMergeConfig {
|
|
|
1998
2064
|
*/
|
|
1999
2065
|
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
2000
2066
|
}
|
|
2067
|
+
/**
|
|
2068
|
+
* CI-verification half of the PR review policy.
|
|
2069
|
+
*
|
|
2070
|
+
* The reviewer confirms CI before enabling auto-merge by reading the
|
|
2071
|
+
* GitHub **check-runs** rollup (`gh pr checks` /
|
|
2072
|
+
* `statusCheckRollup`) — the canonical source GitHub itself uses for
|
|
2073
|
+
* branch protection. That read covers every check context (Actions,
|
|
2074
|
+
* third-party CI, GitHub Apps, commit statuses), so it stays the
|
|
2075
|
+
* primary path for every consumer.
|
|
2076
|
+
*
|
|
2077
|
+
* The check-runs endpoint returns HTTP 403 `Resource not accessible
|
|
2078
|
+
* by personal access token` when the reviewer authenticates with a
|
|
2079
|
+
* **fine-grained PAT** — GitHub exposes no `Checks` permission for
|
|
2080
|
+
* fine-grained tokens (it is GitHub-App-only), so such a consumer
|
|
2081
|
+
* cannot grant its way out of the 403. On that specific failure the
|
|
2082
|
+
* reviewer falls back to the **Actions runs API**
|
|
2083
|
+
* (`GET /repos/{owner}/{repo}/actions/runs?head_sha=...`), which a
|
|
2084
|
+
* fine-grained PAT with `Actions: Read-only` *can* read. The fallback
|
|
2085
|
+
* only sees GitHub Actions runs, so it needs to know which workflows
|
|
2086
|
+
* to treat as required — that is what `requiredWorkflows` configures.
|
|
2087
|
+
*
|
|
2088
|
+
* GitHub-App and classic-PAT consumers never hit the 403 and never
|
|
2089
|
+
* use the fallback; for them this config is inert.
|
|
2090
|
+
*
|
|
2091
|
+
* @see PrReviewPolicyConfig
|
|
2092
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_REQUIRED_WORKFLOWS
|
|
2093
|
+
*/
|
|
2094
|
+
interface PrReviewCiVerificationConfig {
|
|
2095
|
+
/**
|
|
2096
|
+
* Workflow `name`s the reviewer treats as **required** when it has
|
|
2097
|
+
* to fall back to the Actions runs API (because the primary
|
|
2098
|
+
* check-runs read returned a fine-grained-PAT 403). Auto-merge is
|
|
2099
|
+
* gated on every listed workflow's latest run for the PR head SHA
|
|
2100
|
+
* concluding `success` (`skipped` / `neutral` are non-blocking;
|
|
2101
|
+
* `failure` / `cancelled` / `timed_out` / `action_required` block;
|
|
2102
|
+
* `in_progress` / `queued` / a missing run count as not-yet-green).
|
|
2103
|
+
*
|
|
2104
|
+
* Defaults to `[]`. An empty list means **every** workflow run
|
|
2105
|
+
* observed for the head SHA is treated as required — the
|
|
2106
|
+
* conservative zero-config default, so an unknown failing workflow
|
|
2107
|
+
* blocks rather than slips through. Set an explicit list to gate on
|
|
2108
|
+
* a known subset (e.g. ignore an optional or advisory workflow):
|
|
2109
|
+
*
|
|
2110
|
+
* ```typescript
|
|
2111
|
+
* agentConfig: {
|
|
2112
|
+
* prReviewPolicy: {
|
|
2113
|
+
* ciVerification: {
|
|
2114
|
+
* requiredWorkflows: ["build", "pull-request-lint"],
|
|
2115
|
+
* },
|
|
2116
|
+
* },
|
|
2117
|
+
* }
|
|
2118
|
+
* ```
|
|
2119
|
+
*
|
|
2120
|
+
* The list only governs the fallback path. The primary check-runs
|
|
2121
|
+
* read derives "required" from branch protection directly, so a
|
|
2122
|
+
* GitHub-App / classic-PAT consumer is unaffected by this list.
|
|
2123
|
+
* Pass non-empty entries only — empty / whitespace-only strings
|
|
2124
|
+
* fail synth.
|
|
2125
|
+
*
|
|
2126
|
+
* @default []
|
|
2127
|
+
*/
|
|
2128
|
+
readonly requiredWorkflows?: ReadonlyArray<string>;
|
|
2129
|
+
}
|
|
2001
2130
|
/**
|
|
2002
2131
|
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
2003
2132
|
*
|
|
@@ -2037,6 +2166,13 @@ interface PrReviewPolicyConfig {
|
|
|
2037
2166
|
* size rule.
|
|
2038
2167
|
*/
|
|
2039
2168
|
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
2169
|
+
/**
|
|
2170
|
+
* CI-verification half of the policy. Exposes `requiredWorkflows`,
|
|
2171
|
+
* the workflow names the reviewer gates on when it falls back to
|
|
2172
|
+
* the Actions runs API because the primary check-runs read returned
|
|
2173
|
+
* a fine-grained-PAT 403.
|
|
2174
|
+
*/
|
|
2175
|
+
readonly ciVerification?: PrReviewCiVerificationConfig;
|
|
2040
2176
|
}
|
|
2041
2177
|
/*******************************************************************************
|
|
2042
2178
|
*
|
|
@@ -3329,10 +3465,11 @@ interface AgentConfigOptions {
|
|
|
3329
3465
|
readonly scopeGate?: ScopeGateConfig;
|
|
3330
3466
|
/**
|
|
3331
3467
|
* PR review policy configuration consumed by the `pr-review`
|
|
3332
|
-
* bundle.
|
|
3333
|
-
*
|
|
3334
|
-
*
|
|
3335
|
-
*
|
|
3468
|
+
* bundle. Exposes two knobs: a doc-only carve-out against the
|
|
3469
|
+
* `human-required.size` rule (rule #6 in the precedence walk) —
|
|
3470
|
+
* see `PrReviewAutoMergeConfig.pathsExemptFromSize` — and the
|
|
3471
|
+
* CI-verification fallback's required-workflow list — see
|
|
3472
|
+
* `PrReviewCiVerificationConfig.requiredWorkflows`.
|
|
3336
3473
|
*
|
|
3337
3474
|
* When the whole config is omitted, the bundle ships the carve-out
|
|
3338
3475
|
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
@@ -3341,9 +3478,14 @@ interface AgentConfigOptions {
|
|
|
3341
3478
|
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3342
3479
|
* carve-out entirely.
|
|
3343
3480
|
*
|
|
3481
|
+
* `ciVerification.requiredWorkflows` defaults to `[]` (treat every
|
|
3482
|
+
* observed Actions run for the head SHA as required); it only
|
|
3483
|
+
* affects the Actions-runs fallback the reviewer uses when the
|
|
3484
|
+
* primary check-runs read returns a fine-grained-PAT 403.
|
|
3485
|
+
*
|
|
3344
3486
|
* Malformed configs — empty / whitespace-only entries in
|
|
3345
|
-
* `pathsExemptFromSize` — fail the build at
|
|
3346
|
-
* `validatePrReviewPolicyConfig`.
|
|
3487
|
+
* `pathsExemptFromSize` or `requiredWorkflows` — fail the build at
|
|
3488
|
+
* synth time via `validatePrReviewPolicyConfig`.
|
|
3347
3489
|
*
|
|
3348
3490
|
* @see PrReviewPolicyConfig
|
|
3349
3491
|
* @see PrReviewAutoMergeConfig
|
|
@@ -4002,13 +4144,16 @@ declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
|
4002
4144
|
* Fully-resolved PR review policy. Every field is defaulted so
|
|
4003
4145
|
* downstream renderers can reason about a single canonical shape.
|
|
4004
4146
|
*
|
|
4005
|
-
*
|
|
4006
|
-
* against the size threshold (`autoMerge.pathsExemptFromSize`)
|
|
4007
|
-
*
|
|
4008
|
-
*
|
|
4147
|
+
* Two sub-rules are configurable today: the doc-only carve-out
|
|
4148
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`) and
|
|
4149
|
+
* the CI-verification fallback's required-workflow list
|
|
4150
|
+
* (`ciVerification.requiredWorkflows`). Additional knobs for other
|
|
4151
|
+
* rules in the policy may be added in future versions of
|
|
4152
|
+
* `PrReviewPolicyConfig`.
|
|
4009
4153
|
*/
|
|
4010
4154
|
interface ResolvedPrReviewPolicy {
|
|
4011
4155
|
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
4156
|
+
readonly ciVerification: ResolvedPrReviewCiVerification;
|
|
4012
4157
|
}
|
|
4013
4158
|
/**
|
|
4014
4159
|
* Fully-resolved `auto-merge` half of the policy.
|
|
@@ -4019,6 +4164,16 @@ interface ResolvedPrReviewPolicy {
|
|
|
4019
4164
|
interface ResolvedPrReviewAutoMerge {
|
|
4020
4165
|
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
4021
4166
|
}
|
|
4167
|
+
/**
|
|
4168
|
+
* Fully-resolved `ci-verification` half of the policy.
|
|
4169
|
+
*
|
|
4170
|
+
* `requiredWorkflows` is always populated — the default (`[]`, i.e.
|
|
4171
|
+
* "treat every observed Actions run as required") ships when the
|
|
4172
|
+
* consumer omits the option.
|
|
4173
|
+
*/
|
|
4174
|
+
interface ResolvedPrReviewCiVerification {
|
|
4175
|
+
readonly requiredWorkflows: ReadonlyArray<string>;
|
|
4176
|
+
}
|
|
4022
4177
|
/**
|
|
4023
4178
|
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
4024
4179
|
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
@@ -4042,6 +4197,9 @@ declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedP
|
|
|
4042
4197
|
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
4043
4198
|
* such an entry would either silently match nothing or match every
|
|
4044
4199
|
* path, both of which are almost certainly a typo.
|
|
4200
|
+
* - `requiredWorkflows` entries that are empty or whitespace-only — a
|
|
4201
|
+
* blank workflow name can never match an Actions-run `name`, so the
|
|
4202
|
+
* intended gate would silently never fire.
|
|
4045
4203
|
*/
|
|
4046
4204
|
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
4047
4205
|
|
|
@@ -4912,6 +5070,14 @@ declare const DEFAULT_SOURCES_THRESHOLDS: ScopeGateThresholds;
|
|
|
4912
5070
|
* penalties, and effective dates. Max observed 7 ACs; cap:
|
|
4913
5071
|
* `mediumMax: 10` on the AC axis (max observed + 3 headroom);
|
|
4914
5072
|
* sources unchanged.
|
|
5073
|
+
* - `standards:research` — single standard-version research notes
|
|
5074
|
+
* enumerate one cohesive deliverable across per-section ACs
|
|
5075
|
+
* (candidate encodings, reconciliation, storage/query analysis,
|
|
5076
|
+
* citations, recommendation). Sibling of `regulatory:research`
|
|
5077
|
+
* with the same content-spec note shape. Max observed 7 ACs
|
|
5078
|
+
* (`codedrifters/openhi-planning`#5994); cap: `mediumMax: 10` on
|
|
5079
|
+
* the AC axis (max observed + 3 headroom, matching the
|
|
5080
|
+
* `regulatory:research` sibling); sources unchanged.
|
|
4915
5081
|
* - `software:map` — capability-mapping output is a single cohesive
|
|
4916
5082
|
* matrix file whose ACs enumerate per-row/per-column requirements
|
|
4917
5083
|
* and whose Sources block typically cross-references the entire
|
|
@@ -12874,4 +13040,4 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
12874
13040
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
12875
13041
|
|
|
12876
13042
|
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CdkCli, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkWatch, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
12877
|
-
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementCategoryDirsConfig, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
13043
|
+
export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementCategoryDirsConfig, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|