@codedrifters/configulator 0.0.349 → 0.0.351
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 +107 -15
- package/lib/index.d.ts +107 -15
- package/lib/index.js +237 -11
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +237 -11
- package/lib/index.mjs.map +1 -1
- package/package.json +6 -6
package/lib/index.d.mts
CHANGED
|
@@ -1949,6 +1949,69 @@ interface PrReviewAutoMergeConfig {
|
|
|
1949
1949
|
*/
|
|
1950
1950
|
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
1951
1951
|
}
|
|
1952
|
+
/**
|
|
1953
|
+
* CI-verification half of the PR review policy.
|
|
1954
|
+
*
|
|
1955
|
+
* The reviewer confirms CI before enabling auto-merge by reading the
|
|
1956
|
+
* GitHub **check-runs** rollup (`gh pr checks` /
|
|
1957
|
+
* `statusCheckRollup`) — the canonical source GitHub itself uses for
|
|
1958
|
+
* branch protection. That read covers every check context (Actions,
|
|
1959
|
+
* third-party CI, GitHub Apps, commit statuses), so it stays the
|
|
1960
|
+
* primary path for every consumer.
|
|
1961
|
+
*
|
|
1962
|
+
* The check-runs endpoint returns HTTP 403 `Resource not accessible
|
|
1963
|
+
* by personal access token` when the reviewer authenticates with a
|
|
1964
|
+
* **fine-grained PAT** — GitHub exposes no `Checks` permission for
|
|
1965
|
+
* fine-grained tokens (it is GitHub-App-only), so such a consumer
|
|
1966
|
+
* cannot grant its way out of the 403. On that specific failure the
|
|
1967
|
+
* reviewer falls back to the **Actions runs API**
|
|
1968
|
+
* (`GET /repos/{owner}/{repo}/actions/runs?head_sha=...`), which a
|
|
1969
|
+
* fine-grained PAT with `Actions: Read-only` *can* read. The fallback
|
|
1970
|
+
* only sees GitHub Actions runs, so it needs to know which workflows
|
|
1971
|
+
* to treat as required — that is what `requiredWorkflows` configures.
|
|
1972
|
+
*
|
|
1973
|
+
* GitHub-App and classic-PAT consumers never hit the 403 and never
|
|
1974
|
+
* use the fallback; for them this config is inert.
|
|
1975
|
+
*
|
|
1976
|
+
* @see PrReviewPolicyConfig
|
|
1977
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_REQUIRED_WORKFLOWS
|
|
1978
|
+
*/
|
|
1979
|
+
interface PrReviewCiVerificationConfig {
|
|
1980
|
+
/**
|
|
1981
|
+
* Workflow `name`s the reviewer treats as **required** when it has
|
|
1982
|
+
* to fall back to the Actions runs API (because the primary
|
|
1983
|
+
* check-runs read returned a fine-grained-PAT 403). Auto-merge is
|
|
1984
|
+
* gated on every listed workflow's latest run for the PR head SHA
|
|
1985
|
+
* concluding `success` (`skipped` / `neutral` are non-blocking;
|
|
1986
|
+
* `failure` / `cancelled` / `timed_out` / `action_required` block;
|
|
1987
|
+
* `in_progress` / `queued` / a missing run count as not-yet-green).
|
|
1988
|
+
*
|
|
1989
|
+
* Defaults to `[]`. An empty list means **every** workflow run
|
|
1990
|
+
* observed for the head SHA is treated as required — the
|
|
1991
|
+
* conservative zero-config default, so an unknown failing workflow
|
|
1992
|
+
* blocks rather than slips through. Set an explicit list to gate on
|
|
1993
|
+
* a known subset (e.g. ignore an optional or advisory workflow):
|
|
1994
|
+
*
|
|
1995
|
+
* ```typescript
|
|
1996
|
+
* agentConfig: {
|
|
1997
|
+
* prReviewPolicy: {
|
|
1998
|
+
* ciVerification: {
|
|
1999
|
+
* requiredWorkflows: ["build", "pull-request-lint"],
|
|
2000
|
+
* },
|
|
2001
|
+
* },
|
|
2002
|
+
* }
|
|
2003
|
+
* ```
|
|
2004
|
+
*
|
|
2005
|
+
* The list only governs the fallback path. The primary check-runs
|
|
2006
|
+
* read derives "required" from branch protection directly, so a
|
|
2007
|
+
* GitHub-App / classic-PAT consumer is unaffected by this list.
|
|
2008
|
+
* Pass non-empty entries only — empty / whitespace-only strings
|
|
2009
|
+
* fail synth.
|
|
2010
|
+
*
|
|
2011
|
+
* @default []
|
|
2012
|
+
*/
|
|
2013
|
+
readonly requiredWorkflows?: ReadonlyArray<string>;
|
|
2014
|
+
}
|
|
1952
2015
|
/**
|
|
1953
2016
|
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
1954
2017
|
*
|
|
@@ -1988,6 +2051,13 @@ interface PrReviewPolicyConfig {
|
|
|
1988
2051
|
* size rule.
|
|
1989
2052
|
*/
|
|
1990
2053
|
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
2054
|
+
/**
|
|
2055
|
+
* CI-verification half of the policy. Exposes `requiredWorkflows`,
|
|
2056
|
+
* the workflow names the reviewer gates on when it falls back to
|
|
2057
|
+
* the Actions runs API because the primary check-runs read returned
|
|
2058
|
+
* a fine-grained-PAT 403.
|
|
2059
|
+
*/
|
|
2060
|
+
readonly ciVerification?: PrReviewCiVerificationConfig;
|
|
1991
2061
|
}
|
|
1992
2062
|
/*******************************************************************************
|
|
1993
2063
|
*
|
|
@@ -3280,10 +3350,11 @@ interface AgentConfigOptions {
|
|
|
3280
3350
|
readonly scopeGate?: ScopeGateConfig;
|
|
3281
3351
|
/**
|
|
3282
3352
|
* PR review policy configuration consumed by the `pr-review`
|
|
3283
|
-
* bundle.
|
|
3284
|
-
*
|
|
3285
|
-
*
|
|
3286
|
-
*
|
|
3353
|
+
* bundle. Exposes two knobs: a doc-only carve-out against the
|
|
3354
|
+
* `human-required.size` rule (rule #6 in the precedence walk) —
|
|
3355
|
+
* see `PrReviewAutoMergeConfig.pathsExemptFromSize` — and the
|
|
3356
|
+
* CI-verification fallback's required-workflow list — see
|
|
3357
|
+
* `PrReviewCiVerificationConfig.requiredWorkflows`.
|
|
3287
3358
|
*
|
|
3288
3359
|
* When the whole config is omitted, the bundle ships the carve-out
|
|
3289
3360
|
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
@@ -3292,9 +3363,14 @@ interface AgentConfigOptions {
|
|
|
3292
3363
|
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3293
3364
|
* carve-out entirely.
|
|
3294
3365
|
*
|
|
3366
|
+
* `ciVerification.requiredWorkflows` defaults to `[]` (treat every
|
|
3367
|
+
* observed Actions run for the head SHA as required); it only
|
|
3368
|
+
* affects the Actions-runs fallback the reviewer uses when the
|
|
3369
|
+
* primary check-runs read returns a fine-grained-PAT 403.
|
|
3370
|
+
*
|
|
3295
3371
|
* Malformed configs — empty / whitespace-only entries in
|
|
3296
|
-
* `pathsExemptFromSize` — fail the build at
|
|
3297
|
-
* `validatePrReviewPolicyConfig`.
|
|
3372
|
+
* `pathsExemptFromSize` or `requiredWorkflows` — fail the build at
|
|
3373
|
+
* synth time via `validatePrReviewPolicyConfig`.
|
|
3298
3374
|
*
|
|
3299
3375
|
* @see PrReviewPolicyConfig
|
|
3300
3376
|
* @see PrReviewAutoMergeConfig
|
|
@@ -3953,13 +4029,16 @@ declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
|
3953
4029
|
* Fully-resolved PR review policy. Every field is defaulted so
|
|
3954
4030
|
* downstream renderers can reason about a single canonical shape.
|
|
3955
4031
|
*
|
|
3956
|
-
*
|
|
3957
|
-
* against the size threshold (`autoMerge.pathsExemptFromSize`)
|
|
3958
|
-
*
|
|
3959
|
-
*
|
|
4032
|
+
* Two sub-rules are configurable today: the doc-only carve-out
|
|
4033
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`) and
|
|
4034
|
+
* the CI-verification fallback's required-workflow list
|
|
4035
|
+
* (`ciVerification.requiredWorkflows`). Additional knobs for other
|
|
4036
|
+
* rules in the policy may be added in future versions of
|
|
4037
|
+
* `PrReviewPolicyConfig`.
|
|
3960
4038
|
*/
|
|
3961
4039
|
interface ResolvedPrReviewPolicy {
|
|
3962
4040
|
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
4041
|
+
readonly ciVerification: ResolvedPrReviewCiVerification;
|
|
3963
4042
|
}
|
|
3964
4043
|
/**
|
|
3965
4044
|
* Fully-resolved `auto-merge` half of the policy.
|
|
@@ -3970,6 +4049,16 @@ interface ResolvedPrReviewPolicy {
|
|
|
3970
4049
|
interface ResolvedPrReviewAutoMerge {
|
|
3971
4050
|
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
3972
4051
|
}
|
|
4052
|
+
/**
|
|
4053
|
+
* Fully-resolved `ci-verification` half of the policy.
|
|
4054
|
+
*
|
|
4055
|
+
* `requiredWorkflows` is always populated — the default (`[]`, i.e.
|
|
4056
|
+
* "treat every observed Actions run as required") ships when the
|
|
4057
|
+
* consumer omits the option.
|
|
4058
|
+
*/
|
|
4059
|
+
interface ResolvedPrReviewCiVerification {
|
|
4060
|
+
readonly requiredWorkflows: ReadonlyArray<string>;
|
|
4061
|
+
}
|
|
3973
4062
|
/**
|
|
3974
4063
|
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
3975
4064
|
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
@@ -3993,6 +4082,9 @@ declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedP
|
|
|
3993
4082
|
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
3994
4083
|
* such an entry would either silently match nothing or match every
|
|
3995
4084
|
* path, both of which are almost certainly a typo.
|
|
4085
|
+
* - `requiredWorkflows` entries that are empty or whitespace-only — a
|
|
4086
|
+
* blank workflow name can never match an Actions-run `name`, so the
|
|
4087
|
+
* intended gate would silently never fire.
|
|
3996
4088
|
*/
|
|
3997
4089
|
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3998
4090
|
|
|
@@ -10289,7 +10381,7 @@ declare const VERSION: {
|
|
|
10289
10381
|
*
|
|
10290
10382
|
* CLI and lib are versioned separately, so this is the lib version.
|
|
10291
10383
|
*/
|
|
10292
|
-
readonly AWS_CDK_LIB_VERSION: "2.
|
|
10384
|
+
readonly AWS_CDK_LIB_VERSION: "2.259.0";
|
|
10293
10385
|
/**
|
|
10294
10386
|
* Version of the AWS Constructs library to use.
|
|
10295
10387
|
*/
|
|
@@ -10306,11 +10398,11 @@ declare const VERSION: {
|
|
|
10306
10398
|
/**
|
|
10307
10399
|
* Version of PNPM to use in workflows at github actions.
|
|
10308
10400
|
*/
|
|
10309
|
-
readonly PNPM_VERSION: "11.
|
|
10401
|
+
readonly PNPM_VERSION: "11.6.0";
|
|
10310
10402
|
/**
|
|
10311
10403
|
* Version of Projen to use.
|
|
10312
10404
|
*/
|
|
10313
|
-
readonly PROJEN_VERSION: "0.99.
|
|
10405
|
+
readonly PROJEN_VERSION: "0.99.74";
|
|
10314
10406
|
/**
|
|
10315
10407
|
* Version of `actions/setup-node` to use in GitHub workflows.
|
|
10316
10408
|
* Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).
|
|
@@ -10320,7 +10412,7 @@ declare const VERSION: {
|
|
|
10320
10412
|
* Version of sharp to pin for StarlightProject (required peer for
|
|
10321
10413
|
* Starlight's image optimization pipeline).
|
|
10322
10414
|
*/
|
|
10323
|
-
readonly SHARP_VERSION: "0.35.
|
|
10415
|
+
readonly SHARP_VERSION: "0.35.1";
|
|
10324
10416
|
/**
|
|
10325
10417
|
* Version of `@astrojs/starlight` to pin for StarlightProject scaffolding.
|
|
10326
10418
|
*/
|
|
@@ -12824,4 +12916,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
12824
12916
|
*/
|
|
12825
12917
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
12826
12918
|
|
|
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 };
|
|
12919
|
+
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 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 };
|
package/lib/index.d.ts
CHANGED
|
@@ -1998,6 +1998,69 @@ interface PrReviewAutoMergeConfig {
|
|
|
1998
1998
|
*/
|
|
1999
1999
|
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
2000
2000
|
}
|
|
2001
|
+
/**
|
|
2002
|
+
* CI-verification half of the PR review policy.
|
|
2003
|
+
*
|
|
2004
|
+
* The reviewer confirms CI before enabling auto-merge by reading the
|
|
2005
|
+
* GitHub **check-runs** rollup (`gh pr checks` /
|
|
2006
|
+
* `statusCheckRollup`) — the canonical source GitHub itself uses for
|
|
2007
|
+
* branch protection. That read covers every check context (Actions,
|
|
2008
|
+
* third-party CI, GitHub Apps, commit statuses), so it stays the
|
|
2009
|
+
* primary path for every consumer.
|
|
2010
|
+
*
|
|
2011
|
+
* The check-runs endpoint returns HTTP 403 `Resource not accessible
|
|
2012
|
+
* by personal access token` when the reviewer authenticates with a
|
|
2013
|
+
* **fine-grained PAT** — GitHub exposes no `Checks` permission for
|
|
2014
|
+
* fine-grained tokens (it is GitHub-App-only), so such a consumer
|
|
2015
|
+
* cannot grant its way out of the 403. On that specific failure the
|
|
2016
|
+
* reviewer falls back to the **Actions runs API**
|
|
2017
|
+
* (`GET /repos/{owner}/{repo}/actions/runs?head_sha=...`), which a
|
|
2018
|
+
* fine-grained PAT with `Actions: Read-only` *can* read. The fallback
|
|
2019
|
+
* only sees GitHub Actions runs, so it needs to know which workflows
|
|
2020
|
+
* to treat as required — that is what `requiredWorkflows` configures.
|
|
2021
|
+
*
|
|
2022
|
+
* GitHub-App and classic-PAT consumers never hit the 403 and never
|
|
2023
|
+
* use the fallback; for them this config is inert.
|
|
2024
|
+
*
|
|
2025
|
+
* @see PrReviewPolicyConfig
|
|
2026
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_REQUIRED_WORKFLOWS
|
|
2027
|
+
*/
|
|
2028
|
+
interface PrReviewCiVerificationConfig {
|
|
2029
|
+
/**
|
|
2030
|
+
* Workflow `name`s the reviewer treats as **required** when it has
|
|
2031
|
+
* to fall back to the Actions runs API (because the primary
|
|
2032
|
+
* check-runs read returned a fine-grained-PAT 403). Auto-merge is
|
|
2033
|
+
* gated on every listed workflow's latest run for the PR head SHA
|
|
2034
|
+
* concluding `success` (`skipped` / `neutral` are non-blocking;
|
|
2035
|
+
* `failure` / `cancelled` / `timed_out` / `action_required` block;
|
|
2036
|
+
* `in_progress` / `queued` / a missing run count as not-yet-green).
|
|
2037
|
+
*
|
|
2038
|
+
* Defaults to `[]`. An empty list means **every** workflow run
|
|
2039
|
+
* observed for the head SHA is treated as required — the
|
|
2040
|
+
* conservative zero-config default, so an unknown failing workflow
|
|
2041
|
+
* blocks rather than slips through. Set an explicit list to gate on
|
|
2042
|
+
* a known subset (e.g. ignore an optional or advisory workflow):
|
|
2043
|
+
*
|
|
2044
|
+
* ```typescript
|
|
2045
|
+
* agentConfig: {
|
|
2046
|
+
* prReviewPolicy: {
|
|
2047
|
+
* ciVerification: {
|
|
2048
|
+
* requiredWorkflows: ["build", "pull-request-lint"],
|
|
2049
|
+
* },
|
|
2050
|
+
* },
|
|
2051
|
+
* }
|
|
2052
|
+
* ```
|
|
2053
|
+
*
|
|
2054
|
+
* The list only governs the fallback path. The primary check-runs
|
|
2055
|
+
* read derives "required" from branch protection directly, so a
|
|
2056
|
+
* GitHub-App / classic-PAT consumer is unaffected by this list.
|
|
2057
|
+
* Pass non-empty entries only — empty / whitespace-only strings
|
|
2058
|
+
* fail synth.
|
|
2059
|
+
*
|
|
2060
|
+
* @default []
|
|
2061
|
+
*/
|
|
2062
|
+
readonly requiredWorkflows?: ReadonlyArray<string>;
|
|
2063
|
+
}
|
|
2001
2064
|
/**
|
|
2002
2065
|
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
2003
2066
|
*
|
|
@@ -2037,6 +2100,13 @@ interface PrReviewPolicyConfig {
|
|
|
2037
2100
|
* size rule.
|
|
2038
2101
|
*/
|
|
2039
2102
|
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
2103
|
+
/**
|
|
2104
|
+
* CI-verification half of the policy. Exposes `requiredWorkflows`,
|
|
2105
|
+
* the workflow names the reviewer gates on when it falls back to
|
|
2106
|
+
* the Actions runs API because the primary check-runs read returned
|
|
2107
|
+
* a fine-grained-PAT 403.
|
|
2108
|
+
*/
|
|
2109
|
+
readonly ciVerification?: PrReviewCiVerificationConfig;
|
|
2040
2110
|
}
|
|
2041
2111
|
/*******************************************************************************
|
|
2042
2112
|
*
|
|
@@ -3329,10 +3399,11 @@ interface AgentConfigOptions {
|
|
|
3329
3399
|
readonly scopeGate?: ScopeGateConfig;
|
|
3330
3400
|
/**
|
|
3331
3401
|
* PR review policy configuration consumed by the `pr-review`
|
|
3332
|
-
* bundle.
|
|
3333
|
-
*
|
|
3334
|
-
*
|
|
3335
|
-
*
|
|
3402
|
+
* bundle. Exposes two knobs: a doc-only carve-out against the
|
|
3403
|
+
* `human-required.size` rule (rule #6 in the precedence walk) —
|
|
3404
|
+
* see `PrReviewAutoMergeConfig.pathsExemptFromSize` — and the
|
|
3405
|
+
* CI-verification fallback's required-workflow list — see
|
|
3406
|
+
* `PrReviewCiVerificationConfig.requiredWorkflows`.
|
|
3336
3407
|
*
|
|
3337
3408
|
* When the whole config is omitted, the bundle ships the carve-out
|
|
3338
3409
|
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
@@ -3341,9 +3412,14 @@ interface AgentConfigOptions {
|
|
|
3341
3412
|
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3342
3413
|
* carve-out entirely.
|
|
3343
3414
|
*
|
|
3415
|
+
* `ciVerification.requiredWorkflows` defaults to `[]` (treat every
|
|
3416
|
+
* observed Actions run for the head SHA as required); it only
|
|
3417
|
+
* affects the Actions-runs fallback the reviewer uses when the
|
|
3418
|
+
* primary check-runs read returns a fine-grained-PAT 403.
|
|
3419
|
+
*
|
|
3344
3420
|
* Malformed configs — empty / whitespace-only entries in
|
|
3345
|
-
* `pathsExemptFromSize` — fail the build at
|
|
3346
|
-
* `validatePrReviewPolicyConfig`.
|
|
3421
|
+
* `pathsExemptFromSize` or `requiredWorkflows` — fail the build at
|
|
3422
|
+
* synth time via `validatePrReviewPolicyConfig`.
|
|
3347
3423
|
*
|
|
3348
3424
|
* @see PrReviewPolicyConfig
|
|
3349
3425
|
* @see PrReviewAutoMergeConfig
|
|
@@ -4002,13 +4078,16 @@ declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
|
4002
4078
|
* Fully-resolved PR review policy. Every field is defaulted so
|
|
4003
4079
|
* downstream renderers can reason about a single canonical shape.
|
|
4004
4080
|
*
|
|
4005
|
-
*
|
|
4006
|
-
* against the size threshold (`autoMerge.pathsExemptFromSize`)
|
|
4007
|
-
*
|
|
4008
|
-
*
|
|
4081
|
+
* Two sub-rules are configurable today: the doc-only carve-out
|
|
4082
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`) and
|
|
4083
|
+
* the CI-verification fallback's required-workflow list
|
|
4084
|
+
* (`ciVerification.requiredWorkflows`). Additional knobs for other
|
|
4085
|
+
* rules in the policy may be added in future versions of
|
|
4086
|
+
* `PrReviewPolicyConfig`.
|
|
4009
4087
|
*/
|
|
4010
4088
|
interface ResolvedPrReviewPolicy {
|
|
4011
4089
|
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
4090
|
+
readonly ciVerification: ResolvedPrReviewCiVerification;
|
|
4012
4091
|
}
|
|
4013
4092
|
/**
|
|
4014
4093
|
* Fully-resolved `auto-merge` half of the policy.
|
|
@@ -4019,6 +4098,16 @@ interface ResolvedPrReviewPolicy {
|
|
|
4019
4098
|
interface ResolvedPrReviewAutoMerge {
|
|
4020
4099
|
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
4021
4100
|
}
|
|
4101
|
+
/**
|
|
4102
|
+
* Fully-resolved `ci-verification` half of the policy.
|
|
4103
|
+
*
|
|
4104
|
+
* `requiredWorkflows` is always populated — the default (`[]`, i.e.
|
|
4105
|
+
* "treat every observed Actions run as required") ships when the
|
|
4106
|
+
* consumer omits the option.
|
|
4107
|
+
*/
|
|
4108
|
+
interface ResolvedPrReviewCiVerification {
|
|
4109
|
+
readonly requiredWorkflows: ReadonlyArray<string>;
|
|
4110
|
+
}
|
|
4022
4111
|
/**
|
|
4023
4112
|
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
4024
4113
|
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
@@ -4042,6 +4131,9 @@ declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedP
|
|
|
4042
4131
|
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
4043
4132
|
* such an entry would either silently match nothing or match every
|
|
4044
4133
|
* path, both of which are almost certainly a typo.
|
|
4134
|
+
* - `requiredWorkflows` entries that are empty or whitespace-only — a
|
|
4135
|
+
* blank workflow name can never match an Actions-run `name`, so the
|
|
4136
|
+
* intended gate would silently never fire.
|
|
4045
4137
|
*/
|
|
4046
4138
|
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
4047
4139
|
|
|
@@ -10338,7 +10430,7 @@ declare const VERSION: {
|
|
|
10338
10430
|
*
|
|
10339
10431
|
* CLI and lib are versioned separately, so this is the lib version.
|
|
10340
10432
|
*/
|
|
10341
|
-
readonly AWS_CDK_LIB_VERSION: "2.
|
|
10433
|
+
readonly AWS_CDK_LIB_VERSION: "2.259.0";
|
|
10342
10434
|
/**
|
|
10343
10435
|
* Version of the AWS Constructs library to use.
|
|
10344
10436
|
*/
|
|
@@ -10355,11 +10447,11 @@ declare const VERSION: {
|
|
|
10355
10447
|
/**
|
|
10356
10448
|
* Version of PNPM to use in workflows at github actions.
|
|
10357
10449
|
*/
|
|
10358
|
-
readonly PNPM_VERSION: "11.
|
|
10450
|
+
readonly PNPM_VERSION: "11.6.0";
|
|
10359
10451
|
/**
|
|
10360
10452
|
* Version of Projen to use.
|
|
10361
10453
|
*/
|
|
10362
|
-
readonly PROJEN_VERSION: "0.99.
|
|
10454
|
+
readonly PROJEN_VERSION: "0.99.74";
|
|
10363
10455
|
/**
|
|
10364
10456
|
* Version of `actions/setup-node` to use in GitHub workflows.
|
|
10365
10457
|
* Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).
|
|
@@ -10369,7 +10461,7 @@ declare const VERSION: {
|
|
|
10369
10461
|
* Version of sharp to pin for StarlightProject (required peer for
|
|
10370
10462
|
* Starlight's image optimization pipeline).
|
|
10371
10463
|
*/
|
|
10372
|
-
readonly SHARP_VERSION: "0.35.
|
|
10464
|
+
readonly SHARP_VERSION: "0.35.1";
|
|
10373
10465
|
/**
|
|
10374
10466
|
* Version of `@astrojs/starlight` to pin for StarlightProject scaffolding.
|
|
10375
10467
|
*/
|
|
@@ -12874,4 +12966,4 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
12874
12966
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
12875
12967
|
|
|
12876
12968
|
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 };
|
|
12969
|
+
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, 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 };
|