@codedrifters/configulator 0.0.406 → 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 +285 -160
- package/lib/index.d.ts +286 -161
- package/lib/index.js +482 -89
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +476 -89
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4486,6 +4486,14 @@ interface BundleOwnership {
|
|
|
4486
4486
|
* workflows file `gh issue create` recipes). Drives the
|
|
4487
4487
|
* auto-suppression of the `issue-templates-convention` rule when no
|
|
4488
4488
|
* such bundle is active.
|
|
4489
|
+
*
|
|
4490
|
+
* Not an exhaustive enumerator of issue-filing bundles. Only bundles
|
|
4491
|
+
* that own a cross-bundle surface appear in {@link BUNDLE_OWNERSHIP}
|
|
4492
|
+
* at all, so a bundle can file issues and still be absent — the
|
|
4493
|
+
* `upstream-configulator-docs` bundle files into a *foreign* repo
|
|
4494
|
+
* (`codedrifters/packages`) and is deliberately not registered.
|
|
4495
|
+
* Treat a `true` here as "this bundle's phase labels need the
|
|
4496
|
+
* templates convention", not as "these are all the filing sites".
|
|
4489
4497
|
*/
|
|
4490
4498
|
readonly downstreamIssueKinds: boolean;
|
|
4491
4499
|
}
|
|
@@ -5977,6 +5985,146 @@ declare const peopleProfileBundle: AgentRuleBundle;
|
|
|
5977
5985
|
*/
|
|
5978
5986
|
declare const pnpmBundle: AgentRuleBundle;
|
|
5979
5987
|
|
|
5988
|
+
/**
|
|
5989
|
+
* The GitHub **issue type** vocabulary this convention assigns.
|
|
5990
|
+
*
|
|
5991
|
+
* An issue type is a first-class GitHub field (Epic / Feature / Bug /
|
|
5992
|
+
* Task) and is a completely different axis from the `type:*` **label**
|
|
5993
|
+
* taxonomy:
|
|
5994
|
+
*
|
|
5995
|
+
* - `type:<bundle>` / `type:<conventional-commit>` — a *label*. Routing
|
|
5996
|
+
* and dedup signal. Owned by {@link BUNDLE_OWNERSHIP} and set with
|
|
5997
|
+
* `gh issue create --label`.
|
|
5998
|
+
* - GitHub issue type — a *field*. Human triage, Epic-relationship
|
|
5999
|
+
* tracking, and reporting signal. `gh issue create` cannot set it, so
|
|
6000
|
+
* it is applied immediately after creation via the
|
|
6001
|
+
* `updateIssueIssueType` GraphQL mutation.
|
|
6002
|
+
*
|
|
6003
|
+
* Conflating the two is the single most common mistake in this area, so
|
|
6004
|
+
* both this module and the prose it renders keep them explicitly apart.
|
|
6005
|
+
*/
|
|
6006
|
+
declare const GITHUB_ISSUE_TYPES: readonly ["Epic", "Feature", "Bug", "Task"];
|
|
6007
|
+
type GithubIssueType = (typeof GITHUB_ISSUE_TYPES)[number];
|
|
6008
|
+
/**
|
|
6009
|
+
* The issue type every title prefix maps to unless it is one of the
|
|
6010
|
+
* three explicit exceptions in {@link NON_DEFAULT_TITLE_PREFIX_TYPES}.
|
|
6011
|
+
*
|
|
6012
|
+
* Every bundle-phase prefix (`company:`, `req:`, `bcm:`, `software:`,
|
|
6013
|
+
* …) lands here, which is why agent-enqueued downstream issues are
|
|
6014
|
+
* almost always `Task` — the phased pipelines file work items, not
|
|
6015
|
+
* features or bug reports.
|
|
6016
|
+
*/
|
|
6017
|
+
declare const DEFAULT_GITHUB_ISSUE_TYPE: GithubIssueType;
|
|
6018
|
+
/**
|
|
6019
|
+
* Canonical issue-title-prefix → GitHub issue type map.
|
|
6020
|
+
*
|
|
6021
|
+
* Derived from {@link CONVENTIONAL_COMMIT_TYPE_LABELS} — the shared
|
|
6022
|
+
* conventional-commit vocabulary exported alongside the bundle
|
|
6023
|
+
* ownership registry — so the prefix list can never drift from the
|
|
6024
|
+
* label list the create-issue workflow stamps. Every conventional-commit
|
|
6025
|
+
* prefix defaults to `Task`; the three exceptions are overlaid on top.
|
|
6026
|
+
*
|
|
6027
|
+
* Prefixes carry their trailing colon (`"feat:"`) to match the way the
|
|
6028
|
+
* title conventions write them.
|
|
6029
|
+
*/
|
|
6030
|
+
declare const GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX: Readonly<Record<string, GithubIssueType>>;
|
|
6031
|
+
/**
|
|
6032
|
+
* Resolve an issue **title** to the GitHub issue type it must carry.
|
|
6033
|
+
*
|
|
6034
|
+
* Anything that is not one of the four recognised non-default prefixes
|
|
6035
|
+
* — including every bundle-phase prefix (`company:research: …`) and a
|
|
6036
|
+
* title with no prefix at all — resolves to
|
|
6037
|
+
* {@link DEFAULT_GITHUB_ISSUE_TYPE}.
|
|
6038
|
+
*/
|
|
6039
|
+
declare function githubIssueTypeForTitle(title: string): GithubIssueType;
|
|
6040
|
+
/**
|
|
6041
|
+
* Path to the `set-issue-type.sh` helper the `github-workflow` bundle
|
|
6042
|
+
* ships. Referenced (never assumed present) by the rendered prose — see
|
|
6043
|
+
* {@link renderGithubIssueTypeSectionLines} for the fallback that keeps
|
|
6044
|
+
* the recipe working for consumers who exclude that bundle.
|
|
6045
|
+
*/
|
|
6046
|
+
declare const SET_ISSUE_TYPE_HELPER_PATH = ".claude/procedures/set-issue-type.sh";
|
|
6047
|
+
/**
|
|
6048
|
+
* The two-step `updateIssueIssueType` GraphQL flow, rendered as shell.
|
|
6049
|
+
*
|
|
6050
|
+
* `set-issue-type.sh` wraps exactly this flow, but that helper ships
|
|
6051
|
+
* **only** via the `github-workflow` bundle. Any recipe outside that
|
|
6052
|
+
* bundle that cited the helper unconditionally would be broken for a
|
|
6053
|
+
* consumer running `excludeBundles: ["github-workflow"]`, so the
|
|
6054
|
+
* fallback is documented inline in an always-on base rule and every
|
|
6055
|
+
* per-filing-site step points at it.
|
|
6056
|
+
*/
|
|
6057
|
+
declare function renderSetIssueTypeFallbackLines(): Array<string>;
|
|
6058
|
+
/**
|
|
6059
|
+
* Render the **GitHub Issue Type** section of the always-on
|
|
6060
|
+
* `issue-conventions` rule.
|
|
6061
|
+
*
|
|
6062
|
+
* The section is the single canonical answer to "how does an agent set
|
|
6063
|
+
* an issue's type?", and it is rendered into an `ALWAYS`-scoped base
|
|
6064
|
+
* rule precisely so every downstream filing site can cite it in one
|
|
6065
|
+
* line regardless of which optional bundles the consumer enabled.
|
|
6066
|
+
*
|
|
6067
|
+
* It documents both paths deliberately:
|
|
6068
|
+
*
|
|
6069
|
+
* 1. The `set-issue-type.sh` one-liner, when `github-workflow` is
|
|
6070
|
+
* active.
|
|
6071
|
+
* 2. The inline GraphQL fallback, when it is not.
|
|
6072
|
+
*/
|
|
6073
|
+
declare function renderGithubIssueTypeSectionLines(): Array<string>;
|
|
6074
|
+
/**
|
|
6075
|
+
* Render the title-prefix → issue-type mapping as a markdown bullet
|
|
6076
|
+
* list, for recipes that present it inline rather than as a table (the
|
|
6077
|
+
* interactive create-issue workflow's step 3).
|
|
6078
|
+
*
|
|
6079
|
+
* Grouping matches the table in {@link renderGithubIssueTypeSectionLines}:
|
|
6080
|
+
* one bullet per non-default prefix, then a single bullet collapsing
|
|
6081
|
+
* every prefix that maps to {@link DEFAULT_GITHUB_ISSUE_TYPE}.
|
|
6082
|
+
*/
|
|
6083
|
+
declare function renderTitlePrefixTypeBullets(indent?: string): Array<string>;
|
|
6084
|
+
/** String form of {@link renderGithubIssueTypeSectionLines}. */
|
|
6085
|
+
declare function renderGithubIssueTypeSection(): string;
|
|
6086
|
+
/** Options for {@link renderIssueTypeAssignmentStep}. */
|
|
6087
|
+
interface IssueTypeAssignmentStepOptions {
|
|
6088
|
+
/**
|
|
6089
|
+
* Leading whitespace prepended to every rendered line so the step
|
|
6090
|
+
* nests correctly under the numbered/bulleted filing recipe it
|
|
6091
|
+
* follows. Defaults to the three spaces a top-level numbered list
|
|
6092
|
+
* item continues with.
|
|
6093
|
+
*/
|
|
6094
|
+
readonly indent?: string;
|
|
6095
|
+
/**
|
|
6096
|
+
* The GitHub issue type the filed issue must carry. Defaults to
|
|
6097
|
+
* {@link DEFAULT_GITHUB_ISSUE_TYPE}, which is correct for every
|
|
6098
|
+
* bundle-phase-prefixed downstream issue.
|
|
6099
|
+
*/
|
|
6100
|
+
readonly issueType?: GithubIssueType;
|
|
6101
|
+
/**
|
|
6102
|
+
* Render the step as a markdown list item (`- …` with hanging
|
|
6103
|
+
* continuation lines) instead of a paragraph. Used at the handful of
|
|
6104
|
+
* filing recipes that specify the issue with a bullet list rather
|
|
6105
|
+
* than numbered prose.
|
|
6106
|
+
*/
|
|
6107
|
+
readonly bullet?: boolean;
|
|
6108
|
+
}
|
|
6109
|
+
/**
|
|
6110
|
+
* Render the compact "now set the issue type" step appended to every
|
|
6111
|
+
* bundle-shipped downstream filing recipe.
|
|
6112
|
+
*
|
|
6113
|
+
* Kept deliberately short: it appears at ~45 filing sites across the
|
|
6114
|
+
* phased-pipeline bundles, so it names the concrete type, calls out that
|
|
6115
|
+
* the `type:*` label is a different field, gives the command, and
|
|
6116
|
+
* delegates the fallback to the always-on `issue-conventions` rule
|
|
6117
|
+
* rather than re-inlining the GraphQL flow at every site.
|
|
6118
|
+
*/
|
|
6119
|
+
declare function renderIssueTypeAssignmentStep(options?: IssueTypeAssignmentStepOptions): Array<string>;
|
|
6120
|
+
/**
|
|
6121
|
+
* Render the phase-wide variant of {@link renderIssueTypeAssignmentStep}
|
|
6122
|
+
* for a workflow phase that files several kinds of issue across several
|
|
6123
|
+
* steps, where repeating the per-recipe step at each one would bloat the
|
|
6124
|
+
* prompt without adding information.
|
|
6125
|
+
*/
|
|
6126
|
+
declare function renderIssueTypeAssignmentBlanket(indent?: string, issueType?: GithubIssueType): Array<string>;
|
|
6127
|
+
|
|
5980
6128
|
/**
|
|
5981
6129
|
* Default master switch for the issue-templates convention. When no
|
|
5982
6130
|
* config is supplied the convention ships **enabled** so every
|
|
@@ -6044,21 +6192,52 @@ declare const DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS: ReadonlyArray<string
|
|
|
6044
6192
|
*/
|
|
6045
6193
|
declare const DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER = false;
|
|
6046
6194
|
/**
|
|
6047
|
-
* Default for whether the convention emits
|
|
6048
|
-
*
|
|
6049
|
-
*
|
|
6050
|
-
*
|
|
6051
|
-
*
|
|
6052
|
-
*
|
|
6195
|
+
* Default for whether the convention emits the issue-templates
|
|
6196
|
+
* scaffold to disk. The scaffold is two files:
|
|
6197
|
+
*
|
|
6198
|
+
* 1. A **write-once** starter page at `<templatesPath>` (projen
|
|
6199
|
+
* `SampleFile`) carrying the expected structure — the "How to use"
|
|
6200
|
+
* preamble and one example `## Template: <phase-label>` section —
|
|
6201
|
+
* which the consumer then fleshes out by hand.
|
|
6202
|
+
* 2. An **always-regenerated** companion page at
|
|
6203
|
+
* {@link issueTemplatesGeneratedPath}, carrying one label-correct
|
|
6204
|
+
* recipe stub per phase label the consumer's active bundles emit.
|
|
6205
|
+
*
|
|
6206
|
+
* The split exists because a `SampleFile` never reaches a consumer
|
|
6207
|
+
* whose page already exists: repos that adopted the convention on an
|
|
6208
|
+
* older configulator would otherwise be frozen on whatever skeleton
|
|
6209
|
+
* shipped that day. Hand-authored bodies stay in the write-once page;
|
|
6210
|
+
* the generated label sets regenerate on every `projen` run so a new
|
|
6211
|
+
* phase label reaches every consumer on their next upgrade.
|
|
6053
6212
|
*
|
|
6054
|
-
* Disabled by default because the
|
|
6055
|
-
*
|
|
6056
|
-
*
|
|
6057
|
-
* content.
|
|
6213
|
+
* Disabled by default because the hand-authored page conflicts with
|
|
6214
|
+
* the ad-hoc notes most repos already maintain when they adopt the
|
|
6215
|
+
* convention.
|
|
6058
6216
|
*
|
|
6059
6217
|
* @see IssueTemplatesConfig
|
|
6060
6218
|
*/
|
|
6061
6219
|
declare const DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER = false;
|
|
6220
|
+
/**
|
|
6221
|
+
* Filename suffix appended to the templates page's stem to derive the
|
|
6222
|
+
* always-regenerated companion page. Chosen so the companion can never
|
|
6223
|
+
* collide with a hand-authored router layout that splits recipes into
|
|
6224
|
+
* `<stem>/<child>.md` sibling pages.
|
|
6225
|
+
*/
|
|
6226
|
+
declare const ISSUE_TEMPLATES_GENERATED_SUFFIX = "-generated";
|
|
6227
|
+
/**
|
|
6228
|
+
* Repo-relative path of the always-regenerated companion page for a
|
|
6229
|
+
* given `templatesPath`: the stem gains
|
|
6230
|
+
* {@link ISSUE_TEMPLATES_GENERATED_SUFFIX} and keeps its extension
|
|
6231
|
+
* (`…/issue-templates.md` → `…/issue-templates-generated.md`).
|
|
6232
|
+
*/
|
|
6233
|
+
declare function issueTemplatesGeneratedPath(templatesPath: string): string;
|
|
6234
|
+
/**
|
|
6235
|
+
* Glob matching the sibling child pages of a router-style templates
|
|
6236
|
+
* layout (`…/issue-templates.md` → `…/issue-templates/*.md`). The
|
|
6237
|
+
* label-consistency lint walks these so a repo that split its recipes
|
|
6238
|
+
* across child pages is checked against the same map.
|
|
6239
|
+
*/
|
|
6240
|
+
declare function issueTemplatesChildGlob(templatesPath: string): string;
|
|
6062
6241
|
/**
|
|
6063
6242
|
* Default for whether the rendered rule body asserts that every
|
|
6064
6243
|
* `gh issue create` recipe in a bundle or agent prompt **MUST** cite
|
|
@@ -6137,18 +6316,75 @@ declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates, has
|
|
|
6137
6316
|
*/
|
|
6138
6317
|
declare function renderIssueTemplatesBundleHook(it: ResolvedIssueTemplates, bundleLabel: string): string;
|
|
6139
6318
|
/**
|
|
6140
|
-
* Render
|
|
6141
|
-
*
|
|
6142
|
-
*
|
|
6143
|
-
* consumer opts in via
|
|
6319
|
+
* Render the write-once starter issue-templates page — the frontmatter,
|
|
6320
|
+
* the "How to use" preamble, a pointer at the always-regenerated
|
|
6321
|
+
* label-set companion, and a single example template section. Exported
|
|
6322
|
+
* so `AgentConfig` can emit it to disk when the consumer opts in via
|
|
6323
|
+
* `emitStarterDoc: true`.
|
|
6144
6324
|
*
|
|
6145
|
-
* The starter
|
|
6146
|
-
* structure without committing the consumer to a particular
|
|
6147
|
-
*
|
|
6148
|
-
* page
|
|
6149
|
-
*
|
|
6325
|
+
* The starter stays deliberately sparse on **bodies**: it documents the
|
|
6326
|
+
* expected structure without committing the consumer to a particular
|
|
6327
|
+
* body shape. The correct-by-construction **label sets** live in the
|
|
6328
|
+
* companion page this one links to, which regenerates on every synth —
|
|
6329
|
+
* so a write-once starter can never freeze a consumer on a stale label
|
|
6330
|
+
* taxonomy.
|
|
6150
6331
|
*/
|
|
6151
|
-
declare function renderIssueTemplatesStarterPage(
|
|
6332
|
+
declare function renderIssueTemplatesStarterPage(it: ResolvedIssueTemplates): string;
|
|
6333
|
+
/*******************************************************************************
|
|
6334
|
+
*
|
|
6335
|
+
* Generated recipe stubs
|
|
6336
|
+
*
|
|
6337
|
+
******************************************************************************/
|
|
6338
|
+
/**
|
|
6339
|
+
* One correct-by-construction recipe stub: a phase label plus every
|
|
6340
|
+
* label the recipe must carry, all derived rather than hand-copied.
|
|
6341
|
+
*/
|
|
6342
|
+
interface IssueTemplateRecipeStub {
|
|
6343
|
+
/** The phase label the recipe files (e.g. `people:research`). */
|
|
6344
|
+
readonly phaseLabel: string;
|
|
6345
|
+
/** The `type:<bundle>` label the phase-label invariant requires. */
|
|
6346
|
+
readonly typeLabel: string;
|
|
6347
|
+
/** Bundle that contributes the phase label to `.github/labels.yml`. */
|
|
6348
|
+
readonly bundleName: string;
|
|
6349
|
+
/** The label's registry description, used as the section blurb. */
|
|
6350
|
+
readonly description: string;
|
|
6351
|
+
/** Effective `status:*` value for this phase. */
|
|
6352
|
+
readonly status: IssueDefaultsStatus;
|
|
6353
|
+
/** Effective `priority:*` value for this phase. */
|
|
6354
|
+
readonly priority: IssueDefaultsPriority;
|
|
6355
|
+
/** GitHub issue type the filed issue must be assigned. */
|
|
6356
|
+
readonly issueType: GithubIssueType;
|
|
6357
|
+
}
|
|
6358
|
+
/**
|
|
6359
|
+
* Derive one recipe stub per phase label the supplied bundles
|
|
6360
|
+
* contribute to `.github/labels.yml`.
|
|
6361
|
+
*
|
|
6362
|
+
* A contributed label counts as a phase label exactly when
|
|
6363
|
+
* `typeLabelForPhaseLabel` resolves it — i.e. when the canonical
|
|
6364
|
+
* bundle-ownership map claims it. That is the *same* map that drives
|
|
6365
|
+
* the label registry and the orchestrator's phase-label invariant, so
|
|
6366
|
+
* a generated stub can never pair a phase label with the wrong
|
|
6367
|
+
* `type:<bundle>` label. Consumer-specific labels no bundle owns are
|
|
6368
|
+
* skipped rather than guessed at.
|
|
6369
|
+
*
|
|
6370
|
+
* Results are deduplicated by phase label (co-owned `req:*` labels are
|
|
6371
|
+
* contributed by more than one requirements bundle) and sorted so the
|
|
6372
|
+
* rendered page is stable across synth runs.
|
|
6373
|
+
*/
|
|
6374
|
+
declare function collectIssueTemplateRecipeStubs(bundles: ReadonlyArray<AgentRuleBundle>, issueDefaults?: ResolvedIssueDefaults): ReadonlyArray<IssueTemplateRecipeStub>;
|
|
6375
|
+
/**
|
|
6376
|
+
* Render the always-regenerated companion page that carries one
|
|
6377
|
+
* label-correct `## Template: <phase-label>` stub per phase label the
|
|
6378
|
+
* consumer's active bundles emit.
|
|
6379
|
+
*
|
|
6380
|
+
* Only the **label set** and the issue-type assignment are generated —
|
|
6381
|
+
* title and body stay angle-bracket placeholders, so the page is a
|
|
6382
|
+
* correct-by-construction starting point rather than a second source of
|
|
6383
|
+
* truth for recipe bodies. Consumers move a stub into their
|
|
6384
|
+
* hand-authored templates page and flesh out its body there; the
|
|
6385
|
+
* label-consistency lint then holds both copies to the same pairing.
|
|
6386
|
+
*/
|
|
6387
|
+
declare function renderIssueTemplatesGeneratedPage(it: ResolvedIssueTemplates, stubs: ReadonlyArray<IssueTemplateRecipeStub>): string;
|
|
6152
6388
|
/**
|
|
6153
6389
|
* Render the `.claude/procedures/check-issue-templates.sh` helper
|
|
6154
6390
|
* script. Exported so `AgentConfig` can register it as an
|
|
@@ -6166,146 +6402,35 @@ declare function renderIssueTemplatesStarterPage(_it: ResolvedIssueTemplates): s
|
|
|
6166
6402
|
* page itself and the `create-issue-workflow` rule source).
|
|
6167
6403
|
*/
|
|
6168
6404
|
declare function renderIssueTemplatesCheckerScript(it: ResolvedIssueTemplates): string;
|
|
6169
|
-
|
|
6170
6405
|
/**
|
|
6171
|
-
*
|
|
6172
|
-
*
|
|
6173
|
-
*
|
|
6174
|
-
*
|
|
6175
|
-
*
|
|
6176
|
-
*
|
|
6177
|
-
*
|
|
6178
|
-
*
|
|
6179
|
-
*
|
|
6180
|
-
*
|
|
6181
|
-
*
|
|
6182
|
-
*
|
|
6183
|
-
*
|
|
6184
|
-
*
|
|
6185
|
-
*
|
|
6186
|
-
*
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
*
|
|
6192
|
-
*
|
|
6193
|
-
*
|
|
6194
|
-
*
|
|
6195
|
-
*
|
|
6196
|
-
*
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
declare const DEFAULT_GITHUB_ISSUE_TYPE: GithubIssueType;
|
|
6200
|
-
/**
|
|
6201
|
-
* Canonical issue-title-prefix → GitHub issue type map.
|
|
6202
|
-
*
|
|
6203
|
-
* Derived from {@link CONVENTIONAL_COMMIT_TYPE_LABELS} — the shared
|
|
6204
|
-
* conventional-commit vocabulary exported alongside the bundle
|
|
6205
|
-
* ownership registry — so the prefix list can never drift from the
|
|
6206
|
-
* label list the create-issue workflow stamps. Every conventional-commit
|
|
6207
|
-
* prefix defaults to `Task`; the three exceptions are overlaid on top.
|
|
6208
|
-
*
|
|
6209
|
-
* Prefixes carry their trailing colon (`"feat:"`) to match the way the
|
|
6210
|
-
* title conventions write them.
|
|
6211
|
-
*/
|
|
6212
|
-
declare const GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX: Readonly<Record<string, GithubIssueType>>;
|
|
6213
|
-
/**
|
|
6214
|
-
* Resolve an issue **title** to the GitHub issue type it must carry.
|
|
6215
|
-
*
|
|
6216
|
-
* Anything that is not one of the four recognised non-default prefixes
|
|
6217
|
-
* — including every bundle-phase prefix (`company:research: …`) and a
|
|
6218
|
-
* title with no prefix at all — resolves to
|
|
6219
|
-
* {@link DEFAULT_GITHUB_ISSUE_TYPE}.
|
|
6220
|
-
*/
|
|
6221
|
-
declare function githubIssueTypeForTitle(title: string): GithubIssueType;
|
|
6222
|
-
/**
|
|
6223
|
-
* Path to the `set-issue-type.sh` helper the `github-workflow` bundle
|
|
6224
|
-
* ships. Referenced (never assumed present) by the rendered prose — see
|
|
6225
|
-
* {@link renderGithubIssueTypeSectionLines} for the fallback that keeps
|
|
6226
|
-
* the recipe working for consumers who exclude that bundle.
|
|
6227
|
-
*/
|
|
6228
|
-
declare const SET_ISSUE_TYPE_HELPER_PATH = ".claude/procedures/set-issue-type.sh";
|
|
6229
|
-
/**
|
|
6230
|
-
* The two-step `updateIssueIssueType` GraphQL flow, rendered as shell.
|
|
6231
|
-
*
|
|
6232
|
-
* `set-issue-type.sh` wraps exactly this flow, but that helper ships
|
|
6233
|
-
* **only** via the `github-workflow` bundle. Any recipe outside that
|
|
6234
|
-
* bundle that cited the helper unconditionally would be broken for a
|
|
6235
|
-
* consumer running `excludeBundles: ["github-workflow"]`, so the
|
|
6236
|
-
* fallback is documented inline in an always-on base rule and every
|
|
6237
|
-
* per-filing-site step points at it.
|
|
6238
|
-
*/
|
|
6239
|
-
declare function renderSetIssueTypeFallbackLines(): Array<string>;
|
|
6240
|
-
/**
|
|
6241
|
-
* Render the **GitHub Issue Type** section of the always-on
|
|
6242
|
-
* `issue-conventions` rule.
|
|
6243
|
-
*
|
|
6244
|
-
* The section is the single canonical answer to "how does an agent set
|
|
6245
|
-
* an issue's type?", and it is rendered into an `ALWAYS`-scoped base
|
|
6246
|
-
* rule precisely so every downstream filing site can cite it in one
|
|
6247
|
-
* line regardless of which optional bundles the consumer enabled.
|
|
6248
|
-
*
|
|
6249
|
-
* It documents both paths deliberately:
|
|
6250
|
-
*
|
|
6251
|
-
* 1. The `set-issue-type.sh` one-liner, when `github-workflow` is
|
|
6252
|
-
* active.
|
|
6253
|
-
* 2. The inline GraphQL fallback, when it is not.
|
|
6254
|
-
*/
|
|
6255
|
-
declare function renderGithubIssueTypeSectionLines(): Array<string>;
|
|
6256
|
-
/**
|
|
6257
|
-
* Render the title-prefix → issue-type mapping as a markdown bullet
|
|
6258
|
-
* list, for recipes that present it inline rather than as a table (the
|
|
6259
|
-
* interactive create-issue workflow's step 3).
|
|
6260
|
-
*
|
|
6261
|
-
* Grouping matches the table in {@link renderGithubIssueTypeSectionLines}:
|
|
6262
|
-
* one bullet per non-default prefix, then a single bullet collapsing
|
|
6263
|
-
* every prefix that maps to {@link DEFAULT_GITHUB_ISSUE_TYPE}.
|
|
6264
|
-
*/
|
|
6265
|
-
declare function renderTitlePrefixTypeBullets(indent?: string): Array<string>;
|
|
6266
|
-
/** String form of {@link renderGithubIssueTypeSectionLines}. */
|
|
6267
|
-
declare function renderGithubIssueTypeSection(): string;
|
|
6268
|
-
/** Options for {@link renderIssueTypeAssignmentStep}. */
|
|
6269
|
-
interface IssueTypeAssignmentStepOptions {
|
|
6270
|
-
/**
|
|
6271
|
-
* Leading whitespace prepended to every rendered line so the step
|
|
6272
|
-
* nests correctly under the numbered/bulleted filing recipe it
|
|
6273
|
-
* follows. Defaults to the three spaces a top-level numbered list
|
|
6274
|
-
* item continues with.
|
|
6275
|
-
*/
|
|
6276
|
-
readonly indent?: string;
|
|
6277
|
-
/**
|
|
6278
|
-
* The GitHub issue type the filed issue must carry. Defaults to
|
|
6279
|
-
* {@link DEFAULT_GITHUB_ISSUE_TYPE}, which is correct for every
|
|
6280
|
-
* bundle-phase-prefixed downstream issue.
|
|
6281
|
-
*/
|
|
6282
|
-
readonly issueType?: GithubIssueType;
|
|
6283
|
-
/**
|
|
6284
|
-
* Render the step as a markdown list item (`- …` with hanging
|
|
6285
|
-
* continuation lines) instead of a paragraph. Used at the handful of
|
|
6286
|
-
* filing recipes that specify the issue with a bullet list rather
|
|
6287
|
-
* than numbered prose.
|
|
6288
|
-
*/
|
|
6289
|
-
readonly bullet?: boolean;
|
|
6290
|
-
}
|
|
6291
|
-
/**
|
|
6292
|
-
* Render the compact "now set the issue type" step appended to every
|
|
6293
|
-
* bundle-shipped downstream filing recipe.
|
|
6294
|
-
*
|
|
6295
|
-
* Kept deliberately short: it appears at ~45 filing sites across the
|
|
6296
|
-
* phased-pipeline bundles, so it names the concrete type, calls out that
|
|
6297
|
-
* the `type:*` label is a different field, gives the command, and
|
|
6298
|
-
* delegates the fallback to the always-on `issue-conventions` rule
|
|
6299
|
-
* rather than re-inlining the GraphQL flow at every site.
|
|
6300
|
-
*/
|
|
6301
|
-
declare function renderIssueTypeAssignmentStep(options?: IssueTypeAssignmentStepOptions): Array<string>;
|
|
6302
|
-
/**
|
|
6303
|
-
* Render the phase-wide variant of {@link renderIssueTypeAssignmentStep}
|
|
6304
|
-
* for a workflow phase that files several kinds of issue across several
|
|
6305
|
-
* steps, where repeating the per-recipe step at each one would bloat the
|
|
6306
|
-
* prompt without adding information.
|
|
6307
|
-
*/
|
|
6308
|
-
declare function renderIssueTypeAssignmentBlanket(indent?: string, issueType?: GithubIssueType): Array<string>;
|
|
6406
|
+
* Render the `.claude/procedures/check-issue-template-labels.sh`
|
|
6407
|
+
* companion lint. Exported so `AgentConfig` can emit it alongside the
|
|
6408
|
+
* reference-don't-inline lint when the consumer opts in via
|
|
6409
|
+
* `emitChecker: true`.
|
|
6410
|
+
*
|
|
6411
|
+
* Where `check-issue-templates.sh` polices *where* recipes live, this
|
|
6412
|
+
* one polices *what they say*. For every
|
|
6413
|
+
* `## Template: <phase-label>` section on the templates page, its
|
|
6414
|
+
* router-style child pages, and the generated companion, it asserts:
|
|
6415
|
+
*
|
|
6416
|
+
* 1. The recipe passes `--label <phase-label>` — the heading and the
|
|
6417
|
+
* command agree.
|
|
6418
|
+
* 2. It carries exactly one `type:*` label, and that label is the
|
|
6419
|
+
* `type:<bundle>` the phase-label invariant requires.
|
|
6420
|
+
* 3. It carries a GitHub issue-type assignment step (the
|
|
6421
|
+
* `set-issue-type.sh` helper or the `updateIssueIssueType` GraphQL
|
|
6422
|
+
* flow it wraps) — an issue filed without one stays untyped forever.
|
|
6423
|
+
*
|
|
6424
|
+
* Sections whose heading matches no bundle-owned phase label are
|
|
6425
|
+
* skipped, not failed: unrecognised `foo:bar` labels are
|
|
6426
|
+
* consumer-specific and deliberately not policed, exactly as the
|
|
6427
|
+
* orchestrator's invariant sweep treats them.
|
|
6428
|
+
*
|
|
6429
|
+
* The phase-label → type-label resolver is rendered from the same
|
|
6430
|
+
* `PHASE_LABEL_TYPE_MAP` that drives the label registry and the
|
|
6431
|
+
* orchestrator sweep, so the lint can never enforce a stale pairing.
|
|
6432
|
+
*/
|
|
6433
|
+
declare function renderIssueTemplateLabelsCheckerScript(it: ResolvedIssueTemplates): string;
|
|
6309
6434
|
|
|
6310
6435
|
/**
|
|
6311
6436
|
* Default master switch for the progress-file convention. When no
|
|
@@ -13920,5 +14045,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
13920
14045
|
*/
|
|
13921
14046
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
13922
14047
|
|
|
13923
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, 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, CdkCli, 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, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PHASE_LABEL_TYPE_MAP, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, 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, githubIssueTypeForTitle, 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, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, 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 };
|
|
13924
|
-
export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
14048
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, 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, CdkCli, 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, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, ISSUE_TEMPLATES_GENERATED_SUFFIX, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PHASE_LABEL_TYPE_MAP, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, 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 };
|
|
14049
|
+
export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|