@codedrifters/configulator 0.0.276 → 0.0.278
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 +244 -1
- package/lib/index.d.ts +245 -2
- package/lib/index.js +464 -48
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +459 -50
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -6940,6 +6940,196 @@ declare function emptyCategoryBuckets(): {
|
|
|
6940
6940
|
}>;
|
|
6941
6941
|
};
|
|
6942
6942
|
|
|
6943
|
+
/**
|
|
6944
|
+
* One public export parsed out of an `.api.md` rollup. The signature
|
|
6945
|
+
* is the verbatim declaration text from the rollup (TypeScript
|
|
6946
|
+
* declaration form), with internal whitespace normalized to single
|
|
6947
|
+
* spaces so cosmetic re-formatting between runs does not surface as
|
|
6948
|
+
* a `changed` finding.
|
|
6949
|
+
*/
|
|
6950
|
+
interface ApiSurfaceEntry {
|
|
6951
|
+
/**
|
|
6952
|
+
* Public name of the export (function name, class name, etc.).
|
|
6953
|
+
*/
|
|
6954
|
+
readonly name: string;
|
|
6955
|
+
/**
|
|
6956
|
+
* Verbatim declaration line from the rollup with whitespace
|
|
6957
|
+
* collapsed. Used as the equality comparison for `added` /
|
|
6958
|
+
* `removed` / `changed` classification.
|
|
6959
|
+
*/
|
|
6960
|
+
readonly signature: string;
|
|
6961
|
+
}
|
|
6962
|
+
/**
|
|
6963
|
+
* Result of diffing a baseline rollup against a current rollup. Each
|
|
6964
|
+
* field carries the API entries that fall into that change bucket.
|
|
6965
|
+
* Used by {@link createApiDiffCheck} to emit one finding per entry,
|
|
6966
|
+
* but exported separately so callers that want to render or
|
|
6967
|
+
* post-process the diff outside the audit-report shape can.
|
|
6968
|
+
*/
|
|
6969
|
+
interface ApiDiffResult {
|
|
6970
|
+
/** Exports present in the current rollup but not the baseline. */
|
|
6971
|
+
readonly added: ReadonlyArray<ApiSurfaceEntry>;
|
|
6972
|
+
/** Exports present in the baseline but not the current rollup. */
|
|
6973
|
+
readonly removed: ReadonlyArray<ApiSurfaceEntry>;
|
|
6974
|
+
/**
|
|
6975
|
+
* Exports present in both rollups but whose declaration text
|
|
6976
|
+
* differs (signature change, type-parameter change, etc.). The
|
|
6977
|
+
* carried entry is the **current** rollup's view of the symbol so
|
|
6978
|
+
* downstream consumers can show the new signature.
|
|
6979
|
+
*/
|
|
6980
|
+
readonly changed: ReadonlyArray<ApiSurfaceEntry>;
|
|
6981
|
+
}
|
|
6982
|
+
/**
|
|
6983
|
+
* Options accepted by {@link createApiDiffCheck}. The runner
|
|
6984
|
+
* consumes already-fetched rollup contents — the orchestrator is
|
|
6985
|
+
* responsible for running the `extract-api.sh` helper against the
|
|
6986
|
+
* current ref and against the configured baseline ref before
|
|
6987
|
+
* dispatching to the runner. Passing the rollups in as strings keeps
|
|
6988
|
+
* tests cheap (inline fixtures) and lets the same runner shape
|
|
6989
|
+
* cover the audit-mode case where the baseline is an empty rollup
|
|
6990
|
+
* (every export shows up as `added`).
|
|
6991
|
+
*/
|
|
6992
|
+
interface ApiDiffCheckOptions {
|
|
6993
|
+
/**
|
|
6994
|
+
* Verbatim contents of the `.api.md` rollup the orchestrator
|
|
6995
|
+
* extracted against the **baseline** ref (typically `origin/main`
|
|
6996
|
+
* for `pr` mode or empty for `audit` mode). May be the empty
|
|
6997
|
+
* string when no baseline is available — every current export
|
|
6998
|
+
* then surfaces as `added`.
|
|
6999
|
+
*/
|
|
7000
|
+
readonly baselineRollup: string;
|
|
7001
|
+
/**
|
|
7002
|
+
* Verbatim contents of the `.api.md` rollup the orchestrator
|
|
7003
|
+
* extracted against the **current** ref (the working tree the
|
|
7004
|
+
* scan is running over).
|
|
7005
|
+
*/
|
|
7006
|
+
readonly currentRollup: string;
|
|
7007
|
+
/**
|
|
7008
|
+
* Path attached to every finding's `location.file`. Conventionally
|
|
7009
|
+
* the path to the `.api.md` file relative to the repo root (e.g.
|
|
7010
|
+
* `packages/@codedrifters/configulator/.api-extractor/configulator.api.md`)
|
|
7011
|
+
* so consumers can jump from a finding back to the source rollup.
|
|
7012
|
+
* Defaults to the empty string, meaning the finding has no
|
|
7013
|
+
* concrete file anchor.
|
|
7014
|
+
*
|
|
7015
|
+
* @default ""
|
|
7016
|
+
*/
|
|
7017
|
+
readonly rollupPath?: string;
|
|
7018
|
+
/**
|
|
7019
|
+
* Stable name surfaced via {@link AuditCheckRunner.name}. Defaults
|
|
7020
|
+
* to `"apiDiff"` so logs match the audit-report category key.
|
|
7021
|
+
*
|
|
7022
|
+
* @default "apiDiff"
|
|
7023
|
+
*/
|
|
7024
|
+
readonly name?: string;
|
|
7025
|
+
}
|
|
7026
|
+
/**
|
|
7027
|
+
* Parse a `.api.md` rollup into the set of public-API entries it
|
|
7028
|
+
* declares. The parser is intentionally line-oriented and tolerant
|
|
7029
|
+
* of api-extractor's exact formatting:
|
|
7030
|
+
*
|
|
7031
|
+
* 1. Find the first fenced `ts` code block (api-extractor wraps the
|
|
7032
|
+
* rollup in one). Lines outside the block are ignored.
|
|
7033
|
+
* 2. Walk the block linewise. Every line that begins with `export`
|
|
7034
|
+
* is the start of a declaration; subsequent lines that do not
|
|
7035
|
+
* begin with `export`, `//`, `}`, or `import` are appended until
|
|
7036
|
+
* a terminator (`;`, top-level `}`) closes the declaration.
|
|
7037
|
+
* 3. Extract the public name from the start of the declaration —
|
|
7038
|
+
* the first identifier after `export {function|class|interface|...}`
|
|
7039
|
+
* (or the first name in an `export { A, B }` clause).
|
|
7040
|
+
* 4. Normalize whitespace inside the captured signature to a single
|
|
7041
|
+
* space so re-flowing the rollup does not produce spurious
|
|
7042
|
+
* `changed` findings.
|
|
7043
|
+
*
|
|
7044
|
+
* Lines containing only `// @public`, `// @beta`, etc. are stripped
|
|
7045
|
+
* — they are release-tag annotations the extractor emits, and they
|
|
7046
|
+
* change independently of the signature itself.
|
|
7047
|
+
*/
|
|
7048
|
+
declare function parseApiRollup(rollup: string): ReadonlyArray<ApiSurfaceEntry>;
|
|
7049
|
+
/**
|
|
7050
|
+
* Diff a baseline rollup against a current rollup and bucket every
|
|
7051
|
+
* public export into `added`, `removed`, or `changed`. Exported so
|
|
7052
|
+
* callers can compute the diff without going through the runner
|
|
7053
|
+
* shape.
|
|
7054
|
+
*/
|
|
7055
|
+
declare function diffApiRollups(baselineRollup: string, currentRollup: string): ApiDiffResult;
|
|
7056
|
+
/**
|
|
7057
|
+
* Build an {@link AuditCheckRunner} that emits API-diff findings by
|
|
7058
|
+
* comparing a baseline rollup to a current rollup. Severity mapping
|
|
7059
|
+
* (per the parent epic's drift-handling matrix):
|
|
7060
|
+
*
|
|
7061
|
+
* - **added** — `mechanical`. A new public export is purely
|
|
7062
|
+
* additive; Phase 2 can stub TSDoc and add reference-doc rows
|
|
7063
|
+
* without human input.
|
|
7064
|
+
* - **removed** — `advisory`. A removed public export likely needs
|
|
7065
|
+
* a deprecation note in prose; Phase 2 cannot mechanically rewrite
|
|
7066
|
+
* conceptual prose.
|
|
7067
|
+
* - **changed** — `advisory`. A signature change may invalidate
|
|
7068
|
+
* inline-code references in docs and warrants human review of any
|
|
7069
|
+
* surrounding prose.
|
|
7070
|
+
*/
|
|
7071
|
+
declare function createApiDiffCheck(options: ApiDiffCheckOptions): AuditCheckRunner;
|
|
7072
|
+
|
|
7073
|
+
/**
|
|
7074
|
+
* Options accepted by {@link createReferenceMismatchCheck}.
|
|
7075
|
+
*
|
|
7076
|
+
* The runner consumes already-computed reference records produced by
|
|
7077
|
+
* `extractDocReferences()`. The factory deliberately does not invoke
|
|
7078
|
+
* the extractor — that keeps the runner cheap to test with inline
|
|
7079
|
+
* fixtures and lets the orchestrator extract references once and
|
|
7080
|
+
* feed multiple checks from the same input.
|
|
7081
|
+
*/
|
|
7082
|
+
interface ReferenceMismatchCheckOptions {
|
|
7083
|
+
/**
|
|
7084
|
+
* The reference records to translate into findings. Each record
|
|
7085
|
+
* carries the `isKnown` flag the extractor computed against the
|
|
7086
|
+
* supplied known-symbols set; the runner produces a finding for
|
|
7087
|
+
* every record where `isKnown` is `false`.
|
|
7088
|
+
*/
|
|
7089
|
+
readonly records: ReadonlyArray<DocReferenceRecord>;
|
|
7090
|
+
/**
|
|
7091
|
+
* Stable name surfaced via {@link AuditCheckRunner.name}. Defaults
|
|
7092
|
+
* to `"referenceMismatches"` so logs match the audit-report
|
|
7093
|
+
* category key.
|
|
7094
|
+
*
|
|
7095
|
+
* @default "referenceMismatches"
|
|
7096
|
+
*/
|
|
7097
|
+
readonly name?: string;
|
|
7098
|
+
/**
|
|
7099
|
+
* Optional set of symbols whose signature changed between the
|
|
7100
|
+
* baseline and the current revision. References to one of these
|
|
7101
|
+
* symbols produce a `signature-changed` finding rather than the
|
|
7102
|
+
* default `unknown-symbol` finding (the symbol resolves but its
|
|
7103
|
+
* type signature differs from the cached snapshot, per the
|
|
7104
|
+
* audit-report schema). Empty / omitted means no signature-change
|
|
7105
|
+
* findings are produced.
|
|
7106
|
+
*/
|
|
7107
|
+
readonly signatureChangedSymbols?: ReadonlyArray<string>;
|
|
7108
|
+
}
|
|
7109
|
+
/**
|
|
7110
|
+
* Map a single {@link DocReferenceRecord} to zero or one audit
|
|
7111
|
+
* findings. Exported so callers can reuse the record-to-finding
|
|
7112
|
+
* mapping without going through a runner.
|
|
7113
|
+
*
|
|
7114
|
+
* Severity mapping:
|
|
7115
|
+
*
|
|
7116
|
+
* - `unknown-symbol` (record carries `isKnown: false`) — `advisory`.
|
|
7117
|
+
* The doc mentions a symbol that does not appear in the supplied
|
|
7118
|
+
* known-symbols set; a human reviewer should rename the mention or
|
|
7119
|
+
* remove it. The matching `signature-changed` case only fires when
|
|
7120
|
+
* the caller passes the symbol via `signatureChangedSymbols`.
|
|
7121
|
+
* - Records with `isKnown: true` and no signature change produce no
|
|
7122
|
+
* findings.
|
|
7123
|
+
*/
|
|
7124
|
+
declare function referenceRecordToFinding(record: DocReferenceRecord, signatureChangedSymbols: ReadonlySet<string>): ReferenceMismatchFinding | undefined;
|
|
7125
|
+
/**
|
|
7126
|
+
* Build an {@link AuditCheckRunner} that emits doc-reference
|
|
7127
|
+
* mismatch findings from a precomputed list of
|
|
7128
|
+
* {@link DocReferenceRecord}. The runner is synchronous and
|
|
7129
|
+
* idempotent — calling `run()` twice produces identical findings.
|
|
7130
|
+
*/
|
|
7131
|
+
declare function createReferenceMismatchCheck(options: ReferenceMismatchCheckOptions): AuditCheckRunner;
|
|
7132
|
+
|
|
6943
7133
|
/**
|
|
6944
7134
|
* One row in the TSDoc-coverage report — describes a single public
|
|
6945
7135
|
* symbol exported (transitively) from the package's entry point and
|
|
@@ -7059,6 +7249,59 @@ interface AnalyzeTsDocCoverageOptions {
|
|
|
7059
7249
|
*/
|
|
7060
7250
|
declare function analyzeTsDocCoverage(options: AnalyzeTsDocCoverageOptions | string): Array<TsDocCoverageRecord>;
|
|
7061
7251
|
|
|
7252
|
+
/**
|
|
7253
|
+
* Options accepted by {@link createTsdocCoverageCheck}.
|
|
7254
|
+
*
|
|
7255
|
+
* The runner consumes already-computed coverage records produced by
|
|
7256
|
+
* `analyzeTsDocCoverage()`. The factory deliberately does not invoke
|
|
7257
|
+
* the analyzer itself — that keeps the runner cheap to test (pass an
|
|
7258
|
+
* inline records array) and keeps the orchestrator free to compute
|
|
7259
|
+
* coverage once and feed multiple checks from the same input.
|
|
7260
|
+
*/
|
|
7261
|
+
interface TsdocCoverageCheckOptions {
|
|
7262
|
+
/**
|
|
7263
|
+
* The coverage records to translate into findings. Typically the
|
|
7264
|
+
* concatenated output of `analyzeTsDocCoverage()` for every public
|
|
7265
|
+
* package the orchestrator is scanning. The factory may be called
|
|
7266
|
+
* with an empty array when no public exports were inspected — the
|
|
7267
|
+
* resulting runner produces no findings.
|
|
7268
|
+
*/
|
|
7269
|
+
readonly records: ReadonlyArray<TsDocCoverageRecord>;
|
|
7270
|
+
/**
|
|
7271
|
+
* Stable name surfaced via {@link AuditCheckRunner.name}. Defaults
|
|
7272
|
+
* to `"tsdocCoverage"` so logs match the audit-report category key.
|
|
7273
|
+
*
|
|
7274
|
+
* @default "tsdocCoverage"
|
|
7275
|
+
*/
|
|
7276
|
+
readonly name?: string;
|
|
7277
|
+
}
|
|
7278
|
+
/**
|
|
7279
|
+
* Map a single {@link TsDocCoverageRecord} to zero, one, or more
|
|
7280
|
+
* audit findings. Exported so callers can reuse the
|
|
7281
|
+
* record-to-finding mapping without going through a runner (e.g. the
|
|
7282
|
+
* audit-mode walker in #526 may compose findings differently).
|
|
7283
|
+
*
|
|
7284
|
+
* Severity mapping (per the parent epic's drift-handling matrix):
|
|
7285
|
+
*
|
|
7286
|
+
* - `missing-summary` — `mechanical` (Phase 2 can auto-stub).
|
|
7287
|
+
* - `thin-summary` — `advisory` (a human should rewrite).
|
|
7288
|
+
* - `missing-params` / `missing-returns` — `advisory` (the symbol
|
|
7289
|
+
* does carry a summary; the missing block tag is signal but does
|
|
7290
|
+
* not block).
|
|
7291
|
+
*
|
|
7292
|
+
* A record with `hasSummary && !hasThinSummary` and no missing block
|
|
7293
|
+
* tags produces no findings — fully-documented exports are reported
|
|
7294
|
+
* by their absence in the result.
|
|
7295
|
+
*/
|
|
7296
|
+
declare function tsdocRecordToFindings(record: TsDocCoverageRecord, context: AuditCheckRunnerContext): Array<TsdocCoverageFinding>;
|
|
7297
|
+
/**
|
|
7298
|
+
* Build an {@link AuditCheckRunner} that emits TSDoc-coverage
|
|
7299
|
+
* findings from a precomputed list of {@link TsDocCoverageRecord}.
|
|
7300
|
+
* The runner is synchronous and idempotent; calling `run()` twice
|
|
7301
|
+
* produces identical findings.
|
|
7302
|
+
*/
|
|
7303
|
+
declare function createTsdocCoverageCheck(options: TsdocCoverageCheckOptions): AuditCheckRunner;
|
|
7304
|
+
|
|
7062
7305
|
/**
|
|
7063
7306
|
* Returns the latest full-release version of an npm package that has been
|
|
7064
7307
|
* published for at least `minimumReleaseAgeMinutes` minutes. Prefers the
|
|
@@ -8958,4 +9201,4 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
8958
9201
|
*/
|
|
8959
9202
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
8960
9203
|
|
|
8961
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffFinding, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, 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, type OrganizationMetadata, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedPreflightPr, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, 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, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, 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 TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, customerProfileBundle, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
|
9204
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, 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, type OrganizationMetadata, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, 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 ResolvedIssueTemplates, type ResolvedPreflightPr, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, 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, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, 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, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
package/lib/index.d.ts
CHANGED
|
@@ -6989,6 +6989,196 @@ declare function emptyCategoryBuckets(): {
|
|
|
6989
6989
|
}>;
|
|
6990
6990
|
};
|
|
6991
6991
|
|
|
6992
|
+
/**
|
|
6993
|
+
* One public export parsed out of an `.api.md` rollup. The signature
|
|
6994
|
+
* is the verbatim declaration text from the rollup (TypeScript
|
|
6995
|
+
* declaration form), with internal whitespace normalized to single
|
|
6996
|
+
* spaces so cosmetic re-formatting between runs does not surface as
|
|
6997
|
+
* a `changed` finding.
|
|
6998
|
+
*/
|
|
6999
|
+
interface ApiSurfaceEntry {
|
|
7000
|
+
/**
|
|
7001
|
+
* Public name of the export (function name, class name, etc.).
|
|
7002
|
+
*/
|
|
7003
|
+
readonly name: string;
|
|
7004
|
+
/**
|
|
7005
|
+
* Verbatim declaration line from the rollup with whitespace
|
|
7006
|
+
* collapsed. Used as the equality comparison for `added` /
|
|
7007
|
+
* `removed` / `changed` classification.
|
|
7008
|
+
*/
|
|
7009
|
+
readonly signature: string;
|
|
7010
|
+
}
|
|
7011
|
+
/**
|
|
7012
|
+
* Result of diffing a baseline rollup against a current rollup. Each
|
|
7013
|
+
* field carries the API entries that fall into that change bucket.
|
|
7014
|
+
* Used by {@link createApiDiffCheck} to emit one finding per entry,
|
|
7015
|
+
* but exported separately so callers that want to render or
|
|
7016
|
+
* post-process the diff outside the audit-report shape can.
|
|
7017
|
+
*/
|
|
7018
|
+
interface ApiDiffResult {
|
|
7019
|
+
/** Exports present in the current rollup but not the baseline. */
|
|
7020
|
+
readonly added: ReadonlyArray<ApiSurfaceEntry>;
|
|
7021
|
+
/** Exports present in the baseline but not the current rollup. */
|
|
7022
|
+
readonly removed: ReadonlyArray<ApiSurfaceEntry>;
|
|
7023
|
+
/**
|
|
7024
|
+
* Exports present in both rollups but whose declaration text
|
|
7025
|
+
* differs (signature change, type-parameter change, etc.). The
|
|
7026
|
+
* carried entry is the **current** rollup's view of the symbol so
|
|
7027
|
+
* downstream consumers can show the new signature.
|
|
7028
|
+
*/
|
|
7029
|
+
readonly changed: ReadonlyArray<ApiSurfaceEntry>;
|
|
7030
|
+
}
|
|
7031
|
+
/**
|
|
7032
|
+
* Options accepted by {@link createApiDiffCheck}. The runner
|
|
7033
|
+
* consumes already-fetched rollup contents — the orchestrator is
|
|
7034
|
+
* responsible for running the `extract-api.sh` helper against the
|
|
7035
|
+
* current ref and against the configured baseline ref before
|
|
7036
|
+
* dispatching to the runner. Passing the rollups in as strings keeps
|
|
7037
|
+
* tests cheap (inline fixtures) and lets the same runner shape
|
|
7038
|
+
* cover the audit-mode case where the baseline is an empty rollup
|
|
7039
|
+
* (every export shows up as `added`).
|
|
7040
|
+
*/
|
|
7041
|
+
interface ApiDiffCheckOptions {
|
|
7042
|
+
/**
|
|
7043
|
+
* Verbatim contents of the `.api.md` rollup the orchestrator
|
|
7044
|
+
* extracted against the **baseline** ref (typically `origin/main`
|
|
7045
|
+
* for `pr` mode or empty for `audit` mode). May be the empty
|
|
7046
|
+
* string when no baseline is available — every current export
|
|
7047
|
+
* then surfaces as `added`.
|
|
7048
|
+
*/
|
|
7049
|
+
readonly baselineRollup: string;
|
|
7050
|
+
/**
|
|
7051
|
+
* Verbatim contents of the `.api.md` rollup the orchestrator
|
|
7052
|
+
* extracted against the **current** ref (the working tree the
|
|
7053
|
+
* scan is running over).
|
|
7054
|
+
*/
|
|
7055
|
+
readonly currentRollup: string;
|
|
7056
|
+
/**
|
|
7057
|
+
* Path attached to every finding's `location.file`. Conventionally
|
|
7058
|
+
* the path to the `.api.md` file relative to the repo root (e.g.
|
|
7059
|
+
* `packages/@codedrifters/configulator/.api-extractor/configulator.api.md`)
|
|
7060
|
+
* so consumers can jump from a finding back to the source rollup.
|
|
7061
|
+
* Defaults to the empty string, meaning the finding has no
|
|
7062
|
+
* concrete file anchor.
|
|
7063
|
+
*
|
|
7064
|
+
* @default ""
|
|
7065
|
+
*/
|
|
7066
|
+
readonly rollupPath?: string;
|
|
7067
|
+
/**
|
|
7068
|
+
* Stable name surfaced via {@link AuditCheckRunner.name}. Defaults
|
|
7069
|
+
* to `"apiDiff"` so logs match the audit-report category key.
|
|
7070
|
+
*
|
|
7071
|
+
* @default "apiDiff"
|
|
7072
|
+
*/
|
|
7073
|
+
readonly name?: string;
|
|
7074
|
+
}
|
|
7075
|
+
/**
|
|
7076
|
+
* Parse a `.api.md` rollup into the set of public-API entries it
|
|
7077
|
+
* declares. The parser is intentionally line-oriented and tolerant
|
|
7078
|
+
* of api-extractor's exact formatting:
|
|
7079
|
+
*
|
|
7080
|
+
* 1. Find the first fenced `ts` code block (api-extractor wraps the
|
|
7081
|
+
* rollup in one). Lines outside the block are ignored.
|
|
7082
|
+
* 2. Walk the block linewise. Every line that begins with `export`
|
|
7083
|
+
* is the start of a declaration; subsequent lines that do not
|
|
7084
|
+
* begin with `export`, `//`, `}`, or `import` are appended until
|
|
7085
|
+
* a terminator (`;`, top-level `}`) closes the declaration.
|
|
7086
|
+
* 3. Extract the public name from the start of the declaration —
|
|
7087
|
+
* the first identifier after `export {function|class|interface|...}`
|
|
7088
|
+
* (or the first name in an `export { A, B }` clause).
|
|
7089
|
+
* 4. Normalize whitespace inside the captured signature to a single
|
|
7090
|
+
* space so re-flowing the rollup does not produce spurious
|
|
7091
|
+
* `changed` findings.
|
|
7092
|
+
*
|
|
7093
|
+
* Lines containing only `// @public`, `// @beta`, etc. are stripped
|
|
7094
|
+
* — they are release-tag annotations the extractor emits, and they
|
|
7095
|
+
* change independently of the signature itself.
|
|
7096
|
+
*/
|
|
7097
|
+
declare function parseApiRollup(rollup: string): ReadonlyArray<ApiSurfaceEntry>;
|
|
7098
|
+
/**
|
|
7099
|
+
* Diff a baseline rollup against a current rollup and bucket every
|
|
7100
|
+
* public export into `added`, `removed`, or `changed`. Exported so
|
|
7101
|
+
* callers can compute the diff without going through the runner
|
|
7102
|
+
* shape.
|
|
7103
|
+
*/
|
|
7104
|
+
declare function diffApiRollups(baselineRollup: string, currentRollup: string): ApiDiffResult;
|
|
7105
|
+
/**
|
|
7106
|
+
* Build an {@link AuditCheckRunner} that emits API-diff findings by
|
|
7107
|
+
* comparing a baseline rollup to a current rollup. Severity mapping
|
|
7108
|
+
* (per the parent epic's drift-handling matrix):
|
|
7109
|
+
*
|
|
7110
|
+
* - **added** — `mechanical`. A new public export is purely
|
|
7111
|
+
* additive; Phase 2 can stub TSDoc and add reference-doc rows
|
|
7112
|
+
* without human input.
|
|
7113
|
+
* - **removed** — `advisory`. A removed public export likely needs
|
|
7114
|
+
* a deprecation note in prose; Phase 2 cannot mechanically rewrite
|
|
7115
|
+
* conceptual prose.
|
|
7116
|
+
* - **changed** — `advisory`. A signature change may invalidate
|
|
7117
|
+
* inline-code references in docs and warrants human review of any
|
|
7118
|
+
* surrounding prose.
|
|
7119
|
+
*/
|
|
7120
|
+
declare function createApiDiffCheck(options: ApiDiffCheckOptions): AuditCheckRunner;
|
|
7121
|
+
|
|
7122
|
+
/**
|
|
7123
|
+
* Options accepted by {@link createReferenceMismatchCheck}.
|
|
7124
|
+
*
|
|
7125
|
+
* The runner consumes already-computed reference records produced by
|
|
7126
|
+
* `extractDocReferences()`. The factory deliberately does not invoke
|
|
7127
|
+
* the extractor — that keeps the runner cheap to test with inline
|
|
7128
|
+
* fixtures and lets the orchestrator extract references once and
|
|
7129
|
+
* feed multiple checks from the same input.
|
|
7130
|
+
*/
|
|
7131
|
+
interface ReferenceMismatchCheckOptions {
|
|
7132
|
+
/**
|
|
7133
|
+
* The reference records to translate into findings. Each record
|
|
7134
|
+
* carries the `isKnown` flag the extractor computed against the
|
|
7135
|
+
* supplied known-symbols set; the runner produces a finding for
|
|
7136
|
+
* every record where `isKnown` is `false`.
|
|
7137
|
+
*/
|
|
7138
|
+
readonly records: ReadonlyArray<DocReferenceRecord>;
|
|
7139
|
+
/**
|
|
7140
|
+
* Stable name surfaced via {@link AuditCheckRunner.name}. Defaults
|
|
7141
|
+
* to `"referenceMismatches"` so logs match the audit-report
|
|
7142
|
+
* category key.
|
|
7143
|
+
*
|
|
7144
|
+
* @default "referenceMismatches"
|
|
7145
|
+
*/
|
|
7146
|
+
readonly name?: string;
|
|
7147
|
+
/**
|
|
7148
|
+
* Optional set of symbols whose signature changed between the
|
|
7149
|
+
* baseline and the current revision. References to one of these
|
|
7150
|
+
* symbols produce a `signature-changed` finding rather than the
|
|
7151
|
+
* default `unknown-symbol` finding (the symbol resolves but its
|
|
7152
|
+
* type signature differs from the cached snapshot, per the
|
|
7153
|
+
* audit-report schema). Empty / omitted means no signature-change
|
|
7154
|
+
* findings are produced.
|
|
7155
|
+
*/
|
|
7156
|
+
readonly signatureChangedSymbols?: ReadonlyArray<string>;
|
|
7157
|
+
}
|
|
7158
|
+
/**
|
|
7159
|
+
* Map a single {@link DocReferenceRecord} to zero or one audit
|
|
7160
|
+
* findings. Exported so callers can reuse the record-to-finding
|
|
7161
|
+
* mapping without going through a runner.
|
|
7162
|
+
*
|
|
7163
|
+
* Severity mapping:
|
|
7164
|
+
*
|
|
7165
|
+
* - `unknown-symbol` (record carries `isKnown: false`) — `advisory`.
|
|
7166
|
+
* The doc mentions a symbol that does not appear in the supplied
|
|
7167
|
+
* known-symbols set; a human reviewer should rename the mention or
|
|
7168
|
+
* remove it. The matching `signature-changed` case only fires when
|
|
7169
|
+
* the caller passes the symbol via `signatureChangedSymbols`.
|
|
7170
|
+
* - Records with `isKnown: true` and no signature change produce no
|
|
7171
|
+
* findings.
|
|
7172
|
+
*/
|
|
7173
|
+
declare function referenceRecordToFinding(record: DocReferenceRecord, signatureChangedSymbols: ReadonlySet<string>): ReferenceMismatchFinding | undefined;
|
|
7174
|
+
/**
|
|
7175
|
+
* Build an {@link AuditCheckRunner} that emits doc-reference
|
|
7176
|
+
* mismatch findings from a precomputed list of
|
|
7177
|
+
* {@link DocReferenceRecord}. The runner is synchronous and
|
|
7178
|
+
* idempotent — calling `run()` twice produces identical findings.
|
|
7179
|
+
*/
|
|
7180
|
+
declare function createReferenceMismatchCheck(options: ReferenceMismatchCheckOptions): AuditCheckRunner;
|
|
7181
|
+
|
|
6992
7182
|
/**
|
|
6993
7183
|
* One row in the TSDoc-coverage report — describes a single public
|
|
6994
7184
|
* symbol exported (transitively) from the package's entry point and
|
|
@@ -7108,6 +7298,59 @@ interface AnalyzeTsDocCoverageOptions {
|
|
|
7108
7298
|
*/
|
|
7109
7299
|
declare function analyzeTsDocCoverage(options: AnalyzeTsDocCoverageOptions | string): Array<TsDocCoverageRecord>;
|
|
7110
7300
|
|
|
7301
|
+
/**
|
|
7302
|
+
* Options accepted by {@link createTsdocCoverageCheck}.
|
|
7303
|
+
*
|
|
7304
|
+
* The runner consumes already-computed coverage records produced by
|
|
7305
|
+
* `analyzeTsDocCoverage()`. The factory deliberately does not invoke
|
|
7306
|
+
* the analyzer itself — that keeps the runner cheap to test (pass an
|
|
7307
|
+
* inline records array) and keeps the orchestrator free to compute
|
|
7308
|
+
* coverage once and feed multiple checks from the same input.
|
|
7309
|
+
*/
|
|
7310
|
+
interface TsdocCoverageCheckOptions {
|
|
7311
|
+
/**
|
|
7312
|
+
* The coverage records to translate into findings. Typically the
|
|
7313
|
+
* concatenated output of `analyzeTsDocCoverage()` for every public
|
|
7314
|
+
* package the orchestrator is scanning. The factory may be called
|
|
7315
|
+
* with an empty array when no public exports were inspected — the
|
|
7316
|
+
* resulting runner produces no findings.
|
|
7317
|
+
*/
|
|
7318
|
+
readonly records: ReadonlyArray<TsDocCoverageRecord>;
|
|
7319
|
+
/**
|
|
7320
|
+
* Stable name surfaced via {@link AuditCheckRunner.name}. Defaults
|
|
7321
|
+
* to `"tsdocCoverage"` so logs match the audit-report category key.
|
|
7322
|
+
*
|
|
7323
|
+
* @default "tsdocCoverage"
|
|
7324
|
+
*/
|
|
7325
|
+
readonly name?: string;
|
|
7326
|
+
}
|
|
7327
|
+
/**
|
|
7328
|
+
* Map a single {@link TsDocCoverageRecord} to zero, one, or more
|
|
7329
|
+
* audit findings. Exported so callers can reuse the
|
|
7330
|
+
* record-to-finding mapping without going through a runner (e.g. the
|
|
7331
|
+
* audit-mode walker in #526 may compose findings differently).
|
|
7332
|
+
*
|
|
7333
|
+
* Severity mapping (per the parent epic's drift-handling matrix):
|
|
7334
|
+
*
|
|
7335
|
+
* - `missing-summary` — `mechanical` (Phase 2 can auto-stub).
|
|
7336
|
+
* - `thin-summary` — `advisory` (a human should rewrite).
|
|
7337
|
+
* - `missing-params` / `missing-returns` — `advisory` (the symbol
|
|
7338
|
+
* does carry a summary; the missing block tag is signal but does
|
|
7339
|
+
* not block).
|
|
7340
|
+
*
|
|
7341
|
+
* A record with `hasSummary && !hasThinSummary` and no missing block
|
|
7342
|
+
* tags produces no findings — fully-documented exports are reported
|
|
7343
|
+
* by their absence in the result.
|
|
7344
|
+
*/
|
|
7345
|
+
declare function tsdocRecordToFindings(record: TsDocCoverageRecord, context: AuditCheckRunnerContext): Array<TsdocCoverageFinding>;
|
|
7346
|
+
/**
|
|
7347
|
+
* Build an {@link AuditCheckRunner} that emits TSDoc-coverage
|
|
7348
|
+
* findings from a precomputed list of {@link TsDocCoverageRecord}.
|
|
7349
|
+
* The runner is synchronous and idempotent; calling `run()` twice
|
|
7350
|
+
* produces identical findings.
|
|
7351
|
+
*/
|
|
7352
|
+
declare function createTsdocCoverageCheck(options: TsdocCoverageCheckOptions): AuditCheckRunner;
|
|
7353
|
+
|
|
7111
7354
|
/**
|
|
7112
7355
|
* Returns the latest full-release version of an npm package that has been
|
|
7113
7356
|
* published for at least `minimumReleaseAgeMinutes` minutes. Prefers the
|
|
@@ -9007,5 +9250,5 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
9007
9250
|
*/
|
|
9008
9251
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
9009
9252
|
|
|
9010
|
-
export { AGENT_MODEL, AGENT_PLATFORM, 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, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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, 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, PREFLIGHT_MERGE_METHOD_VALUES, 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, SampleLang, StarlightProject, TestRunner, TsDocCoverageKind, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, customerProfileBundle, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
|
9011
|
-
export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffFinding, ApiExtractorOptions, ApiExtractorReportOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PreflightMergeMethod, PreflightPrConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedPreflightPr, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TsDocCoverageRecord, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
9253
|
+
export { AGENT_MODEL, AGENT_PLATFORM, 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, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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, 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, PREFLIGHT_MERGE_METHOD_VALUES, 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, SampleLang, StarlightProject, TestRunner, TsDocCoverageKind, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
|
9254
|
+
export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, 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, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PreflightMergeMethod, PreflightPrConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedPreflightPr, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, VersionKey, VitestConfigOptions, VitestOptions };
|