@codedrifters/configulator 0.0.274 → 0.0.275

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -6750,6 +6750,556 @@ declare const DEFAULT_SAMPLE_COMPILER_OPTIONS: ts.CompilerOptions;
6750
6750
  */
6751
6751
  declare function compileFencedSamples(options?: CompileFencedSamplesOptions): Array<SampleCompilationFailure>;
6752
6752
 
6753
+ /**
6754
+ * Schema definitions for the docs-sync scan-phase audit report.
6755
+ *
6756
+ * The report is the durable output of Phase 1 (Scan) of the docs-sync
6757
+ * pipeline (parent epic #448). Phase 1 walks the repo, runs every
6758
+ * registered drift check, and persists a single combined report to
6759
+ * `.claude/state/docs-sync/<N>-audit.json` (where `<N>` is the
6760
+ * tracking-issue number). Phase 2 (Fix) reads the persisted report
6761
+ * and applies mechanical fixes — the two phases never share an
6762
+ * in-memory handle, so the JSON shape on disk is the contract
6763
+ * between them.
6764
+ *
6765
+ * #518 ships the **schema and the orchestrator skeleton only**. The
6766
+ * actual drift checks (API/TSDoc/reference, link, fenced-sample) are
6767
+ * wired in by children #519 and #520 by passing additional
6768
+ * `AuditCheckRunner` instances to {@link runScan}. An empty
6769
+ * runner list is the supported scaffold-time configuration and
6770
+ * produces a schema-compliant report with empty findings in every
6771
+ * category.
6772
+ *
6773
+ * The schema is intentionally **keyed by drift-check category** at
6774
+ * the top level (`apiDiff`, `tsdocCoverage`, `referenceMismatches`,
6775
+ * `linkFailures`, `sampleFailures`) so consumers can render or
6776
+ * filter by category without re-grouping a flat list. Each
6777
+ * category-keyed array carries category-specific finding shapes,
6778
+ * and a flat `findings` array re-aggregates the same records with
6779
+ * `category` and `severity` fields attached so the report doubles
6780
+ * as a backlog source for downstream tooling.
6781
+ */
6782
+ /**
6783
+ * Drift-check categories the docs-sync scan phase can produce
6784
+ * findings in. Exhaustive — adding a new category here is a schema
6785
+ * change that requires bumping {@link DOCS_SYNC_AUDIT_SCHEMA_VERSION}
6786
+ * and updating every consumer that switches on the literal.
6787
+ */
6788
+ declare const AuditCategory: {
6789
+ /**
6790
+ * Findings produced by the public-API diff check that surfaces
6791
+ * added, renamed, or removed exports between the current branch
6792
+ * and the recorded baseline. Wired in by child issue #519.
6793
+ */
6794
+ readonly ApiDiff: "apiDiff";
6795
+ /**
6796
+ * Findings produced by the TSDoc-coverage check that flags public
6797
+ * exports without a one-sentence summary. Wired in by child issue
6798
+ * #519.
6799
+ */
6800
+ readonly TsdocCoverage: "tsdocCoverage";
6801
+ /**
6802
+ * Findings produced by the doc-reference cross-index check that
6803
+ * flags inline-code symbol mentions whose target is missing or
6804
+ * has changed. Wired in by child issue #519.
6805
+ */
6806
+ readonly ReferenceMismatches: "referenceMismatches";
6807
+ /**
6808
+ * Findings produced by the link-integrity check (internal via
6809
+ * `astro check`, external via `lychee`). Wired in by child issue
6810
+ * #520.
6811
+ */
6812
+ readonly LinkFailures: "linkFailures";
6813
+ /**
6814
+ * Findings produced by the fenced-sample compilation check that
6815
+ * flags ` ```ts ` / ` ```typescript ` / ` ```tsx ` blocks in the
6816
+ * docs that fail `tsc`. Wired in by child issue #520.
6817
+ */
6818
+ readonly SampleFailures: "sampleFailures";
6819
+ };
6820
+ /**
6821
+ * String-literal type matching the values of {@link AuditCategory}.
6822
+ */
6823
+ type AuditCategory = (typeof AuditCategory)[keyof typeof AuditCategory];
6824
+ /**
6825
+ * Severity ladder applied to every finding before persistence. The
6826
+ * ladder mirrors the parent epic's behavior-on-drift contract —
6827
+ * mechanical fixes auto-apply, advisory findings post a non-blocking
6828
+ * note, blocking findings hand off to `pr-reviewer` via
6829
+ * `review:human-required`.
6830
+ */
6831
+ declare const AuditSeverity: {
6832
+ /**
6833
+ * The finding has a deterministic mechanical fix that the Phase 2
6834
+ * (Fix) agent will auto-apply (TSDoc stubs, dead-link updates,
6835
+ * registry sync, etc.).
6836
+ */
6837
+ readonly Mechanical: "mechanical";
6838
+ /**
6839
+ * The finding deserves human attention but does not block the PR.
6840
+ * Surfaced as a non-blocking note on the sticky `## Docs sync`
6841
+ * comment.
6842
+ */
6843
+ readonly Advisory: "advisory";
6844
+ /**
6845
+ * The finding blocks the PR. Per the parent epic this is reserved
6846
+ * for the two narrow cases of confirmed broken external links and
6847
+ * fenced TS samples that fail to compile.
6848
+ */
6849
+ readonly Blocking: "blocking";
6850
+ };
6851
+ /**
6852
+ * String-literal type matching the values of {@link AuditSeverity}.
6853
+ */
6854
+ type AuditSeverity = (typeof AuditSeverity)[keyof typeof AuditSeverity];
6855
+ /**
6856
+ * Invocation mode of the scan phase. Determines how downstream
6857
+ * tooling treats the report — `pr` reports run against a single
6858
+ * branch and feed `pr-reviewer`; `audit` reports walk the whole
6859
+ * repo and feed the prioritized `docs:write` backlog.
6860
+ */
6861
+ declare const AuditMode: {
6862
+ readonly Pr: "pr";
6863
+ readonly Audit: "audit";
6864
+ };
6865
+ /**
6866
+ * String-literal type matching the values of {@link AuditMode}.
6867
+ */
6868
+ type AuditMode = (typeof AuditMode)[keyof typeof AuditMode];
6869
+ /**
6870
+ * File-and-line location attached to most finding shapes. The
6871
+ * `file` field is always a path relative to the repo root so reports
6872
+ * are portable across machines; absolute paths must be normalized
6873
+ * before they reach the report.
6874
+ */
6875
+ interface AuditLocation {
6876
+ /**
6877
+ * Path relative to {@link AuditReport.repoRoot}. Empty string is
6878
+ * permitted for findings that have no associated file (e.g. an
6879
+ * `apiDiff` removed-export finding that lost its source location).
6880
+ */
6881
+ readonly file: string;
6882
+ /**
6883
+ * 1-indexed line number when known. `0` means "line is not known"
6884
+ * — downstream consumers must treat `0` as missing rather than as
6885
+ * the literal first line.
6886
+ */
6887
+ readonly line: number;
6888
+ }
6889
+ /**
6890
+ * Common fields every finding shape carries. The category-specific
6891
+ * record types below extend this interface with additional fields.
6892
+ */
6893
+ interface AuditFindingBase {
6894
+ /**
6895
+ * Drift-check category that produced the finding. Mirrors the key
6896
+ * on the {@link AuditReport} that the finding is filed under.
6897
+ */
6898
+ readonly category: AuditCategory;
6899
+ /**
6900
+ * Severity classification per the {@link AuditSeverity} ladder.
6901
+ */
6902
+ readonly severity: AuditSeverity;
6903
+ /**
6904
+ * Source location the finding is anchored at. Empty location is
6905
+ * tolerated for findings with no concrete anchor.
6906
+ */
6907
+ readonly location: AuditLocation;
6908
+ /**
6909
+ * Stable subject identifier. For symbol findings this is the
6910
+ * exported symbol name; for link findings the URL; for sample
6911
+ * findings the docPath plus fence index. Used by Phase 2 to
6912
+ * deduplicate findings across runs.
6913
+ */
6914
+ readonly subject: string;
6915
+ /**
6916
+ * One-sentence human-readable description of the finding.
6917
+ * Phase 2 surfaces this directly in the sticky PR comment, so
6918
+ * keep it short and self-contained — no markdown links to
6919
+ * external context, and never includes generated prose over the
6920
+ * 100-word stub budget.
6921
+ */
6922
+ readonly details: string;
6923
+ /**
6924
+ * Optional hint for the Phase 2 fix agent. When present and the
6925
+ * severity is `mechanical`, Phase 2 may use this string to
6926
+ * compute the auto-applied edit. Free-form; downstream consumers
6927
+ * should treat unknown hints as no-op.
6928
+ */
6929
+ readonly fixHint?: string;
6930
+ }
6931
+ /**
6932
+ * Finding produced by the public-API diff check. Wired in by #519.
6933
+ */
6934
+ interface ApiDiffFinding extends AuditFindingBase {
6935
+ readonly category: typeof AuditCategory.ApiDiff;
6936
+ /**
6937
+ * Kind of API change observed. The literal `added` covers a new
6938
+ * export; `removed` covers a deletion; `changed` covers a
6939
+ * signature change that does not rename or remove the symbol.
6940
+ */
6941
+ readonly change: "added" | "removed" | "changed";
6942
+ /**
6943
+ * Public name of the symbol whose surface changed.
6944
+ */
6945
+ readonly symbol: string;
6946
+ }
6947
+ /**
6948
+ * Finding produced by the TSDoc-coverage check. Wired in by #519.
6949
+ */
6950
+ interface TsdocCoverageFinding extends AuditFindingBase {
6951
+ readonly category: typeof AuditCategory.TsdocCoverage;
6952
+ /**
6953
+ * Public name of the symbol that is missing or has thin TSDoc.
6954
+ */
6955
+ readonly symbol: string;
6956
+ /**
6957
+ * Coverage shortfall the finding reports. `missing-summary`
6958
+ * means no TSDoc at all; `thin-summary` means the summary exists
6959
+ * but is shorter than the configured threshold; `missing-params`
6960
+ * / `missing-returns` mean the signature has parameters or a
6961
+ * return value with no matching block tag.
6962
+ */
6963
+ readonly shortfall: "missing-summary" | "thin-summary" | "missing-params" | "missing-returns";
6964
+ }
6965
+ /**
6966
+ * Finding produced by the doc-reference cross-index check. Wired in
6967
+ * by #519.
6968
+ */
6969
+ interface ReferenceMismatchFinding extends AuditFindingBase {
6970
+ readonly category: typeof AuditCategory.ReferenceMismatches;
6971
+ /**
6972
+ * Inline-code symbol referenced in the markdown source.
6973
+ */
6974
+ readonly symbol: string;
6975
+ /**
6976
+ * Why the reference is flagged. `unknown-symbol` means the
6977
+ * symbol does not appear in the supplied known-symbols set;
6978
+ * `signature-changed` means the symbol still resolves but its
6979
+ * type signature differs from the cached snapshot.
6980
+ */
6981
+ readonly mismatch: "unknown-symbol" | "signature-changed";
6982
+ }
6983
+ /**
6984
+ * Finding produced by the link-integrity check. Wired in by #520.
6985
+ */
6986
+ interface LinkFailureFinding extends AuditFindingBase {
6987
+ readonly category: typeof AuditCategory.LinkFailures;
6988
+ /**
6989
+ * URL or relative path that failed integrity checks.
6990
+ */
6991
+ readonly url: string;
6992
+ /**
6993
+ * Whether the link is internal (resolved by `astro check`) or
6994
+ * external (resolved by `lychee`).
6995
+ */
6996
+ readonly kind: "internal" | "external";
6997
+ /**
6998
+ * Short tool-supplied diagnostic explaining the failure.
6999
+ */
7000
+ readonly reason: string;
7001
+ }
7002
+ /**
7003
+ * Finding produced by the fenced-sample compilation check. Wired in
7004
+ * by #520.
7005
+ */
7006
+ interface SampleFailureFinding extends AuditFindingBase {
7007
+ readonly category: typeof AuditCategory.SampleFailures;
7008
+ /**
7009
+ * 0-indexed position of the fenced block within the markdown file.
7010
+ */
7011
+ readonly fenceIndex: number;
7012
+ /**
7013
+ * Language tag the sample carried (e.g. `ts`, `typescript`,
7014
+ * `tsx`, `typescriptreact`).
7015
+ */
7016
+ readonly lang: string;
7017
+ /**
7018
+ * Compiler diagnostics produced by `tsc` against the sample.
7019
+ */
7020
+ readonly diagnostics: ReadonlyArray<string>;
7021
+ }
7022
+ /**
7023
+ * Discriminated union of every category-specific finding shape.
7024
+ */
7025
+ type AuditFinding = ApiDiffFinding | TsdocCoverageFinding | ReferenceMismatchFinding | LinkFailureFinding | SampleFailureFinding;
7026
+ /**
7027
+ * Schema version embedded on every persisted audit report. Bump on
7028
+ * any breaking change to the report shape so downstream consumers
7029
+ * can refuse incompatible files rather than mis-parsing them.
7030
+ *
7031
+ * Versioning is **integer-monotonic**: the producer of a v2 report
7032
+ * is responsible for keeping the v1 fields parseable when
7033
+ * possible, but a v1 reader must reject a v2 report it does not
7034
+ * understand.
7035
+ */
7036
+ declare const DOCS_SYNC_AUDIT_SCHEMA_VERSION = 1;
7037
+ /**
7038
+ * Top-level audit-report shape persisted to
7039
+ * `.claude/state/docs-sync/<N>-audit.json`. The category-keyed
7040
+ * arrays are the durable surface; the flat `findings` array is a
7041
+ * convenience aggregation of the same records.
7042
+ */
7043
+ interface AuditReport {
7044
+ /**
7045
+ * Schema version embedded on every persisted report. Always
7046
+ * equal to {@link DOCS_SYNC_AUDIT_SCHEMA_VERSION} at write time.
7047
+ */
7048
+ readonly schemaVersion: number;
7049
+ /**
7050
+ * Tracking-issue number the scan ran for. Determines the
7051
+ * filename when persisted (`<issueNumber>-audit.json`).
7052
+ */
7053
+ readonly issueNumber: number;
7054
+ /**
7055
+ * Invocation mode — `pr` for diff-scoped runs invoked through
7056
+ * `/docs-sync-pr`, `audit` for full-repo runs invoked through
7057
+ * `/docs-sync-audit`.
7058
+ */
7059
+ readonly mode: AuditMode;
7060
+ /**
7061
+ * ISO 8601 UTC timestamp the scan completed at. Always written
7062
+ * with `Z` suffix; consumers parse with `Date(...)`.
7063
+ */
7064
+ readonly generatedAt: string;
7065
+ /**
7066
+ * Absolute path to the repository root the scan ran against.
7067
+ * Persisted so a downstream consumer reading the report on a
7068
+ * different checkout can rewrite paths relative to its own
7069
+ * root.
7070
+ */
7071
+ readonly repoRoot: string;
7072
+ /**
7073
+ * Optional free-form scope label attached at the issue level
7074
+ * (e.g. `pr:feat/518-foo`, `audit:packages/configulator`).
7075
+ * Empty string when no scope was supplied.
7076
+ */
7077
+ readonly scope: string;
7078
+ /**
7079
+ * Findings grouped by drift-check category. Every category key
7080
+ * is always present and always an array — empty arrays are
7081
+ * persisted explicitly so consumers never have to test for
7082
+ * presence.
7083
+ */
7084
+ readonly categories: {
7085
+ readonly apiDiff: ReadonlyArray<ApiDiffFinding>;
7086
+ readonly tsdocCoverage: ReadonlyArray<TsdocCoverageFinding>;
7087
+ readonly referenceMismatches: ReadonlyArray<ReferenceMismatchFinding>;
7088
+ readonly linkFailures: ReadonlyArray<LinkFailureFinding>;
7089
+ readonly sampleFailures: ReadonlyArray<SampleFailureFinding>;
7090
+ };
7091
+ /**
7092
+ * Flat re-aggregation of every category-keyed finding into a
7093
+ * single deterministically-ordered array. Sorted by `severity`
7094
+ * (`blocking` first, then `advisory`, then `mechanical`), then
7095
+ * `category` (alphabetical), then `location.file`,
7096
+ * `location.line`, `subject`. Provided so consumers that don't
7097
+ * need the category grouping can iterate one array and see the
7098
+ * merge-blocking findings at the top.
7099
+ */
7100
+ readonly findings: ReadonlyArray<AuditFinding>;
7101
+ }
7102
+ /**
7103
+ * JSON-Schema-shaped descriptor for {@link AuditReport}. Returned by
7104
+ * {@link auditReportJsonSchema} so downstream tooling (e.g. ajv)
7105
+ * can validate persisted reports without re-importing the TS
7106
+ * types. The shape is hand-authored and deliberately permissive on
7107
+ * forward-compatible additions (extra category keys are forbidden;
7108
+ * extra finding fields are permitted).
7109
+ *
7110
+ * Returned as a plain JSON-shaped record — callers that want to
7111
+ * feed it into ajv or another validator pass it through directly.
7112
+ */
7113
+ declare function auditReportJsonSchema(): Record<string, unknown>;
7114
+
7115
+ /**
7116
+ * Default subdirectory beneath the repo root where audit reports are
7117
+ * persisted. Mirrors the path declared on issue #518's acceptance
7118
+ * criteria: `.claude/state/docs-sync/<N>-audit.json`.
7119
+ */
7120
+ declare const DEFAULT_AUDIT_REPORT_DIR = ".claude/state/docs-sync";
7121
+ /**
7122
+ * Stable iteration order for category keys. Matches the order they
7123
+ * appear in the persisted report and the order they ran during the
7124
+ * scan (API surface diff first, then TSDoc, then references, then
7125
+ * the docs-only checks). The order is part of the contract — a
7126
+ * consumer that walks `Object.keys(report.categories)` sees this
7127
+ * order on every read.
7128
+ */
7129
+ declare const AUDIT_CATEGORY_ORDER: ReadonlyArray<AuditCategory>;
7130
+ /**
7131
+ * One drift-check runner. The scan orchestrator invokes each
7132
+ * runner in registration order, collects the findings, and merges
7133
+ * them into the persisted report. Runners are intentionally
7134
+ * synchronous to keep the scaffold simple — children #519 and
7135
+ * #520 may introduce async runners by adding a parallel
7136
+ * `AsyncAuditCheckRunner` shape if needed.
7137
+ *
7138
+ * Runners are pure functions: given the same context they should
7139
+ * produce the same finding list. The scan orchestrator does not
7140
+ * sandbox them — a runner that mutates the filesystem or shells
7141
+ * out is on its own honor.
7142
+ */
7143
+ interface AuditCheckRunner {
7144
+ /**
7145
+ * Stable name used in diagnostics and logs. Conventionally
7146
+ * matches the category the runner produces findings in (e.g.
7147
+ * `apiDiff`, `tsdocCoverage`).
7148
+ */
7149
+ readonly name: string;
7150
+ /**
7151
+ * Compute the findings for this check. Runners must return
7152
+ * already-validated finding records — the orchestrator does not
7153
+ * post-process category, severity, or location.
7154
+ */
7155
+ run(context: AuditCheckRunnerContext): ReadonlyArray<AuditFinding>;
7156
+ }
7157
+ /**
7158
+ * Context passed to every check runner. Carries the same fields
7159
+ * the orchestrator needs to populate the report header so runners
7160
+ * can consult them when computing their findings (e.g. resolve
7161
+ * relative paths against `repoRoot`).
7162
+ */
7163
+ interface AuditCheckRunnerContext {
7164
+ readonly repoRoot: string;
7165
+ readonly mode: AuditMode;
7166
+ readonly scope: string;
7167
+ readonly issueNumber: number;
7168
+ }
7169
+ /**
7170
+ * Options accepted by {@link runScan}.
7171
+ */
7172
+ interface RunScanOptions {
7173
+ /**
7174
+ * Absolute path to the repository root the scan runs against.
7175
+ * The audit report's `repoRoot` field is set to this value
7176
+ * verbatim — pass an absolute path so consumers reading the
7177
+ * report on a different checkout can rewrite paths reliably.
7178
+ */
7179
+ readonly repoRoot: string;
7180
+ /**
7181
+ * Tracking-issue number the scan ran for. Determines the
7182
+ * persisted filename (`<issueNumber>-audit.json`).
7183
+ */
7184
+ readonly issueNumber: number;
7185
+ /**
7186
+ * Invocation mode — `pr` for diff-scoped runs, `audit` for
7187
+ * full-repo runs.
7188
+ */
7189
+ readonly mode: AuditMode;
7190
+ /**
7191
+ * Optional free-form scope label. Persisted on the report and
7192
+ * forwarded to every runner. Defaults to the empty string.
7193
+ */
7194
+ readonly scope?: string;
7195
+ /**
7196
+ * Drift-check runners to invoke in order. Empty by default —
7197
+ * #518 ships the orchestrator skeleton without any wired
7198
+ * checks; #519 and #520 plug them in.
7199
+ */
7200
+ readonly checks?: ReadonlyArray<AuditCheckRunner>;
7201
+ /**
7202
+ * Override the timestamp embedded on the report. Used in tests
7203
+ * to make output deterministic. Defaults to `new Date()` at
7204
+ * scan start.
7205
+ */
7206
+ readonly now?: Date;
7207
+ /**
7208
+ * When `true`, persist the report to disk under
7209
+ * `<repoRoot>/<reportDir>/<issueNumber>-audit.json`. When
7210
+ * `false` (the default), the report is returned in memory only.
7211
+ *
7212
+ * @default false
7213
+ */
7214
+ readonly persist?: boolean;
7215
+ /**
7216
+ * Override the directory the report is written to (relative to
7217
+ * {@link RunScanOptions.repoRoot}). Defaults to
7218
+ * {@link DEFAULT_AUDIT_REPORT_DIR}.
7219
+ *
7220
+ * @default ".claude/state/docs-sync"
7221
+ */
7222
+ readonly reportDir?: string;
7223
+ }
7224
+ /**
7225
+ * Result returned by {@link runScan}. Always carries the report;
7226
+ * `reportPath` is non-empty only when persistence was requested.
7227
+ */
7228
+ interface RunScanResult {
7229
+ /**
7230
+ * The report produced by the scan. Schema-compliant whether or
7231
+ * not any checks ran — empty `categories` arrays are persisted
7232
+ * explicitly.
7233
+ */
7234
+ readonly report: AuditReport;
7235
+ /**
7236
+ * Absolute path the report was persisted to. Empty string when
7237
+ * `persist` was `false`.
7238
+ */
7239
+ readonly reportPath: string;
7240
+ }
7241
+ /**
7242
+ * Run the docs-sync scan phase. Invokes every registered check
7243
+ * runner in order, merges the findings into a single
7244
+ * schema-compliant {@link AuditReport}, and optionally persists
7245
+ * the report to `<repoRoot>/<reportDir>/<issueNumber>-audit.json`.
7246
+ *
7247
+ * #518 ships this function with an **empty default check list**:
7248
+ * invoking `runScan({ repoRoot, issueNumber, mode: "pr" })`
7249
+ * produces a report whose `findings` and per-category arrays are
7250
+ * all empty. Children #519 and #520 register the real checks by
7251
+ * passing them via the `checks` option.
7252
+ */
7253
+ declare function runScan(options: RunScanOptions): RunScanResult;
7254
+ /**
7255
+ * Compute the final {@link AuditReport} from a flat list of
7256
+ * findings. Group by category, sort each bucket deterministically,
7257
+ * and produce the flat `findings` aggregation in the documented
7258
+ * order. Exported so #519 / #520 can build reports incrementally
7259
+ * without re-running the whole scan.
7260
+ */
7261
+ declare function buildReport(args: {
7262
+ readonly issueNumber: number;
7263
+ readonly mode: AuditMode;
7264
+ readonly scope: string;
7265
+ readonly repoRoot: string;
7266
+ readonly generatedAt: Date;
7267
+ readonly findings: ReadonlyArray<AuditFinding>;
7268
+ }): AuditReport;
7269
+ /**
7270
+ * Persist an {@link AuditReport} to disk. The directory is created
7271
+ * recursively when missing; the file is written atomically via a
7272
+ * temp-file + rename so a partial write never produces a corrupt
7273
+ * report.
7274
+ */
7275
+ declare function persistAuditReport(args: {
7276
+ readonly report: AuditReport;
7277
+ readonly repoRoot: string;
7278
+ readonly reportDir?: string;
7279
+ }): string;
7280
+ /**
7281
+ * Build an empty {@link AuditReport.categories} record with every
7282
+ * key explicitly set to an empty array. Exported so callers that
7283
+ * stub the report shape in tests don't have to repeat the keys.
7284
+ */
7285
+ declare function emptyCategoryBuckets(): {
7286
+ apiDiff: Array<AuditFinding & {
7287
+ category: typeof AuditCategory.ApiDiff;
7288
+ }>;
7289
+ tsdocCoverage: Array<AuditFinding & {
7290
+ category: typeof AuditCategory.TsdocCoverage;
7291
+ }>;
7292
+ referenceMismatches: Array<AuditFinding & {
7293
+ category: typeof AuditCategory.ReferenceMismatches;
7294
+ }>;
7295
+ linkFailures: Array<AuditFinding & {
7296
+ category: typeof AuditCategory.LinkFailures;
7297
+ }>;
7298
+ sampleFailures: Array<AuditFinding & {
7299
+ category: typeof AuditCategory.SampleFailures;
7300
+ }>;
7301
+ };
7302
+
6753
7303
  /**
6754
7304
  * One row in the TSDoc-coverage report — describes a single public
6755
7305
  * symbol exported (transitively) from the package's entry point and
@@ -8768,5 +9318,5 @@ declare const COMPLETE_JOB_ID = "complete";
8768
9318
  */
8769
9319
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
8770
9320
 
8771
- export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, 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_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, DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, 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, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, customerProfileBundle, docsSyncBundle, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, 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, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
8772
- export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiExtractorOptions, ApiExtractorReportOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, 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, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PreflightMergeMethod, PreflightPrConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedPreflightPr, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedUnblockDependents, ResolvedWorkflowDiagrams, RunRatioConfig, SampleCompilationFailure, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TsDocCoverageRecord, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowDiagramsConfig };
9321
+ 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, DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, DOCS_SYNC_AUDIT_SCHEMA_VERSION, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, 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, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
9322
+ 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, ResolvedWorkflowDiagrams, 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, WorkflowDiagramsConfig };