@codedrifters/configulator 0.0.404 → 0.0.406
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 +261 -1
- package/lib/index.d.ts +262 -2
- package/lib/index.js +1055 -264
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1038 -264
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4494,6 +4494,126 @@ interface BundleOwnership {
|
|
|
4494
4494
|
* cross-bundle surface appear here.
|
|
4495
4495
|
*/
|
|
4496
4496
|
declare const BUNDLE_OWNERSHIP: Readonly<Record<string, BundleOwnership>>;
|
|
4497
|
+
/**
|
|
4498
|
+
* GitHub `type:*` labels (WITH the `type:` prefix) that come from the
|
|
4499
|
+
* **conventional-commit** vocabulary rather than the bundle/routing
|
|
4500
|
+
* vocabulary. These are derived from an issue's title prefix by the
|
|
4501
|
+
* generic create-issue workflow (`feat:` → `type:feat`, `docs:` →
|
|
4502
|
+
* `type:docs`, …) and are the only `type:*` labels the phase-label
|
|
4503
|
+
* invariant is allowed to remove when it corrects a mislabeled issue.
|
|
4504
|
+
*
|
|
4505
|
+
* A bundle `type:*` label (e.g. `type:research`, `type:bcm-document`)
|
|
4506
|
+
* is deliberately **not** in this set: an issue carrying a phase label
|
|
4507
|
+
* from one bundle plus a `type:*` label owned by a *different* bundle
|
|
4508
|
+
* is genuinely ambiguous and gets flagged for a human rather than
|
|
4509
|
+
* silently rewritten.
|
|
4510
|
+
*/
|
|
4511
|
+
declare const CONVENTIONAL_COMMIT_TYPE_LABELS: ReadonlyArray<string>;
|
|
4512
|
+
/**
|
|
4513
|
+
* Canonical phase-label matcher → `type:<bundle>` label map, derived
|
|
4514
|
+
* from {@link BUNDLE_OWNERSHIP}. This is the **single source of truth**
|
|
4515
|
+
* for the phase-label → type-label invariant: label registry
|
|
4516
|
+
* generation, the orchestrator's triage sweep, and the consumer-facing
|
|
4517
|
+
* label audit all read this map rather than re-deriving the pairing.
|
|
4518
|
+
*
|
|
4519
|
+
* Keys are matchers in the same notation `BundleOwnership.phaseLabelPrefixes`
|
|
4520
|
+
* uses — an entry ending in a colon (`"company:"`) is a prefix match,
|
|
4521
|
+
* an entry without one (`"req:write"`) is an exact match. Values carry
|
|
4522
|
+
* the `type:` prefix.
|
|
4523
|
+
*
|
|
4524
|
+
* Co-ownership is fine as long as the co-owners agree on the type
|
|
4525
|
+
* label: all three requirements bundles declare `type:requirement`, so
|
|
4526
|
+
* `req:`, `req:write`, `req:review`, and `req:deprecate` all resolve to
|
|
4527
|
+
* the same value. A matcher that resolved to two *different* type
|
|
4528
|
+
* labels would be a registry bug and throws at module load.
|
|
4529
|
+
*/
|
|
4530
|
+
declare const PHASE_LABEL_TYPE_MAP: Readonly<Record<string, string>>;
|
|
4531
|
+
/**
|
|
4532
|
+
* Outcome of resolving a set of issue labels against
|
|
4533
|
+
* {@link PHASE_LABEL_TYPE_MAP}.
|
|
4534
|
+
*
|
|
4535
|
+
* - `"none"` — the labels carry no **recognised** phase label, so the
|
|
4536
|
+
* invariant does not apply. Unrecognised `foo:bar` labels are
|
|
4537
|
+
* consumer-specific and deliberately not policed.
|
|
4538
|
+
* - `"match"` — the recognised phase labels all imply one and the same
|
|
4539
|
+
* `type:<bundle>` label, carried in `typeLabel`.
|
|
4540
|
+
* - `"ambiguous"` — the recognised phase labels imply two or more
|
|
4541
|
+
* different `type:<bundle>` labels. Never auto-corrected; the caller
|
|
4542
|
+
* flags the issue for human triage instead.
|
|
4543
|
+
*/
|
|
4544
|
+
type PhaseLabelTypeOutcome = "none" | "match" | "ambiguous";
|
|
4545
|
+
/** Result of {@link resolveTypeLabelForLabels}. */
|
|
4546
|
+
interface PhaseLabelTypeResolution {
|
|
4547
|
+
/** Which of the three outcomes applies. */
|
|
4548
|
+
readonly outcome: PhaseLabelTypeOutcome;
|
|
4549
|
+
/**
|
|
4550
|
+
* The single implied `type:<bundle>` label (with the `type:` prefix)
|
|
4551
|
+
* when `outcome` is `"match"`; `undefined` otherwise.
|
|
4552
|
+
*/
|
|
4553
|
+
readonly typeLabel?: string;
|
|
4554
|
+
/**
|
|
4555
|
+
* Every distinct implied `type:<bundle>` label, sorted. Empty on
|
|
4556
|
+
* `"none"`, one entry on `"match"`, two or more on `"ambiguous"`.
|
|
4557
|
+
*/
|
|
4558
|
+
readonly candidateTypeLabels: ReadonlyArray<string>;
|
|
4559
|
+
/**
|
|
4560
|
+
* The subset of the input labels that matched a phase-label matcher,
|
|
4561
|
+
* in input order. Empty on `"none"`.
|
|
4562
|
+
*/
|
|
4563
|
+
readonly phaseLabels: ReadonlyArray<string>;
|
|
4564
|
+
}
|
|
4565
|
+
/**
|
|
4566
|
+
* Resolve a single phase label to the `type:<bundle>` label its owning
|
|
4567
|
+
* bundle declares, or `undefined` when no bundle owns it.
|
|
4568
|
+
*
|
|
4569
|
+
* Exact-match entries beat prefix entries: `req:write` is owned by
|
|
4570
|
+
* `requirements-writer` while the `req:` prefix is owned by
|
|
4571
|
+
* `requirements-analyst`. (Both currently declare `type:requirement`,
|
|
4572
|
+
* but the precedence is load-bearing for any future divergence.)
|
|
4573
|
+
*/
|
|
4574
|
+
declare function typeLabelForPhaseLabel(phaseLabel: string): string | undefined;
|
|
4575
|
+
/**
|
|
4576
|
+
* Resolve every label on an issue to the `type:<bundle>` label the
|
|
4577
|
+
* phase-label invariant requires it to carry.
|
|
4578
|
+
*
|
|
4579
|
+
* The input is the issue's **full** label list — the resolver picks out
|
|
4580
|
+
* the recognised phase labels itself and ignores everything else
|
|
4581
|
+
* (`status:*`, `priority:*`, existing `type:*`, and any consumer label
|
|
4582
|
+
* that matches no bundle).
|
|
4583
|
+
*/
|
|
4584
|
+
declare function resolveTypeLabelForLabels(labels: ReadonlyArray<string>): PhaseLabelTypeResolution;
|
|
4585
|
+
/**
|
|
4586
|
+
* Render the **Phase-label → `type:<bundle>` invariant** section of the
|
|
4587
|
+
* `orchestrator-conventions` rule. The matcher table is generated from
|
|
4588
|
+
* {@link PHASE_LABEL_TYPE_MAP}, so the documented pairing can never
|
|
4589
|
+
* drift from the pairing the sweep enforces.
|
|
4590
|
+
*
|
|
4591
|
+
* Rows whose owning bundle appears in `excludeBundles` are dropped,
|
|
4592
|
+
* matching every other cross-bundle renderer.
|
|
4593
|
+
*/
|
|
4594
|
+
declare function renderPhaseTypeInvariantSection(excludeBundles?: ReadonlyArray<string>): string;
|
|
4595
|
+
/**
|
|
4596
|
+
* Render the POSIX-shell half of the phase-label → `type:<bundle>`
|
|
4597
|
+
* invariant, derived from the same {@link PHASE_LABEL_TYPE_MAP} the
|
|
4598
|
+
* TypeScript accessors read. Emitted into `check-blocked.sh` so the
|
|
4599
|
+
* orchestrator's triage sweep and the consumer-runnable label audit
|
|
4600
|
+
* never carry a hand-copied second map.
|
|
4601
|
+
*
|
|
4602
|
+
* Three functions are rendered:
|
|
4603
|
+
*
|
|
4604
|
+
* - `phase_label_type_of <label>` — echoes the `type:<bundle>` label a
|
|
4605
|
+
* single phase label implies, or nothing. Exact-match branches are
|
|
4606
|
+
* emitted before prefix branches so `case` ordering reproduces the
|
|
4607
|
+
* exact-beats-prefix precedence.
|
|
4608
|
+
* - `phase_type_of` — reads an issue's labels (one per line) on stdin
|
|
4609
|
+
* and emits `KEY=VALUE` assignments: `OUTCOME=none|match|ambiguous`,
|
|
4610
|
+
* `TYPE_LABEL=` (match only), `CANDIDATE_TYPE_LABELS=` (ambiguous
|
|
4611
|
+
* only), and `PHASE_LABELS=`.
|
|
4612
|
+
* - `is_conventional_type_label <label>` — returns 0 for a
|
|
4613
|
+
* conventional-commit `type:*` label, i.e. the only labels the
|
|
4614
|
+
* auto-correction is allowed to remove.
|
|
4615
|
+
*/
|
|
4616
|
+
declare function renderPhaseTypeInvariantShellHelpers(): string;
|
|
4497
4617
|
/**
|
|
4498
4618
|
* Return `true` when `typeLabel` (without the leading `type:` prefix)
|
|
4499
4619
|
* is owned by any bundle in `excludedBundles`. Used by tier-table and
|
|
@@ -6047,6 +6167,146 @@ declare function renderIssueTemplatesStarterPage(_it: ResolvedIssueTemplates): s
|
|
|
6047
6167
|
*/
|
|
6048
6168
|
declare function renderIssueTemplatesCheckerScript(it: ResolvedIssueTemplates): string;
|
|
6049
6169
|
|
|
6170
|
+
/**
|
|
6171
|
+
* The GitHub **issue type** vocabulary this convention assigns.
|
|
6172
|
+
*
|
|
6173
|
+
* An issue type is a first-class GitHub field (Epic / Feature / Bug /
|
|
6174
|
+
* Task) and is a completely different axis from the `type:*` **label**
|
|
6175
|
+
* taxonomy:
|
|
6176
|
+
*
|
|
6177
|
+
* - `type:<bundle>` / `type:<conventional-commit>` — a *label*. Routing
|
|
6178
|
+
* and dedup signal. Owned by {@link BUNDLE_OWNERSHIP} and set with
|
|
6179
|
+
* `gh issue create --label`.
|
|
6180
|
+
* - GitHub issue type — a *field*. Human triage, Epic-relationship
|
|
6181
|
+
* tracking, and reporting signal. `gh issue create` cannot set it, so
|
|
6182
|
+
* it is applied immediately after creation via the
|
|
6183
|
+
* `updateIssueIssueType` GraphQL mutation.
|
|
6184
|
+
*
|
|
6185
|
+
* Conflating the two is the single most common mistake in this area, so
|
|
6186
|
+
* both this module and the prose it renders keep them explicitly apart.
|
|
6187
|
+
*/
|
|
6188
|
+
declare const GITHUB_ISSUE_TYPES: readonly ["Epic", "Feature", "Bug", "Task"];
|
|
6189
|
+
type GithubIssueType = (typeof GITHUB_ISSUE_TYPES)[number];
|
|
6190
|
+
/**
|
|
6191
|
+
* The issue type every title prefix maps to unless it is one of the
|
|
6192
|
+
* three explicit exceptions in {@link NON_DEFAULT_TITLE_PREFIX_TYPES}.
|
|
6193
|
+
*
|
|
6194
|
+
* Every bundle-phase prefix (`company:`, `req:`, `bcm:`, `software:`,
|
|
6195
|
+
* …) lands here, which is why agent-enqueued downstream issues are
|
|
6196
|
+
* almost always `Task` — the phased pipelines file work items, not
|
|
6197
|
+
* features or bug reports.
|
|
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>;
|
|
6309
|
+
|
|
6050
6310
|
/**
|
|
6051
6311
|
* Default master switch for the progress-file convention. When no
|
|
6052
6312
|
* config is supplied, the convention ships **enabled** so every phased
|
|
@@ -13660,5 +13920,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
13660
13920
|
*/
|
|
13661
13921
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
13662
13922
|
|
|
13663
|
-
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, 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_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, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, 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, 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, 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, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
13664
|
-
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, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, 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 };
|
|
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 };
|