@codedrifters/configulator 0.0.405 → 0.0.407
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 +286 -21
- package/lib/index.d.ts +287 -22
- package/lib/index.js +1460 -780
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1443 -780
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -4437,6 +4437,14 @@ interface BundleOwnership {
|
|
|
4437
4437
|
* workflows file `gh issue create` recipes). Drives the
|
|
4438
4438
|
* auto-suppression of the `issue-templates-convention` rule when no
|
|
4439
4439
|
* such bundle is active.
|
|
4440
|
+
*
|
|
4441
|
+
* Not an exhaustive enumerator of issue-filing bundles. Only bundles
|
|
4442
|
+
* that own a cross-bundle surface appear in {@link BUNDLE_OWNERSHIP}
|
|
4443
|
+
* at all, so a bundle can file issues and still be absent — the
|
|
4444
|
+
* `upstream-configulator-docs` bundle files into a *foreign* repo
|
|
4445
|
+
* (`codedrifters/packages`) and is deliberately not registered.
|
|
4446
|
+
* Treat a `true` here as "this bundle's phase labels need the
|
|
4447
|
+
* templates convention", not as "these are all the filing sites".
|
|
4440
4448
|
*/
|
|
4441
4449
|
readonly downstreamIssueKinds: boolean;
|
|
4442
4450
|
}
|
|
@@ -5928,6 +5936,146 @@ declare const peopleProfileBundle: AgentRuleBundle;
|
|
|
5928
5936
|
*/
|
|
5929
5937
|
declare const pnpmBundle: AgentRuleBundle;
|
|
5930
5938
|
|
|
5939
|
+
/**
|
|
5940
|
+
* The GitHub **issue type** vocabulary this convention assigns.
|
|
5941
|
+
*
|
|
5942
|
+
* An issue type is a first-class GitHub field (Epic / Feature / Bug /
|
|
5943
|
+
* Task) and is a completely different axis from the `type:*` **label**
|
|
5944
|
+
* taxonomy:
|
|
5945
|
+
*
|
|
5946
|
+
* - `type:<bundle>` / `type:<conventional-commit>` — a *label*. Routing
|
|
5947
|
+
* and dedup signal. Owned by {@link BUNDLE_OWNERSHIP} and set with
|
|
5948
|
+
* `gh issue create --label`.
|
|
5949
|
+
* - GitHub issue type — a *field*. Human triage, Epic-relationship
|
|
5950
|
+
* tracking, and reporting signal. `gh issue create` cannot set it, so
|
|
5951
|
+
* it is applied immediately after creation via the
|
|
5952
|
+
* `updateIssueIssueType` GraphQL mutation.
|
|
5953
|
+
*
|
|
5954
|
+
* Conflating the two is the single most common mistake in this area, so
|
|
5955
|
+
* both this module and the prose it renders keep them explicitly apart.
|
|
5956
|
+
*/
|
|
5957
|
+
declare const GITHUB_ISSUE_TYPES: readonly ["Epic", "Feature", "Bug", "Task"];
|
|
5958
|
+
type GithubIssueType = (typeof GITHUB_ISSUE_TYPES)[number];
|
|
5959
|
+
/**
|
|
5960
|
+
* The issue type every title prefix maps to unless it is one of the
|
|
5961
|
+
* three explicit exceptions in {@link NON_DEFAULT_TITLE_PREFIX_TYPES}.
|
|
5962
|
+
*
|
|
5963
|
+
* Every bundle-phase prefix (`company:`, `req:`, `bcm:`, `software:`,
|
|
5964
|
+
* …) lands here, which is why agent-enqueued downstream issues are
|
|
5965
|
+
* almost always `Task` — the phased pipelines file work items, not
|
|
5966
|
+
* features or bug reports.
|
|
5967
|
+
*/
|
|
5968
|
+
declare const DEFAULT_GITHUB_ISSUE_TYPE: GithubIssueType;
|
|
5969
|
+
/**
|
|
5970
|
+
* Canonical issue-title-prefix → GitHub issue type map.
|
|
5971
|
+
*
|
|
5972
|
+
* Derived from {@link CONVENTIONAL_COMMIT_TYPE_LABELS} — the shared
|
|
5973
|
+
* conventional-commit vocabulary exported alongside the bundle
|
|
5974
|
+
* ownership registry — so the prefix list can never drift from the
|
|
5975
|
+
* label list the create-issue workflow stamps. Every conventional-commit
|
|
5976
|
+
* prefix defaults to `Task`; the three exceptions are overlaid on top.
|
|
5977
|
+
*
|
|
5978
|
+
* Prefixes carry their trailing colon (`"feat:"`) to match the way the
|
|
5979
|
+
* title conventions write them.
|
|
5980
|
+
*/
|
|
5981
|
+
declare const GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX: Readonly<Record<string, GithubIssueType>>;
|
|
5982
|
+
/**
|
|
5983
|
+
* Resolve an issue **title** to the GitHub issue type it must carry.
|
|
5984
|
+
*
|
|
5985
|
+
* Anything that is not one of the four recognised non-default prefixes
|
|
5986
|
+
* — including every bundle-phase prefix (`company:research: …`) and a
|
|
5987
|
+
* title with no prefix at all — resolves to
|
|
5988
|
+
* {@link DEFAULT_GITHUB_ISSUE_TYPE}.
|
|
5989
|
+
*/
|
|
5990
|
+
declare function githubIssueTypeForTitle(title: string): GithubIssueType;
|
|
5991
|
+
/**
|
|
5992
|
+
* Path to the `set-issue-type.sh` helper the `github-workflow` bundle
|
|
5993
|
+
* ships. Referenced (never assumed present) by the rendered prose — see
|
|
5994
|
+
* {@link renderGithubIssueTypeSectionLines} for the fallback that keeps
|
|
5995
|
+
* the recipe working for consumers who exclude that bundle.
|
|
5996
|
+
*/
|
|
5997
|
+
declare const SET_ISSUE_TYPE_HELPER_PATH = ".claude/procedures/set-issue-type.sh";
|
|
5998
|
+
/**
|
|
5999
|
+
* The two-step `updateIssueIssueType` GraphQL flow, rendered as shell.
|
|
6000
|
+
*
|
|
6001
|
+
* `set-issue-type.sh` wraps exactly this flow, but that helper ships
|
|
6002
|
+
* **only** via the `github-workflow` bundle. Any recipe outside that
|
|
6003
|
+
* bundle that cited the helper unconditionally would be broken for a
|
|
6004
|
+
* consumer running `excludeBundles: ["github-workflow"]`, so the
|
|
6005
|
+
* fallback is documented inline in an always-on base rule and every
|
|
6006
|
+
* per-filing-site step points at it.
|
|
6007
|
+
*/
|
|
6008
|
+
declare function renderSetIssueTypeFallbackLines(): Array<string>;
|
|
6009
|
+
/**
|
|
6010
|
+
* Render the **GitHub Issue Type** section of the always-on
|
|
6011
|
+
* `issue-conventions` rule.
|
|
6012
|
+
*
|
|
6013
|
+
* The section is the single canonical answer to "how does an agent set
|
|
6014
|
+
* an issue's type?", and it is rendered into an `ALWAYS`-scoped base
|
|
6015
|
+
* rule precisely so every downstream filing site can cite it in one
|
|
6016
|
+
* line regardless of which optional bundles the consumer enabled.
|
|
6017
|
+
*
|
|
6018
|
+
* It documents both paths deliberately:
|
|
6019
|
+
*
|
|
6020
|
+
* 1. The `set-issue-type.sh` one-liner, when `github-workflow` is
|
|
6021
|
+
* active.
|
|
6022
|
+
* 2. The inline GraphQL fallback, when it is not.
|
|
6023
|
+
*/
|
|
6024
|
+
declare function renderGithubIssueTypeSectionLines(): Array<string>;
|
|
6025
|
+
/**
|
|
6026
|
+
* Render the title-prefix → issue-type mapping as a markdown bullet
|
|
6027
|
+
* list, for recipes that present it inline rather than as a table (the
|
|
6028
|
+
* interactive create-issue workflow's step 3).
|
|
6029
|
+
*
|
|
6030
|
+
* Grouping matches the table in {@link renderGithubIssueTypeSectionLines}:
|
|
6031
|
+
* one bullet per non-default prefix, then a single bullet collapsing
|
|
6032
|
+
* every prefix that maps to {@link DEFAULT_GITHUB_ISSUE_TYPE}.
|
|
6033
|
+
*/
|
|
6034
|
+
declare function renderTitlePrefixTypeBullets(indent?: string): Array<string>;
|
|
6035
|
+
/** String form of {@link renderGithubIssueTypeSectionLines}. */
|
|
6036
|
+
declare function renderGithubIssueTypeSection(): string;
|
|
6037
|
+
/** Options for {@link renderIssueTypeAssignmentStep}. */
|
|
6038
|
+
interface IssueTypeAssignmentStepOptions {
|
|
6039
|
+
/**
|
|
6040
|
+
* Leading whitespace prepended to every rendered line so the step
|
|
6041
|
+
* nests correctly under the numbered/bulleted filing recipe it
|
|
6042
|
+
* follows. Defaults to the three spaces a top-level numbered list
|
|
6043
|
+
* item continues with.
|
|
6044
|
+
*/
|
|
6045
|
+
readonly indent?: string;
|
|
6046
|
+
/**
|
|
6047
|
+
* The GitHub issue type the filed issue must carry. Defaults to
|
|
6048
|
+
* {@link DEFAULT_GITHUB_ISSUE_TYPE}, which is correct for every
|
|
6049
|
+
* bundle-phase-prefixed downstream issue.
|
|
6050
|
+
*/
|
|
6051
|
+
readonly issueType?: GithubIssueType;
|
|
6052
|
+
/**
|
|
6053
|
+
* Render the step as a markdown list item (`- …` with hanging
|
|
6054
|
+
* continuation lines) instead of a paragraph. Used at the handful of
|
|
6055
|
+
* filing recipes that specify the issue with a bullet list rather
|
|
6056
|
+
* than numbered prose.
|
|
6057
|
+
*/
|
|
6058
|
+
readonly bullet?: boolean;
|
|
6059
|
+
}
|
|
6060
|
+
/**
|
|
6061
|
+
* Render the compact "now set the issue type" step appended to every
|
|
6062
|
+
* bundle-shipped downstream filing recipe.
|
|
6063
|
+
*
|
|
6064
|
+
* Kept deliberately short: it appears at ~45 filing sites across the
|
|
6065
|
+
* phased-pipeline bundles, so it names the concrete type, calls out that
|
|
6066
|
+
* the `type:*` label is a different field, gives the command, and
|
|
6067
|
+
* delegates the fallback to the always-on `issue-conventions` rule
|
|
6068
|
+
* rather than re-inlining the GraphQL flow at every site.
|
|
6069
|
+
*/
|
|
6070
|
+
declare function renderIssueTypeAssignmentStep(options?: IssueTypeAssignmentStepOptions): Array<string>;
|
|
6071
|
+
/**
|
|
6072
|
+
* Render the phase-wide variant of {@link renderIssueTypeAssignmentStep}
|
|
6073
|
+
* for a workflow phase that files several kinds of issue across several
|
|
6074
|
+
* steps, where repeating the per-recipe step at each one would bloat the
|
|
6075
|
+
* prompt without adding information.
|
|
6076
|
+
*/
|
|
6077
|
+
declare function renderIssueTypeAssignmentBlanket(indent?: string, issueType?: GithubIssueType): Array<string>;
|
|
6078
|
+
|
|
5931
6079
|
/**
|
|
5932
6080
|
* Default master switch for the issue-templates convention. When no
|
|
5933
6081
|
* config is supplied the convention ships **enabled** so every
|
|
@@ -5995,21 +6143,52 @@ declare const DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS: ReadonlyArray<string
|
|
|
5995
6143
|
*/
|
|
5996
6144
|
declare const DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER = false;
|
|
5997
6145
|
/**
|
|
5998
|
-
* Default for whether the convention emits
|
|
5999
|
-
*
|
|
6000
|
-
*
|
|
6001
|
-
*
|
|
6002
|
-
*
|
|
6003
|
-
*
|
|
6146
|
+
* Default for whether the convention emits the issue-templates
|
|
6147
|
+
* scaffold to disk. The scaffold is two files:
|
|
6148
|
+
*
|
|
6149
|
+
* 1. A **write-once** starter page at `<templatesPath>` (projen
|
|
6150
|
+
* `SampleFile`) carrying the expected structure — the "How to use"
|
|
6151
|
+
* preamble and one example `## Template: <phase-label>` section —
|
|
6152
|
+
* which the consumer then fleshes out by hand.
|
|
6153
|
+
* 2. An **always-regenerated** companion page at
|
|
6154
|
+
* {@link issueTemplatesGeneratedPath}, carrying one label-correct
|
|
6155
|
+
* recipe stub per phase label the consumer's active bundles emit.
|
|
6156
|
+
*
|
|
6157
|
+
* The split exists because a `SampleFile` never reaches a consumer
|
|
6158
|
+
* whose page already exists: repos that adopted the convention on an
|
|
6159
|
+
* older configulator would otherwise be frozen on whatever skeleton
|
|
6160
|
+
* shipped that day. Hand-authored bodies stay in the write-once page;
|
|
6161
|
+
* the generated label sets regenerate on every `projen` run so a new
|
|
6162
|
+
* phase label reaches every consumer on their next upgrade.
|
|
6004
6163
|
*
|
|
6005
|
-
* Disabled by default because the
|
|
6006
|
-
*
|
|
6007
|
-
*
|
|
6008
|
-
* content.
|
|
6164
|
+
* Disabled by default because the hand-authored page conflicts with
|
|
6165
|
+
* the ad-hoc notes most repos already maintain when they adopt the
|
|
6166
|
+
* convention.
|
|
6009
6167
|
*
|
|
6010
6168
|
* @see IssueTemplatesConfig
|
|
6011
6169
|
*/
|
|
6012
6170
|
declare const DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER = false;
|
|
6171
|
+
/**
|
|
6172
|
+
* Filename suffix appended to the templates page's stem to derive the
|
|
6173
|
+
* always-regenerated companion page. Chosen so the companion can never
|
|
6174
|
+
* collide with a hand-authored router layout that splits recipes into
|
|
6175
|
+
* `<stem>/<child>.md` sibling pages.
|
|
6176
|
+
*/
|
|
6177
|
+
declare const ISSUE_TEMPLATES_GENERATED_SUFFIX = "-generated";
|
|
6178
|
+
/**
|
|
6179
|
+
* Repo-relative path of the always-regenerated companion page for a
|
|
6180
|
+
* given `templatesPath`: the stem gains
|
|
6181
|
+
* {@link ISSUE_TEMPLATES_GENERATED_SUFFIX} and keeps its extension
|
|
6182
|
+
* (`…/issue-templates.md` → `…/issue-templates-generated.md`).
|
|
6183
|
+
*/
|
|
6184
|
+
declare function issueTemplatesGeneratedPath(templatesPath: string): string;
|
|
6185
|
+
/**
|
|
6186
|
+
* Glob matching the sibling child pages of a router-style templates
|
|
6187
|
+
* layout (`…/issue-templates.md` → `…/issue-templates/*.md`). The
|
|
6188
|
+
* label-consistency lint walks these so a repo that split its recipes
|
|
6189
|
+
* across child pages is checked against the same map.
|
|
6190
|
+
*/
|
|
6191
|
+
declare function issueTemplatesChildGlob(templatesPath: string): string;
|
|
6013
6192
|
/**
|
|
6014
6193
|
* Default for whether the rendered rule body asserts that every
|
|
6015
6194
|
* `gh issue create` recipe in a bundle or agent prompt **MUST** cite
|
|
@@ -6088,18 +6267,75 @@ declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates, has
|
|
|
6088
6267
|
*/
|
|
6089
6268
|
declare function renderIssueTemplatesBundleHook(it: ResolvedIssueTemplates, bundleLabel: string): string;
|
|
6090
6269
|
/**
|
|
6091
|
-
* Render
|
|
6092
|
-
*
|
|
6093
|
-
*
|
|
6094
|
-
* consumer opts in via
|
|
6270
|
+
* Render the write-once starter issue-templates page — the frontmatter,
|
|
6271
|
+
* the "How to use" preamble, a pointer at the always-regenerated
|
|
6272
|
+
* label-set companion, and a single example template section. Exported
|
|
6273
|
+
* so `AgentConfig` can emit it to disk when the consumer opts in via
|
|
6274
|
+
* `emitStarterDoc: true`.
|
|
6095
6275
|
*
|
|
6096
|
-
* The starter
|
|
6097
|
-
* structure without committing the consumer to a particular
|
|
6098
|
-
*
|
|
6099
|
-
* page
|
|
6100
|
-
*
|
|
6276
|
+
* The starter stays deliberately sparse on **bodies**: it documents the
|
|
6277
|
+
* expected structure without committing the consumer to a particular
|
|
6278
|
+
* body shape. The correct-by-construction **label sets** live in the
|
|
6279
|
+
* companion page this one links to, which regenerates on every synth —
|
|
6280
|
+
* so a write-once starter can never freeze a consumer on a stale label
|
|
6281
|
+
* taxonomy.
|
|
6101
6282
|
*/
|
|
6102
|
-
declare function renderIssueTemplatesStarterPage(
|
|
6283
|
+
declare function renderIssueTemplatesStarterPage(it: ResolvedIssueTemplates): string;
|
|
6284
|
+
/*******************************************************************************
|
|
6285
|
+
*
|
|
6286
|
+
* Generated recipe stubs
|
|
6287
|
+
*
|
|
6288
|
+
******************************************************************************/
|
|
6289
|
+
/**
|
|
6290
|
+
* One correct-by-construction recipe stub: a phase label plus every
|
|
6291
|
+
* label the recipe must carry, all derived rather than hand-copied.
|
|
6292
|
+
*/
|
|
6293
|
+
interface IssueTemplateRecipeStub {
|
|
6294
|
+
/** The phase label the recipe files (e.g. `people:research`). */
|
|
6295
|
+
readonly phaseLabel: string;
|
|
6296
|
+
/** The `type:<bundle>` label the phase-label invariant requires. */
|
|
6297
|
+
readonly typeLabel: string;
|
|
6298
|
+
/** Bundle that contributes the phase label to `.github/labels.yml`. */
|
|
6299
|
+
readonly bundleName: string;
|
|
6300
|
+
/** The label's registry description, used as the section blurb. */
|
|
6301
|
+
readonly description: string;
|
|
6302
|
+
/** Effective `status:*` value for this phase. */
|
|
6303
|
+
readonly status: IssueDefaultsStatus;
|
|
6304
|
+
/** Effective `priority:*` value for this phase. */
|
|
6305
|
+
readonly priority: IssueDefaultsPriority;
|
|
6306
|
+
/** GitHub issue type the filed issue must be assigned. */
|
|
6307
|
+
readonly issueType: GithubIssueType;
|
|
6308
|
+
}
|
|
6309
|
+
/**
|
|
6310
|
+
* Derive one recipe stub per phase label the supplied bundles
|
|
6311
|
+
* contribute to `.github/labels.yml`.
|
|
6312
|
+
*
|
|
6313
|
+
* A contributed label counts as a phase label exactly when
|
|
6314
|
+
* `typeLabelForPhaseLabel` resolves it — i.e. when the canonical
|
|
6315
|
+
* bundle-ownership map claims it. That is the *same* map that drives
|
|
6316
|
+
* the label registry and the orchestrator's phase-label invariant, so
|
|
6317
|
+
* a generated stub can never pair a phase label with the wrong
|
|
6318
|
+
* `type:<bundle>` label. Consumer-specific labels no bundle owns are
|
|
6319
|
+
* skipped rather than guessed at.
|
|
6320
|
+
*
|
|
6321
|
+
* Results are deduplicated by phase label (co-owned `req:*` labels are
|
|
6322
|
+
* contributed by more than one requirements bundle) and sorted so the
|
|
6323
|
+
* rendered page is stable across synth runs.
|
|
6324
|
+
*/
|
|
6325
|
+
declare function collectIssueTemplateRecipeStubs(bundles: ReadonlyArray<AgentRuleBundle>, issueDefaults?: ResolvedIssueDefaults): ReadonlyArray<IssueTemplateRecipeStub>;
|
|
6326
|
+
/**
|
|
6327
|
+
* Render the always-regenerated companion page that carries one
|
|
6328
|
+
* label-correct `## Template: <phase-label>` stub per phase label the
|
|
6329
|
+
* consumer's active bundles emit.
|
|
6330
|
+
*
|
|
6331
|
+
* Only the **label set** and the issue-type assignment are generated —
|
|
6332
|
+
* title and body stay angle-bracket placeholders, so the page is a
|
|
6333
|
+
* correct-by-construction starting point rather than a second source of
|
|
6334
|
+
* truth for recipe bodies. Consumers move a stub into their
|
|
6335
|
+
* hand-authored templates page and flesh out its body there; the
|
|
6336
|
+
* label-consistency lint then holds both copies to the same pairing.
|
|
6337
|
+
*/
|
|
6338
|
+
declare function renderIssueTemplatesGeneratedPage(it: ResolvedIssueTemplates, stubs: ReadonlyArray<IssueTemplateRecipeStub>): string;
|
|
6103
6339
|
/**
|
|
6104
6340
|
* Render the `.claude/procedures/check-issue-templates.sh` helper
|
|
6105
6341
|
* script. Exported so `AgentConfig` can register it as an
|
|
@@ -6117,6 +6353,35 @@ declare function renderIssueTemplatesStarterPage(_it: ResolvedIssueTemplates): s
|
|
|
6117
6353
|
* page itself and the `create-issue-workflow` rule source).
|
|
6118
6354
|
*/
|
|
6119
6355
|
declare function renderIssueTemplatesCheckerScript(it: ResolvedIssueTemplates): string;
|
|
6356
|
+
/**
|
|
6357
|
+
* Render the `.claude/procedures/check-issue-template-labels.sh`
|
|
6358
|
+
* companion lint. Exported so `AgentConfig` can emit it alongside the
|
|
6359
|
+
* reference-don't-inline lint when the consumer opts in via
|
|
6360
|
+
* `emitChecker: true`.
|
|
6361
|
+
*
|
|
6362
|
+
* Where `check-issue-templates.sh` polices *where* recipes live, this
|
|
6363
|
+
* one polices *what they say*. For every
|
|
6364
|
+
* `## Template: <phase-label>` section on the templates page, its
|
|
6365
|
+
* router-style child pages, and the generated companion, it asserts:
|
|
6366
|
+
*
|
|
6367
|
+
* 1. The recipe passes `--label <phase-label>` — the heading and the
|
|
6368
|
+
* command agree.
|
|
6369
|
+
* 2. It carries exactly one `type:*` label, and that label is the
|
|
6370
|
+
* `type:<bundle>` the phase-label invariant requires.
|
|
6371
|
+
* 3. It carries a GitHub issue-type assignment step (the
|
|
6372
|
+
* `set-issue-type.sh` helper or the `updateIssueIssueType` GraphQL
|
|
6373
|
+
* flow it wraps) — an issue filed without one stays untyped forever.
|
|
6374
|
+
*
|
|
6375
|
+
* Sections whose heading matches no bundle-owned phase label are
|
|
6376
|
+
* skipped, not failed: unrecognised `foo:bar` labels are
|
|
6377
|
+
* consumer-specific and deliberately not policed, exactly as the
|
|
6378
|
+
* orchestrator's invariant sweep treats them.
|
|
6379
|
+
*
|
|
6380
|
+
* The phase-label → type-label resolver is rendered from the same
|
|
6381
|
+
* `PHASE_LABEL_TYPE_MAP` that drives the label registry and the
|
|
6382
|
+
* orchestrator sweep, so the lint can never enforce a stale pairing.
|
|
6383
|
+
*/
|
|
6384
|
+
declare function renderIssueTemplateLabelsCheckerScript(it: ResolvedIssueTemplates): string;
|
|
6120
6385
|
|
|
6121
6386
|
/**
|
|
6122
6387
|
* Default master switch for the progress-file convention. When no
|
|
@@ -13731,4 +13996,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
13731
13996
|
*/
|
|
13732
13997
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
13733
13998
|
|
|
13734
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PHASE_LABEL_TYPE_MAP, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementBlockFields, type RequirementCategoryDirsConfig, RequirementIssueTemplate, type RequirementIssueTemplateOptions, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, type TurboRunContinue, type TurboRunDryRun, type TurboRunLogOrder, type TurboRunLogPrefix, type TurboRunOptions, type TurboRunOutputLogs, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkWatch, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
13999
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_GITHUB_ISSUE_TYPE, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type GithubIssueType, type IDependencyResolver, ISSUE_TEMPLATES_GENERATED_SUFFIX, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplateRecipeStub, type IssueTemplatesConfig, type IssueTypeAssignmentStepOptions, 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, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PHASE_LABEL_TYPE_MAP, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementBlockFields, type RequirementCategoryDirsConfig, RequirementIssueTemplate, type RequirementIssueTemplateOptions, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, type TurboRunContinue, type TurboRunDryRun, type TurboRunLogOrder, type TurboRunLogPrefix, type TurboRunOptions, type TurboRunOutputLogs, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, collectIssueTemplateRecipeStubs, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubIssueTypeForTitle, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, issueTemplatesChildGlob, issueTemplatesGeneratedPath, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkWatch, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderIssueTemplateLabelsCheckerScript, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesGeneratedPage, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderIssueTypeAssignmentBlanket, renderIssueTypeAssignmentStep, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSetIssueTypeFallbackLines, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|