@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.mts
CHANGED
|
@@ -1405,6 +1405,53 @@ interface MeetingArea {
|
|
|
1405
1405
|
*/
|
|
1406
1406
|
readonly docRoot: string;
|
|
1407
1407
|
}
|
|
1408
|
+
/**
|
|
1409
|
+
* Tunes how the `meeting-analyst` Phase 4 (Link) decides whether an
|
|
1410
|
+
* extracted action item becomes a GitHub issue or stays recorded only
|
|
1411
|
+
* in the notes `## Action Items` table.
|
|
1412
|
+
*
|
|
1413
|
+
* The bundle ships a baked-in **agent-workability test**: an action
|
|
1414
|
+
* item is filed (through its dedicated downstream channel —
|
|
1415
|
+
* `req:write`, `docs:write`, `bcm:*`, `research:scope`, etc.) only when
|
|
1416
|
+
* completing it produces a documentation deliverable an automated agent
|
|
1417
|
+
* can author in this repo's docs tree. Human-owned, real-world tasks
|
|
1418
|
+
* (send/schedule/install/decide/communicate/get-access/build-elsewhere)
|
|
1419
|
+
* are recorded only in the notes table and never filed as an issue.
|
|
1420
|
+
*
|
|
1421
|
+
* Every field is optional; the defaults reproduce the baked-in
|
|
1422
|
+
* behaviour. Supplying this config lets a consumer opt out of the split
|
|
1423
|
+
* or extend the verb cues that classify an item without forking the
|
|
1424
|
+
* bundle.
|
|
1425
|
+
*
|
|
1426
|
+
* @see MeetingsConfig
|
|
1427
|
+
* @see ./bundles/meeting-types.ts#renderMeetingTypesSection
|
|
1428
|
+
*/
|
|
1429
|
+
interface ActionItemFilingConfig {
|
|
1430
|
+
/**
|
|
1431
|
+
* Master switch for the agent-workability split. When `true`
|
|
1432
|
+
* (default) human-owned action items are recorded only in the notes
|
|
1433
|
+
* `## Action Items` table and only agent-workable doc deliverables
|
|
1434
|
+
* are filed as issues. Set to `false` to restore the legacy
|
|
1435
|
+
* behaviour where Phase 4 files a generic issue for every
|
|
1436
|
+
* non-document action item.
|
|
1437
|
+
* @default true
|
|
1438
|
+
*/
|
|
1439
|
+
readonly enabled?: boolean;
|
|
1440
|
+
/**
|
|
1441
|
+
* Extra cues that mark an action item as **human-owned** (recorded in
|
|
1442
|
+
* the notes table only, never filed). Appended to the bundle's
|
|
1443
|
+
* built-in cue list. Supply short verb phrases as they would appear
|
|
1444
|
+
* in an action item, e.g. "reconcile the books", "renew the domain".
|
|
1445
|
+
*/
|
|
1446
|
+
readonly humanOwnedCues?: ReadonlyArray<string>;
|
|
1447
|
+
/**
|
|
1448
|
+
* Extra cues that mark an action item as **agent-workable** (filed
|
|
1449
|
+
* through its dedicated downstream channel). Appended to the bundle's
|
|
1450
|
+
* built-in cue list. Supply short verb phrases, e.g. "draft the
|
|
1451
|
+
* onboarding runbook", "document the API contract".
|
|
1452
|
+
*/
|
|
1453
|
+
readonly agentWorkableCues?: ReadonlyArray<string>;
|
|
1454
|
+
}
|
|
1408
1455
|
/**
|
|
1409
1456
|
* Meeting-analysis injection points — the set of typed
|
|
1410
1457
|
* configurations agents consult when classifying, routing, and
|
|
@@ -1414,14 +1461,19 @@ interface MeetingArea {
|
|
|
1414
1461
|
* - `meetingAreas` — maps entries in the `areas:` frontmatter list
|
|
1415
1462
|
* to doc-root sub-trees.
|
|
1416
1463
|
* - `agendaTemplateRoot` — where pre-meeting agenda skeletons live.
|
|
1464
|
+
* - `actionItemFiling` — tunes the Phase 4 agent-workability split that
|
|
1465
|
+
* keeps human-owned action items out of the issue queue.
|
|
1417
1466
|
*
|
|
1418
1467
|
* When supplied, the `meeting-analysis` bundle conditionally renders
|
|
1419
|
-
*
|
|
1420
|
-
* "Recognized meeting types" (when `meetingTypes` is non-empty)
|
|
1421
|
-
* "Area → doc-root mapping" (when `meetingAreas` is non-empty)
|
|
1468
|
+
* subsections into the `meeting-processing-workflow` rule —
|
|
1469
|
+
* "Recognized meeting types" (when `meetingTypes` is non-empty),
|
|
1470
|
+
* "Area → doc-root mapping" (when `meetingAreas` is non-empty), and
|
|
1471
|
+
* "Action-item filing policy" (when `actionItemFiling` overrides a
|
|
1472
|
+
* default).
|
|
1422
1473
|
*
|
|
1423
1474
|
* @see MeetingType
|
|
1424
1475
|
* @see MeetingArea
|
|
1476
|
+
* @see ActionItemFilingConfig
|
|
1425
1477
|
* @see ./bundles/meeting-types.ts#renderMeetingTypesSection
|
|
1426
1478
|
*/
|
|
1427
1479
|
interface MeetingsConfig {
|
|
@@ -1450,6 +1502,14 @@ interface MeetingsConfig {
|
|
|
1450
1502
|
* @default "<meetingsRoot>/_agenda-templates"
|
|
1451
1503
|
*/
|
|
1452
1504
|
readonly agendaTemplateRoot?: string;
|
|
1505
|
+
/**
|
|
1506
|
+
* Tunes the Phase 4 (Link) agent-workability split that decides
|
|
1507
|
+
* whether an extracted action item is filed as a GitHub issue or
|
|
1508
|
+
* recorded only in the notes `## Action Items` table. Omit to accept
|
|
1509
|
+
* the bundle's baked-in split (file agent-workable doc deliverables,
|
|
1510
|
+
* keep human-owned tasks notes-only).
|
|
1511
|
+
*/
|
|
1512
|
+
readonly actionItemFiling?: ActionItemFilingConfig;
|
|
1453
1513
|
}
|
|
1454
1514
|
/*******************************************************************************
|
|
1455
1515
|
*
|
|
@@ -1811,7 +1871,7 @@ interface ScopeGateConfig {
|
|
|
1811
1871
|
* phase-completion checklist that can be decomposed — clear the
|
|
1812
1872
|
* gate even when their AC count is well above the global cap.
|
|
1813
1873
|
*
|
|
1814
|
-
* Configulator ships
|
|
1874
|
+
* Configulator ships nine opt-in defaults out of the box —
|
|
1815
1875
|
* each calibrated against an observed cohort of phase-template
|
|
1816
1876
|
* issues whose AC list is the per-section content checklist for
|
|
1817
1877
|
* one cohesive deliverable rather than a phase-completion
|
|
@@ -1836,6 +1896,12 @@ interface ScopeGateConfig {
|
|
|
1836
1896
|
* jurisdiction, scope, obligations, penalties, and effective
|
|
1837
1897
|
* dates. Default override:
|
|
1838
1898
|
* `{ acceptanceCriteria: { mediumMax: 10 } }` (sources unchanged).
|
|
1899
|
+
* - `standards:research` — single standard-version research notes
|
|
1900
|
+
* enumerating one cohesive deliverable across per-section ACs
|
|
1901
|
+
* (candidate encodings, reconciliation, storage/query analysis,
|
|
1902
|
+
* citations, recommendation). Sibling of `regulatory:research`.
|
|
1903
|
+
* Default override:
|
|
1904
|
+
* `{ acceptanceCriteria: { mediumMax: 10 } }` (sources unchanged).
|
|
1839
1905
|
* - `software:map` — single capability-mapping matrix file whose
|
|
1840
1906
|
* Sources block typically cross-references the entire BCM tree
|
|
1841
1907
|
* slice. Default override:
|
|
@@ -1949,6 +2015,69 @@ interface PrReviewAutoMergeConfig {
|
|
|
1949
2015
|
*/
|
|
1950
2016
|
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
1951
2017
|
}
|
|
2018
|
+
/**
|
|
2019
|
+
* CI-verification half of the PR review policy.
|
|
2020
|
+
*
|
|
2021
|
+
* The reviewer confirms CI before enabling auto-merge by reading the
|
|
2022
|
+
* GitHub **check-runs** rollup (`gh pr checks` /
|
|
2023
|
+
* `statusCheckRollup`) — the canonical source GitHub itself uses for
|
|
2024
|
+
* branch protection. That read covers every check context (Actions,
|
|
2025
|
+
* third-party CI, GitHub Apps, commit statuses), so it stays the
|
|
2026
|
+
* primary path for every consumer.
|
|
2027
|
+
*
|
|
2028
|
+
* The check-runs endpoint returns HTTP 403 `Resource not accessible
|
|
2029
|
+
* by personal access token` when the reviewer authenticates with a
|
|
2030
|
+
* **fine-grained PAT** — GitHub exposes no `Checks` permission for
|
|
2031
|
+
* fine-grained tokens (it is GitHub-App-only), so such a consumer
|
|
2032
|
+
* cannot grant its way out of the 403. On that specific failure the
|
|
2033
|
+
* reviewer falls back to the **Actions runs API**
|
|
2034
|
+
* (`GET /repos/{owner}/{repo}/actions/runs?head_sha=...`), which a
|
|
2035
|
+
* fine-grained PAT with `Actions: Read-only` *can* read. The fallback
|
|
2036
|
+
* only sees GitHub Actions runs, so it needs to know which workflows
|
|
2037
|
+
* to treat as required — that is what `requiredWorkflows` configures.
|
|
2038
|
+
*
|
|
2039
|
+
* GitHub-App and classic-PAT consumers never hit the 403 and never
|
|
2040
|
+
* use the fallback; for them this config is inert.
|
|
2041
|
+
*
|
|
2042
|
+
* @see PrReviewPolicyConfig
|
|
2043
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_REQUIRED_WORKFLOWS
|
|
2044
|
+
*/
|
|
2045
|
+
interface PrReviewCiVerificationConfig {
|
|
2046
|
+
/**
|
|
2047
|
+
* Workflow `name`s the reviewer treats as **required** when it has
|
|
2048
|
+
* to fall back to the Actions runs API (because the primary
|
|
2049
|
+
* check-runs read returned a fine-grained-PAT 403). Auto-merge is
|
|
2050
|
+
* gated on every listed workflow's latest run for the PR head SHA
|
|
2051
|
+
* concluding `success` (`skipped` / `neutral` are non-blocking;
|
|
2052
|
+
* `failure` / `cancelled` / `timed_out` / `action_required` block;
|
|
2053
|
+
* `in_progress` / `queued` / a missing run count as not-yet-green).
|
|
2054
|
+
*
|
|
2055
|
+
* Defaults to `[]`. An empty list means **every** workflow run
|
|
2056
|
+
* observed for the head SHA is treated as required — the
|
|
2057
|
+
* conservative zero-config default, so an unknown failing workflow
|
|
2058
|
+
* blocks rather than slips through. Set an explicit list to gate on
|
|
2059
|
+
* a known subset (e.g. ignore an optional or advisory workflow):
|
|
2060
|
+
*
|
|
2061
|
+
* ```typescript
|
|
2062
|
+
* agentConfig: {
|
|
2063
|
+
* prReviewPolicy: {
|
|
2064
|
+
* ciVerification: {
|
|
2065
|
+
* requiredWorkflows: ["build", "pull-request-lint"],
|
|
2066
|
+
* },
|
|
2067
|
+
* },
|
|
2068
|
+
* }
|
|
2069
|
+
* ```
|
|
2070
|
+
*
|
|
2071
|
+
* The list only governs the fallback path. The primary check-runs
|
|
2072
|
+
* read derives "required" from branch protection directly, so a
|
|
2073
|
+
* GitHub-App / classic-PAT consumer is unaffected by this list.
|
|
2074
|
+
* Pass non-empty entries only — empty / whitespace-only strings
|
|
2075
|
+
* fail synth.
|
|
2076
|
+
*
|
|
2077
|
+
* @default []
|
|
2078
|
+
*/
|
|
2079
|
+
readonly requiredWorkflows?: ReadonlyArray<string>;
|
|
2080
|
+
}
|
|
1952
2081
|
/**
|
|
1953
2082
|
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
1954
2083
|
*
|
|
@@ -1988,6 +2117,13 @@ interface PrReviewPolicyConfig {
|
|
|
1988
2117
|
* size rule.
|
|
1989
2118
|
*/
|
|
1990
2119
|
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
2120
|
+
/**
|
|
2121
|
+
* CI-verification half of the policy. Exposes `requiredWorkflows`,
|
|
2122
|
+
* the workflow names the reviewer gates on when it falls back to
|
|
2123
|
+
* the Actions runs API because the primary check-runs read returned
|
|
2124
|
+
* a fine-grained-PAT 403.
|
|
2125
|
+
*/
|
|
2126
|
+
readonly ciVerification?: PrReviewCiVerificationConfig;
|
|
1991
2127
|
}
|
|
1992
2128
|
/*******************************************************************************
|
|
1993
2129
|
*
|
|
@@ -3280,10 +3416,11 @@ interface AgentConfigOptions {
|
|
|
3280
3416
|
readonly scopeGate?: ScopeGateConfig;
|
|
3281
3417
|
/**
|
|
3282
3418
|
* PR review policy configuration consumed by the `pr-review`
|
|
3283
|
-
* bundle.
|
|
3284
|
-
*
|
|
3285
|
-
*
|
|
3286
|
-
*
|
|
3419
|
+
* bundle. Exposes two knobs: a doc-only carve-out against the
|
|
3420
|
+
* `human-required.size` rule (rule #6 in the precedence walk) —
|
|
3421
|
+
* see `PrReviewAutoMergeConfig.pathsExemptFromSize` — and the
|
|
3422
|
+
* CI-verification fallback's required-workflow list — see
|
|
3423
|
+
* `PrReviewCiVerificationConfig.requiredWorkflows`.
|
|
3287
3424
|
*
|
|
3288
3425
|
* When the whole config is omitted, the bundle ships the carve-out
|
|
3289
3426
|
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
@@ -3292,9 +3429,14 @@ interface AgentConfigOptions {
|
|
|
3292
3429
|
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3293
3430
|
* carve-out entirely.
|
|
3294
3431
|
*
|
|
3432
|
+
* `ciVerification.requiredWorkflows` defaults to `[]` (treat every
|
|
3433
|
+
* observed Actions run for the head SHA as required); it only
|
|
3434
|
+
* affects the Actions-runs fallback the reviewer uses when the
|
|
3435
|
+
* primary check-runs read returns a fine-grained-PAT 403.
|
|
3436
|
+
*
|
|
3295
3437
|
* Malformed configs — empty / whitespace-only entries in
|
|
3296
|
-
* `pathsExemptFromSize` — fail the build at
|
|
3297
|
-
* `validatePrReviewPolicyConfig`.
|
|
3438
|
+
* `pathsExemptFromSize` or `requiredWorkflows` — fail the build at
|
|
3439
|
+
* synth time via `validatePrReviewPolicyConfig`.
|
|
3298
3440
|
*
|
|
3299
3441
|
* @see PrReviewPolicyConfig
|
|
3300
3442
|
* @see PrReviewAutoMergeConfig
|
|
@@ -3953,13 +4095,16 @@ declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
|
3953
4095
|
* Fully-resolved PR review policy. Every field is defaulted so
|
|
3954
4096
|
* downstream renderers can reason about a single canonical shape.
|
|
3955
4097
|
*
|
|
3956
|
-
*
|
|
3957
|
-
* against the size threshold (`autoMerge.pathsExemptFromSize`)
|
|
3958
|
-
*
|
|
3959
|
-
*
|
|
4098
|
+
* Two sub-rules are configurable today: the doc-only carve-out
|
|
4099
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`) and
|
|
4100
|
+
* the CI-verification fallback's required-workflow list
|
|
4101
|
+
* (`ciVerification.requiredWorkflows`). Additional knobs for other
|
|
4102
|
+
* rules in the policy may be added in future versions of
|
|
4103
|
+
* `PrReviewPolicyConfig`.
|
|
3960
4104
|
*/
|
|
3961
4105
|
interface ResolvedPrReviewPolicy {
|
|
3962
4106
|
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
4107
|
+
readonly ciVerification: ResolvedPrReviewCiVerification;
|
|
3963
4108
|
}
|
|
3964
4109
|
/**
|
|
3965
4110
|
* Fully-resolved `auto-merge` half of the policy.
|
|
@@ -3970,6 +4115,16 @@ interface ResolvedPrReviewPolicy {
|
|
|
3970
4115
|
interface ResolvedPrReviewAutoMerge {
|
|
3971
4116
|
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
3972
4117
|
}
|
|
4118
|
+
/**
|
|
4119
|
+
* Fully-resolved `ci-verification` half of the policy.
|
|
4120
|
+
*
|
|
4121
|
+
* `requiredWorkflows` is always populated — the default (`[]`, i.e.
|
|
4122
|
+
* "treat every observed Actions run as required") ships when the
|
|
4123
|
+
* consumer omits the option.
|
|
4124
|
+
*/
|
|
4125
|
+
interface ResolvedPrReviewCiVerification {
|
|
4126
|
+
readonly requiredWorkflows: ReadonlyArray<string>;
|
|
4127
|
+
}
|
|
3973
4128
|
/**
|
|
3974
4129
|
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
3975
4130
|
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
@@ -3993,6 +4148,9 @@ declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedP
|
|
|
3993
4148
|
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
3994
4149
|
* such an entry would either silently match nothing or match every
|
|
3995
4150
|
* path, both of which are almost certainly a typo.
|
|
4151
|
+
* - `requiredWorkflows` entries that are empty or whitespace-only — a
|
|
4152
|
+
* blank workflow name can never match an Actions-run `name`, so the
|
|
4153
|
+
* intended gate would silently never fire.
|
|
3996
4154
|
*/
|
|
3997
4155
|
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3998
4156
|
|
|
@@ -4863,6 +5021,14 @@ declare const DEFAULT_SOURCES_THRESHOLDS: ScopeGateThresholds;
|
|
|
4863
5021
|
* penalties, and effective dates. Max observed 7 ACs; cap:
|
|
4864
5022
|
* `mediumMax: 10` on the AC axis (max observed + 3 headroom);
|
|
4865
5023
|
* sources unchanged.
|
|
5024
|
+
* - `standards:research` — single standard-version research notes
|
|
5025
|
+
* enumerate one cohesive deliverable across per-section ACs
|
|
5026
|
+
* (candidate encodings, reconciliation, storage/query analysis,
|
|
5027
|
+
* citations, recommendation). Sibling of `regulatory:research`
|
|
5028
|
+
* with the same content-spec note shape. Max observed 7 ACs
|
|
5029
|
+
* (`codedrifters/openhi-planning`#5994); cap: `mediumMax: 10` on
|
|
5030
|
+
* the AC axis (max observed + 3 headroom, matching the
|
|
5031
|
+
* `regulatory:research` sibling); sources unchanged.
|
|
4866
5032
|
* - `software:map` — capability-mapping output is a single cohesive
|
|
4867
5033
|
* matrix file whose ACs enumerate per-row/per-column requirements
|
|
4868
5034
|
* and whose Sources block typically cross-references the entire
|
|
@@ -12824,4 +12990,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
12824
12990
|
*/
|
|
12825
12991
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
12826
12992
|
|
|
12827
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, 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, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, 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, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementCategoryDirsConfig, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, 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 };
|
|
12993
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, 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, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, 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, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementCategoryDirsConfig, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, 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 };
|