@codedrifters/configulator 0.0.300 → 0.0.302

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.ts CHANGED
@@ -2068,6 +2068,106 @@ interface UnblockDependentsConfig {
2068
2068
  */
2069
2069
  readonly partialUnblockCommentTemplate?: string;
2070
2070
  }
2071
+ /*******************************************************************************
2072
+ *
2073
+ * Temporal Framing Config
2074
+ *
2075
+ ******************************************************************************/
2076
+ /**
2077
+ * Temporal-framing convention consumed by the `base` bundle and every
2078
+ * analyst bundle that writes profile / research content.
2079
+ *
2080
+ * The convention addresses a specific failure mode: present-tense
2081
+ * framing of time-sensitive facts (ownership, leadership tenure,
2082
+ * regulatory status, litigation, dated metrics) silently goes stale,
2083
+ * and downstream refresh passes have no mechanical signal for which
2084
+ * claims to re-verify. The fix is to require an inline
2085
+ * `as of [YYYY-MM-DD]` or `as of [Month YYYY]` qualifier on the first
2086
+ * occurrence of every time-sensitive claim.
2087
+ *
2088
+ * Every field is optional. When the whole config is absent the
2089
+ * convention ships **enabled** with profile / research path globs and
2090
+ * a five-category cadence table covering ownership, leadership,
2091
+ * regulatory status, litigation, and dated metrics. The optional
2092
+ * `check-temporal-framing.sh` lint is **off** by default — consumers
2093
+ * opt in via `emitChecker: true`.
2094
+ *
2095
+ * Malformed configs — `paths` containing empty entries, `cadences`
2096
+ * containing non-positive integers — fail the build at synth time via
2097
+ * `validateTemporalFramingConfig`.
2098
+ *
2099
+ * @see ./bundles/temporal-framing.ts#resolveTemporalFraming
2100
+ * @see ./bundles/temporal-framing.ts#validateTemporalFramingConfig
2101
+ * @see ./bundles/temporal-framing.ts#renderTemporalFramingRuleContent
2102
+ */
2103
+ interface TemporalFramingConfig {
2104
+ /**
2105
+ * Master switch for the temporal-framing convention. When `false`,
2106
+ * the base bundle renders a short stub stating that the project
2107
+ * does not enforce explicit `as of` qualifiers; analyst-bundle
2108
+ * authoring phases skip the per-workflow temporal-framing
2109
+ * injection.
2110
+ *
2111
+ * Defaults to `true` — the convention is on by default.
2112
+ */
2113
+ readonly enabled?: boolean;
2114
+ /**
2115
+ * Path globs the rule applies to. Every agent that writes Markdown
2116
+ * matching any of these patterns is expected to add `as of`
2117
+ * qualifiers on first-occurrence time-sensitive claims.
2118
+ *
2119
+ * Defaults to the canonical profile / research subtrees of a
2120
+ * Starlight docs site (`docs/src/content/docs/profiles/**`,
2121
+ * `docs/src/content/docs/industry-research/**`, etc.). Consumers
2122
+ * with a different content layout may replace the list entirely.
2123
+ *
2124
+ * Note that meeting notes, requirement documents, and the
2125
+ * project-context page are deliberately out of scope — their own
2126
+ * dating conventions (file-name date prefix, version frontmatter,
2127
+ * living snapshot under direct human review) already anchor the
2128
+ * temporal meaning of their content.
2129
+ */
2130
+ readonly paths?: ReadonlyArray<string>;
2131
+ /**
2132
+ * Per-category refresh cadences in days. The five recognized
2133
+ * categories cover the time-sensitive claim patterns surfaced by
2134
+ * the May 2026 sampled drift audit. Each category carries its own
2135
+ * cadence so a refresh agent grepping `as of ` can apply the right
2136
+ * staleness threshold to the right claim.
2137
+ *
2138
+ * Defaults:
2139
+ *
2140
+ * - `ownership` — 180 days
2141
+ * - `company-leadership` — 90 days
2142
+ * - `regulatory-status` — 30 days
2143
+ * - `litigation` — 30 days
2144
+ * - `dated-metrics` — 180 days
2145
+ *
2146
+ * Consumers may override any subset; unspecified categories fall
2147
+ * through to the defaults above. Values must be positive integers.
2148
+ */
2149
+ readonly cadences?: Partial<{
2150
+ readonly ownership: number;
2151
+ readonly "company-leadership": number;
2152
+ readonly "regulatory-status": number;
2153
+ readonly litigation: number;
2154
+ readonly "dated-metrics": number;
2155
+ }>;
2156
+ /**
2157
+ * When `true`, configulator emits a
2158
+ * `.claude/procedures/check-temporal-framing.sh` lint helper that
2159
+ * fails non-zero on any covered file containing present-tense
2160
+ * framing of a time-sensitive category without an `as of `
2161
+ * qualifier anywhere in the file.
2162
+ *
2163
+ * Disabled by default — consumers opt in when they want a hard
2164
+ * pre-commit or CI gate. The rule body itself renders
2165
+ * unconditionally regardless of this flag.
2166
+ *
2167
+ * Defaults to `false`.
2168
+ */
2169
+ readonly emitChecker?: boolean;
2170
+ }
2071
2171
  /*******************************************************************************
2072
2172
  *
2073
2173
  * Progress Files Config
@@ -3136,6 +3236,31 @@ interface AgentConfigOptions {
3136
3236
  * @see ./bundles/unblock-dependents.ts#validateUnblockDependentsConfig
3137
3237
  */
3138
3238
  readonly unblockDependents?: UnblockDependentsConfig;
3239
+ /**
3240
+ * Temporal-framing convention consumed by the `base` bundle and
3241
+ * every analyst bundle that writes profile / research content.
3242
+ * Requires every time-sensitive factual claim (ownership, leadership
3243
+ * tenure, regulatory status, litigation, dated metrics) to carry an
3244
+ * inline `as of [YYYY-MM-DD]` or `as of [Month YYYY]` qualifier so
3245
+ * refresh agents have a mechanical signal for which claims to
3246
+ * re-verify.
3247
+ *
3248
+ * When the whole config is omitted, the convention ships **enabled**
3249
+ * with default profile / research path globs and a five-category
3250
+ * cadence table (90d company-leadership, 30d regulatory-status, 30d
3251
+ * litigation, 180d ownership, 180d dated-metrics). The optional
3252
+ * `.claude/procedures/check-temporal-framing.sh` lint helper is
3253
+ * **off** by default — flip `emitChecker: true` to opt in.
3254
+ *
3255
+ * Malformed configs — `paths` containing empty entries, `cadences`
3256
+ * containing non-positive integers — fail the build at synth time
3257
+ * via `validateTemporalFramingConfig`.
3258
+ *
3259
+ * @see TemporalFramingConfig
3260
+ * @see ./bundles/temporal-framing.ts#resolveTemporalFraming
3261
+ * @see ./bundles/temporal-framing.ts#validateTemporalFramingConfig
3262
+ */
3263
+ readonly temporalFraming?: TemporalFramingConfig;
3139
3264
  /**
3140
3265
  * Progress-file convention consumed by the `base` bundle and every
3141
3266
  * phased-agent bundle (bcm-writer, research-pipeline, etc.). Every
@@ -5805,6 +5930,136 @@ declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
5805
5930
  */
5806
5931
  declare function renderStubIndexConventionRuleContent(): string;
5807
5932
 
5933
+ /**
5934
+ * Default master switch for the temporal-framing convention. When no
5935
+ * config is supplied the convention ships **enabled** so every
5936
+ * configulator-consuming repo's analyst agents apply the
5937
+ * "as of [date]" qualifier rule.
5938
+ *
5939
+ * @see TemporalFramingConfig
5940
+ */
5941
+ declare const DEFAULT_TEMPORAL_FRAMING_ENABLED = true;
5942
+ /**
5943
+ * Default path globs the rule applies to — every Markdown file under
5944
+ * the profile / research subtrees of a repo's Starlight docs site.
5945
+ * Consumers may override the list when their content layout differs.
5946
+ *
5947
+ * Out-of-scope locations (meeting notes, requirements, the
5948
+ * project-context page) are excluded by design: their own dating
5949
+ * conventions (file-name date prefix, version frontmatter, living
5950
+ * snapshot under direct human review) already anchor the temporal
5951
+ * meaning of their content.
5952
+ *
5953
+ * @see TemporalFramingConfig
5954
+ */
5955
+ declare const DEFAULT_TEMPORAL_FRAMING_PATHS: ReadonlyArray<string>;
5956
+ /**
5957
+ * The five canonical time-sensitive claim categories surfaced by the
5958
+ * May 2026 sampled drift audit. The category names are shipped as the
5959
+ * key set for `TemporalFramingConfig.cadences` so consumers can dial
5960
+ * the per-category refresh cadence without inventing their own
5961
+ * category names.
5962
+ */
5963
+ declare const TEMPORAL_FRAMING_CATEGORY_VALUES: readonly ["ownership", "company-leadership", "regulatory-status", "litigation", "dated-metrics"];
5964
+ type TemporalFramingCategory = (typeof TEMPORAL_FRAMING_CATEGORY_VALUES)[number];
5965
+ /**
5966
+ * Default per-category refresh cadences (in days). Fast-decay claims
5967
+ * (regulatory status, litigation) carry a 30-day cadence because a
5968
+ * single press release can invalidate them between scheduled refresh
5969
+ * passes. Slow-decay claims (ownership, dated metrics from press
5970
+ * releases or filings) carry a 180-day cadence — material changes
5971
+ * still happen but rarely outpace a half-yearly refresh. Leadership
5972
+ * tenure sits in the middle at 90 days.
5973
+ *
5974
+ * Consumers may override any subset of categories via
5975
+ * `TemporalFramingConfig.cadences`; unspecified entries fall through
5976
+ * to these defaults.
5977
+ */
5978
+ declare const DEFAULT_TEMPORAL_FRAMING_CADENCES: {
5979
+ readonly [K in TemporalFramingCategory]: number;
5980
+ };
5981
+ /**
5982
+ * Default for whether the convention emits the
5983
+ * `.claude/procedures/check-temporal-framing.sh` lint script to disk.
5984
+ * Disabled by default — consumers opt in when they want a hard
5985
+ * pre-commit or CI gate. The rule body itself ships unconditionally
5986
+ * regardless of the lint script.
5987
+ *
5988
+ * @see TemporalFramingConfig
5989
+ */
5990
+ declare const DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER = false;
5991
+ /**
5992
+ * Fully-resolved temporal-framing settings. Every field is defaulted
5993
+ * so downstream renderers can reason about a single canonical shape.
5994
+ */
5995
+ interface ResolvedTemporalFraming {
5996
+ readonly enabled: boolean;
5997
+ readonly paths: ReadonlyArray<string>;
5998
+ readonly cadences: {
5999
+ readonly [K in TemporalFramingCategory]: number;
6000
+ };
6001
+ readonly emitChecker: boolean;
6002
+ }
6003
+ /**
6004
+ * Resolve a (possibly absent) `TemporalFramingConfig` into a canonical
6005
+ * `ResolvedTemporalFraming` with every field filled in. Unset fields
6006
+ * cascade from their documented defaults.
6007
+ *
6008
+ * Malformed configs throw a descriptive `Error`:
6009
+ *
6010
+ * - `paths` containing empty / whitespace-only entries.
6011
+ * - `cadences` containing non-integer or non-positive values.
6012
+ */
6013
+ declare function resolveTemporalFraming(config?: TemporalFramingConfig): ResolvedTemporalFraming;
6014
+ /**
6015
+ * Synth-time validation hook. Throws a descriptive `Error` when the
6016
+ * supplied `TemporalFramingConfig` is malformed. Called by
6017
+ * `AgentConfig.preSynthesize` before any rendering so a misconfigured
6018
+ * convention fails the build instead of silently shipping broken
6019
+ * paths or cadences. Returns the resolved config unchanged so callers
6020
+ * can write `const tf = validateTemporalFramingConfig(config)` in
6021
+ * one line.
6022
+ *
6023
+ * Malformed cases rejected here:
6024
+ *
6025
+ * - `paths` containing empty or whitespace-only entries.
6026
+ * - `cadences` containing non-integer or non-positive values.
6027
+ */
6028
+ declare function validateTemporalFramingConfig(config?: TemporalFramingConfig): ResolvedTemporalFraming;
6029
+ /**
6030
+ * Render the body for the `temporal-framing-convention` rule shipped
6031
+ * by the `base` bundle. The rule documents:
6032
+ *
6033
+ * - The "as of [date]" qualifier requirement on time-sensitive claims.
6034
+ * - The five canonical time-sensitive claim categories.
6035
+ * - Refresh-agent behaviour (grep for `as of `, re-verify against the
6036
+ * category-specific cadence).
6037
+ * - The scope of applicability (profile / research sections only).
6038
+ *
6039
+ * When the convention is disabled, the rule renders a short stub that
6040
+ * tells agents the project does not enforce explicit temporal
6041
+ * qualifiers and that staleness is caught by review alone.
6042
+ */
6043
+ declare function renderTemporalFramingRuleContent(tf: ResolvedTemporalFraming): string;
6044
+ /**
6045
+ * Render the `.claude/procedures/check-temporal-framing.sh` helper
6046
+ * script. Exported so `AgentConfig` can register it when the consumer
6047
+ * opts in via `emitChecker: true`.
6048
+ *
6049
+ * The script accepts the list of changed files as either:
6050
+ *
6051
+ * 1. Positional arguments (one file per arg).
6052
+ * 2. Newline-separated entries on stdin (when no args supplied) —
6053
+ * pipe `git diff --name-only` directly into it.
6054
+ *
6055
+ * It fails non-zero when any changed file matches a configured path
6056
+ * pattern and contains time-sensitive framing (present-tense forms of
6057
+ * the canonical category triggers) but lacks an `as of ` qualifier
6058
+ * anywhere in the file. The lint is intentionally coarse — file-level
6059
+ * not line-level — so the cost of running it on every PR stays low.
6060
+ */
6061
+ declare function renderTemporalFramingCheckerScript(tf: ResolvedTemporalFraming): string;
6062
+
5808
6063
  /**
5809
6064
  * Build the requirements-analyst bundle with the supplied resolved
5810
6065
  * paths.
@@ -8196,11 +8451,11 @@ declare const VERSION: {
8196
8451
  /**
8197
8452
  * Version of PNPM to use in workflows at github actions.
8198
8453
  */
8199
- readonly PNPM_VERSION: "11.0.9";
8454
+ readonly PNPM_VERSION: "11.1.0";
8200
8455
  /**
8201
8456
  * Version of Projen to use.
8202
8457
  */
8203
- readonly PROJEN_VERSION: "0.99.57";
8458
+ readonly PROJEN_VERSION: "0.99.60";
8204
8459
  /**
8205
8460
  * Version of `actions/setup-node` to use in GitHub workflows.
8206
8461
  * Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).
@@ -8222,7 +8477,7 @@ declare const VERSION: {
8222
8477
  /**
8223
8478
  * Version of @types/node to use across all packages (pnpm catalog).
8224
8479
  */
8225
- readonly TYPES_NODE_VERSION: "25.6.2";
8480
+ readonly TYPES_NODE_VERSION: "25.7.0";
8226
8481
  /**
8227
8482
  * What version of Vite to use (pnpm override). Pinned to 5.x so Vitest 4.x
8228
8483
  * can load config (Vite 6+/7+ are ESM-only; see issue #142). Remove override
@@ -10198,5 +10453,5 @@ declare function pinPnpmActionSetup(project: Project): void;
10198
10453
  */
10199
10454
  declare function pinSetupNodeVersion(project: Project): void;
10200
10455
 
10201
- 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_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_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_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, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TestRunner, TsDocCoverageKind, 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, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, 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, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, 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, renderStubIndexConventionRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
10202
- export type { 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, 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, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, 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, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
10456
+ 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_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_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, 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, 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, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, 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, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, 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, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
10457
+ export type { 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, 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, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, 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, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };