@codedrifters/configulator 0.0.301 → 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.mts +256 -1
- package/lib/index.d.ts +257 -2
- package/lib/index.js +563 -10
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +554 -10
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -2019,6 +2019,106 @@ interface UnblockDependentsConfig {
|
|
|
2019
2019
|
*/
|
|
2020
2020
|
readonly partialUnblockCommentTemplate?: string;
|
|
2021
2021
|
}
|
|
2022
|
+
/*******************************************************************************
|
|
2023
|
+
*
|
|
2024
|
+
* Temporal Framing Config
|
|
2025
|
+
*
|
|
2026
|
+
******************************************************************************/
|
|
2027
|
+
/**
|
|
2028
|
+
* Temporal-framing convention consumed by the `base` bundle and every
|
|
2029
|
+
* analyst bundle that writes profile / research content.
|
|
2030
|
+
*
|
|
2031
|
+
* The convention addresses a specific failure mode: present-tense
|
|
2032
|
+
* framing of time-sensitive facts (ownership, leadership tenure,
|
|
2033
|
+
* regulatory status, litigation, dated metrics) silently goes stale,
|
|
2034
|
+
* and downstream refresh passes have no mechanical signal for which
|
|
2035
|
+
* claims to re-verify. The fix is to require an inline
|
|
2036
|
+
* `as of [YYYY-MM-DD]` or `as of [Month YYYY]` qualifier on the first
|
|
2037
|
+
* occurrence of every time-sensitive claim.
|
|
2038
|
+
*
|
|
2039
|
+
* Every field is optional. When the whole config is absent the
|
|
2040
|
+
* convention ships **enabled** with profile / research path globs and
|
|
2041
|
+
* a five-category cadence table covering ownership, leadership,
|
|
2042
|
+
* regulatory status, litigation, and dated metrics. The optional
|
|
2043
|
+
* `check-temporal-framing.sh` lint is **off** by default — consumers
|
|
2044
|
+
* opt in via `emitChecker: true`.
|
|
2045
|
+
*
|
|
2046
|
+
* Malformed configs — `paths` containing empty entries, `cadences`
|
|
2047
|
+
* containing non-positive integers — fail the build at synth time via
|
|
2048
|
+
* `validateTemporalFramingConfig`.
|
|
2049
|
+
*
|
|
2050
|
+
* @see ./bundles/temporal-framing.ts#resolveTemporalFraming
|
|
2051
|
+
* @see ./bundles/temporal-framing.ts#validateTemporalFramingConfig
|
|
2052
|
+
* @see ./bundles/temporal-framing.ts#renderTemporalFramingRuleContent
|
|
2053
|
+
*/
|
|
2054
|
+
interface TemporalFramingConfig {
|
|
2055
|
+
/**
|
|
2056
|
+
* Master switch for the temporal-framing convention. When `false`,
|
|
2057
|
+
* the base bundle renders a short stub stating that the project
|
|
2058
|
+
* does not enforce explicit `as of` qualifiers; analyst-bundle
|
|
2059
|
+
* authoring phases skip the per-workflow temporal-framing
|
|
2060
|
+
* injection.
|
|
2061
|
+
*
|
|
2062
|
+
* Defaults to `true` — the convention is on by default.
|
|
2063
|
+
*/
|
|
2064
|
+
readonly enabled?: boolean;
|
|
2065
|
+
/**
|
|
2066
|
+
* Path globs the rule applies to. Every agent that writes Markdown
|
|
2067
|
+
* matching any of these patterns is expected to add `as of`
|
|
2068
|
+
* qualifiers on first-occurrence time-sensitive claims.
|
|
2069
|
+
*
|
|
2070
|
+
* Defaults to the canonical profile / research subtrees of a
|
|
2071
|
+
* Starlight docs site (`docs/src/content/docs/profiles/**`,
|
|
2072
|
+
* `docs/src/content/docs/industry-research/**`, etc.). Consumers
|
|
2073
|
+
* with a different content layout may replace the list entirely.
|
|
2074
|
+
*
|
|
2075
|
+
* Note that meeting notes, requirement documents, and the
|
|
2076
|
+
* project-context page are deliberately out of scope — their own
|
|
2077
|
+
* dating conventions (file-name date prefix, version frontmatter,
|
|
2078
|
+
* living snapshot under direct human review) already anchor the
|
|
2079
|
+
* temporal meaning of their content.
|
|
2080
|
+
*/
|
|
2081
|
+
readonly paths?: ReadonlyArray<string>;
|
|
2082
|
+
/**
|
|
2083
|
+
* Per-category refresh cadences in days. The five recognized
|
|
2084
|
+
* categories cover the time-sensitive claim patterns surfaced by
|
|
2085
|
+
* the May 2026 sampled drift audit. Each category carries its own
|
|
2086
|
+
* cadence so a refresh agent grepping `as of ` can apply the right
|
|
2087
|
+
* staleness threshold to the right claim.
|
|
2088
|
+
*
|
|
2089
|
+
* Defaults:
|
|
2090
|
+
*
|
|
2091
|
+
* - `ownership` — 180 days
|
|
2092
|
+
* - `company-leadership` — 90 days
|
|
2093
|
+
* - `regulatory-status` — 30 days
|
|
2094
|
+
* - `litigation` — 30 days
|
|
2095
|
+
* - `dated-metrics` — 180 days
|
|
2096
|
+
*
|
|
2097
|
+
* Consumers may override any subset; unspecified categories fall
|
|
2098
|
+
* through to the defaults above. Values must be positive integers.
|
|
2099
|
+
*/
|
|
2100
|
+
readonly cadences?: Partial<{
|
|
2101
|
+
readonly ownership: number;
|
|
2102
|
+
readonly "company-leadership": number;
|
|
2103
|
+
readonly "regulatory-status": number;
|
|
2104
|
+
readonly litigation: number;
|
|
2105
|
+
readonly "dated-metrics": number;
|
|
2106
|
+
}>;
|
|
2107
|
+
/**
|
|
2108
|
+
* When `true`, configulator emits a
|
|
2109
|
+
* `.claude/procedures/check-temporal-framing.sh` lint helper that
|
|
2110
|
+
* fails non-zero on any covered file containing present-tense
|
|
2111
|
+
* framing of a time-sensitive category without an `as of `
|
|
2112
|
+
* qualifier anywhere in the file.
|
|
2113
|
+
*
|
|
2114
|
+
* Disabled by default — consumers opt in when they want a hard
|
|
2115
|
+
* pre-commit or CI gate. The rule body itself renders
|
|
2116
|
+
* unconditionally regardless of this flag.
|
|
2117
|
+
*
|
|
2118
|
+
* Defaults to `false`.
|
|
2119
|
+
*/
|
|
2120
|
+
readonly emitChecker?: boolean;
|
|
2121
|
+
}
|
|
2022
2122
|
/*******************************************************************************
|
|
2023
2123
|
*
|
|
2024
2124
|
* Progress Files Config
|
|
@@ -3087,6 +3187,31 @@ interface AgentConfigOptions {
|
|
|
3087
3187
|
* @see ./bundles/unblock-dependents.ts#validateUnblockDependentsConfig
|
|
3088
3188
|
*/
|
|
3089
3189
|
readonly unblockDependents?: UnblockDependentsConfig;
|
|
3190
|
+
/**
|
|
3191
|
+
* Temporal-framing convention consumed by the `base` bundle and
|
|
3192
|
+
* every analyst bundle that writes profile / research content.
|
|
3193
|
+
* Requires every time-sensitive factual claim (ownership, leadership
|
|
3194
|
+
* tenure, regulatory status, litigation, dated metrics) to carry an
|
|
3195
|
+
* inline `as of [YYYY-MM-DD]` or `as of [Month YYYY]` qualifier so
|
|
3196
|
+
* refresh agents have a mechanical signal for which claims to
|
|
3197
|
+
* re-verify.
|
|
3198
|
+
*
|
|
3199
|
+
* When the whole config is omitted, the convention ships **enabled**
|
|
3200
|
+
* with default profile / research path globs and a five-category
|
|
3201
|
+
* cadence table (90d company-leadership, 30d regulatory-status, 30d
|
|
3202
|
+
* litigation, 180d ownership, 180d dated-metrics). The optional
|
|
3203
|
+
* `.claude/procedures/check-temporal-framing.sh` lint helper is
|
|
3204
|
+
* **off** by default — flip `emitChecker: true` to opt in.
|
|
3205
|
+
*
|
|
3206
|
+
* Malformed configs — `paths` containing empty entries, `cadences`
|
|
3207
|
+
* containing non-positive integers — fail the build at synth time
|
|
3208
|
+
* via `validateTemporalFramingConfig`.
|
|
3209
|
+
*
|
|
3210
|
+
* @see TemporalFramingConfig
|
|
3211
|
+
* @see ./bundles/temporal-framing.ts#resolveTemporalFraming
|
|
3212
|
+
* @see ./bundles/temporal-framing.ts#validateTemporalFramingConfig
|
|
3213
|
+
*/
|
|
3214
|
+
readonly temporalFraming?: TemporalFramingConfig;
|
|
3090
3215
|
/**
|
|
3091
3216
|
* Progress-file convention consumed by the `base` bundle and every
|
|
3092
3217
|
* phased-agent bundle (bcm-writer, research-pipeline, etc.). Every
|
|
@@ -5756,6 +5881,136 @@ declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
|
|
|
5756
5881
|
*/
|
|
5757
5882
|
declare function renderStubIndexConventionRuleContent(): string;
|
|
5758
5883
|
|
|
5884
|
+
/**
|
|
5885
|
+
* Default master switch for the temporal-framing convention. When no
|
|
5886
|
+
* config is supplied the convention ships **enabled** so every
|
|
5887
|
+
* configulator-consuming repo's analyst agents apply the
|
|
5888
|
+
* "as of [date]" qualifier rule.
|
|
5889
|
+
*
|
|
5890
|
+
* @see TemporalFramingConfig
|
|
5891
|
+
*/
|
|
5892
|
+
declare const DEFAULT_TEMPORAL_FRAMING_ENABLED = true;
|
|
5893
|
+
/**
|
|
5894
|
+
* Default path globs the rule applies to — every Markdown file under
|
|
5895
|
+
* the profile / research subtrees of a repo's Starlight docs site.
|
|
5896
|
+
* Consumers may override the list when their content layout differs.
|
|
5897
|
+
*
|
|
5898
|
+
* Out-of-scope locations (meeting notes, requirements, the
|
|
5899
|
+
* project-context page) are excluded by design: their own dating
|
|
5900
|
+
* conventions (file-name date prefix, version frontmatter, living
|
|
5901
|
+
* snapshot under direct human review) already anchor the temporal
|
|
5902
|
+
* meaning of their content.
|
|
5903
|
+
*
|
|
5904
|
+
* @see TemporalFramingConfig
|
|
5905
|
+
*/
|
|
5906
|
+
declare const DEFAULT_TEMPORAL_FRAMING_PATHS: ReadonlyArray<string>;
|
|
5907
|
+
/**
|
|
5908
|
+
* The five canonical time-sensitive claim categories surfaced by the
|
|
5909
|
+
* May 2026 sampled drift audit. The category names are shipped as the
|
|
5910
|
+
* key set for `TemporalFramingConfig.cadences` so consumers can dial
|
|
5911
|
+
* the per-category refresh cadence without inventing their own
|
|
5912
|
+
* category names.
|
|
5913
|
+
*/
|
|
5914
|
+
declare const TEMPORAL_FRAMING_CATEGORY_VALUES: readonly ["ownership", "company-leadership", "regulatory-status", "litigation", "dated-metrics"];
|
|
5915
|
+
type TemporalFramingCategory = (typeof TEMPORAL_FRAMING_CATEGORY_VALUES)[number];
|
|
5916
|
+
/**
|
|
5917
|
+
* Default per-category refresh cadences (in days). Fast-decay claims
|
|
5918
|
+
* (regulatory status, litigation) carry a 30-day cadence because a
|
|
5919
|
+
* single press release can invalidate them between scheduled refresh
|
|
5920
|
+
* passes. Slow-decay claims (ownership, dated metrics from press
|
|
5921
|
+
* releases or filings) carry a 180-day cadence — material changes
|
|
5922
|
+
* still happen but rarely outpace a half-yearly refresh. Leadership
|
|
5923
|
+
* tenure sits in the middle at 90 days.
|
|
5924
|
+
*
|
|
5925
|
+
* Consumers may override any subset of categories via
|
|
5926
|
+
* `TemporalFramingConfig.cadences`; unspecified entries fall through
|
|
5927
|
+
* to these defaults.
|
|
5928
|
+
*/
|
|
5929
|
+
declare const DEFAULT_TEMPORAL_FRAMING_CADENCES: {
|
|
5930
|
+
readonly [K in TemporalFramingCategory]: number;
|
|
5931
|
+
};
|
|
5932
|
+
/**
|
|
5933
|
+
* Default for whether the convention emits the
|
|
5934
|
+
* `.claude/procedures/check-temporal-framing.sh` lint script to disk.
|
|
5935
|
+
* Disabled by default — consumers opt in when they want a hard
|
|
5936
|
+
* pre-commit or CI gate. The rule body itself ships unconditionally
|
|
5937
|
+
* regardless of the lint script.
|
|
5938
|
+
*
|
|
5939
|
+
* @see TemporalFramingConfig
|
|
5940
|
+
*/
|
|
5941
|
+
declare const DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER = false;
|
|
5942
|
+
/**
|
|
5943
|
+
* Fully-resolved temporal-framing settings. Every field is defaulted
|
|
5944
|
+
* so downstream renderers can reason about a single canonical shape.
|
|
5945
|
+
*/
|
|
5946
|
+
interface ResolvedTemporalFraming {
|
|
5947
|
+
readonly enabled: boolean;
|
|
5948
|
+
readonly paths: ReadonlyArray<string>;
|
|
5949
|
+
readonly cadences: {
|
|
5950
|
+
readonly [K in TemporalFramingCategory]: number;
|
|
5951
|
+
};
|
|
5952
|
+
readonly emitChecker: boolean;
|
|
5953
|
+
}
|
|
5954
|
+
/**
|
|
5955
|
+
* Resolve a (possibly absent) `TemporalFramingConfig` into a canonical
|
|
5956
|
+
* `ResolvedTemporalFraming` with every field filled in. Unset fields
|
|
5957
|
+
* cascade from their documented defaults.
|
|
5958
|
+
*
|
|
5959
|
+
* Malformed configs throw a descriptive `Error`:
|
|
5960
|
+
*
|
|
5961
|
+
* - `paths` containing empty / whitespace-only entries.
|
|
5962
|
+
* - `cadences` containing non-integer or non-positive values.
|
|
5963
|
+
*/
|
|
5964
|
+
declare function resolveTemporalFraming(config?: TemporalFramingConfig): ResolvedTemporalFraming;
|
|
5965
|
+
/**
|
|
5966
|
+
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
5967
|
+
* supplied `TemporalFramingConfig` is malformed. Called by
|
|
5968
|
+
* `AgentConfig.preSynthesize` before any rendering so a misconfigured
|
|
5969
|
+
* convention fails the build instead of silently shipping broken
|
|
5970
|
+
* paths or cadences. Returns the resolved config unchanged so callers
|
|
5971
|
+
* can write `const tf = validateTemporalFramingConfig(config)` in
|
|
5972
|
+
* one line.
|
|
5973
|
+
*
|
|
5974
|
+
* Malformed cases rejected here:
|
|
5975
|
+
*
|
|
5976
|
+
* - `paths` containing empty or whitespace-only entries.
|
|
5977
|
+
* - `cadences` containing non-integer or non-positive values.
|
|
5978
|
+
*/
|
|
5979
|
+
declare function validateTemporalFramingConfig(config?: TemporalFramingConfig): ResolvedTemporalFraming;
|
|
5980
|
+
/**
|
|
5981
|
+
* Render the body for the `temporal-framing-convention` rule shipped
|
|
5982
|
+
* by the `base` bundle. The rule documents:
|
|
5983
|
+
*
|
|
5984
|
+
* - The "as of [date]" qualifier requirement on time-sensitive claims.
|
|
5985
|
+
* - The five canonical time-sensitive claim categories.
|
|
5986
|
+
* - Refresh-agent behaviour (grep for `as of `, re-verify against the
|
|
5987
|
+
* category-specific cadence).
|
|
5988
|
+
* - The scope of applicability (profile / research sections only).
|
|
5989
|
+
*
|
|
5990
|
+
* When the convention is disabled, the rule renders a short stub that
|
|
5991
|
+
* tells agents the project does not enforce explicit temporal
|
|
5992
|
+
* qualifiers and that staleness is caught by review alone.
|
|
5993
|
+
*/
|
|
5994
|
+
declare function renderTemporalFramingRuleContent(tf: ResolvedTemporalFraming): string;
|
|
5995
|
+
/**
|
|
5996
|
+
* Render the `.claude/procedures/check-temporal-framing.sh` helper
|
|
5997
|
+
* script. Exported so `AgentConfig` can register it when the consumer
|
|
5998
|
+
* opts in via `emitChecker: true`.
|
|
5999
|
+
*
|
|
6000
|
+
* The script accepts the list of changed files as either:
|
|
6001
|
+
*
|
|
6002
|
+
* 1. Positional arguments (one file per arg).
|
|
6003
|
+
* 2. Newline-separated entries on stdin (when no args supplied) —
|
|
6004
|
+
* pipe `git diff --name-only` directly into it.
|
|
6005
|
+
*
|
|
6006
|
+
* It fails non-zero when any changed file matches a configured path
|
|
6007
|
+
* pattern and contains time-sensitive framing (present-tense forms of
|
|
6008
|
+
* the canonical category triggers) but lacks an `as of ` qualifier
|
|
6009
|
+
* anywhere in the file. The lint is intentionally coarse — file-level
|
|
6010
|
+
* not line-level — so the cost of running it on every PR stays low.
|
|
6011
|
+
*/
|
|
6012
|
+
declare function renderTemporalFramingCheckerScript(tf: ResolvedTemporalFraming): string;
|
|
6013
|
+
|
|
5759
6014
|
/**
|
|
5760
6015
|
* Build the requirements-analyst bundle with the supplied resolved
|
|
5761
6016
|
* paths.
|
|
@@ -10149,4 +10404,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
10149
10404
|
*/
|
|
10150
10405
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
10151
10406
|
|
|
10152
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_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, 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 PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, 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, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, 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, 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 };
|
|
10407
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_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, 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 PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, 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, 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, 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 };
|
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.
|
|
@@ -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 };
|