@codedrifters/configulator 0.0.403 → 0.0.405
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 +230 -4
- package/lib/index.d.ts +231 -5
- package/lib/index.js +1370 -804
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1370 -814
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3926,6 +3926,13 @@ declare class AgentConfig extends Component {
|
|
|
3926
3926
|
* their rendered rule content reflects any consumer override.
|
|
3927
3927
|
* Bundles that do not read agent paths are passed through as-is
|
|
3928
3928
|
* from their default const exports.
|
|
3929
|
+
*
|
|
3930
|
+
* The build policy is auto-detected from the project's `TurboRepo`
|
|
3931
|
+
* component here rather than configured, so build guidance in the
|
|
3932
|
+
* `github-workflow` and `turborepo` rules only claims an AWS
|
|
3933
|
+
* credential requirement when a remote cache actually exists. The
|
|
3934
|
+
* getter is lazy by design — `TurboRepo` must already be attached
|
|
3935
|
+
* to the project when the bundles are first read.
|
|
3929
3936
|
*/
|
|
3930
3937
|
private get pathAwareBundles();
|
|
3931
3938
|
/**
|
|
@@ -3992,6 +3999,72 @@ declare class AgentConfig extends Component {
|
|
|
3992
3999
|
private resolveBundlePermissions;
|
|
3993
4000
|
}
|
|
3994
4001
|
|
|
4002
|
+
/**
|
|
4003
|
+
* Fully-resolved build policy for the consuming project.
|
|
4004
|
+
*
|
|
4005
|
+
* The generated agent guidance around `pnpm build:all` used to assert
|
|
4006
|
+
* unconditionally that the command "requires the user to be
|
|
4007
|
+
* authenticated to AWS on the prod account used for Turborepo remote
|
|
4008
|
+
* caching (`readonlyaccess-prod-525259625215-us-east-1` profile)".
|
|
4009
|
+
* Both halves of that sentence were wrong for most consumers:
|
|
4010
|
+
*
|
|
4011
|
+
* 1. The AWS-auth requirement only exists when a Turborepo **remote
|
|
4012
|
+
* cache** is configured. Consumers running a local cache only
|
|
4013
|
+
* (`turbo.json` with just a `cacheDir`) need no credentials at
|
|
4014
|
+
* all, and agents that believed otherwise aborted mid-flow —
|
|
4015
|
+
* three lost-work incidents in `codedrifters/openhi-planning`.
|
|
4016
|
+
* 2. The profile name was this repository's own profile, baked
|
|
4017
|
+
* verbatim into every consumer's generated text.
|
|
4018
|
+
*
|
|
4019
|
+
* This struct carries the two facts the rule renderers need, derived
|
|
4020
|
+
* from the project's actual {@link TurboRepo} configuration, so the
|
|
4021
|
+
* guidance is true for whichever consumer it renders into.
|
|
4022
|
+
*
|
|
4023
|
+
* @see resolveBuildPolicy
|
|
4024
|
+
*/
|
|
4025
|
+
interface ResolvedBuildPolicy {
|
|
4026
|
+
/**
|
|
4027
|
+
* Whether a Turborepo **remote** cache is configured on the project.
|
|
4028
|
+
*
|
|
4029
|
+
* `false` means either there is no {@link TurboRepo} component at
|
|
4030
|
+
* all, or it was constructed without `remoteCacheOptions` — in both
|
|
4031
|
+
* cases `pnpm build:all` needs no AWS credentials and the generated
|
|
4032
|
+
* guidance must not claim otherwise.
|
|
4033
|
+
*/
|
|
4034
|
+
readonly remoteCacheEnabled: boolean;
|
|
4035
|
+
/**
|
|
4036
|
+
* Local AWS profile name used to fetch the remote-cache endpoint and
|
|
4037
|
+
* token, taken from `remoteCacheOptions.profileName`.
|
|
4038
|
+
*
|
|
4039
|
+
* `undefined` whenever {@link remoteCacheEnabled} is `false`. Never
|
|
4040
|
+
* hard-code a profile name in rule content — read it from here so
|
|
4041
|
+
* each consumer's generated text names its own profile.
|
|
4042
|
+
*/
|
|
4043
|
+
readonly awsProfileName?: string;
|
|
4044
|
+
}
|
|
4045
|
+
/**
|
|
4046
|
+
* Build policy for a project with no Turborepo remote cache — the
|
|
4047
|
+
* zero-config default. Rule renderers that receive this omit the
|
|
4048
|
+
* AWS-authentication guidance entirely rather than asserting a
|
|
4049
|
+
* credential requirement that does not exist.
|
|
4050
|
+
*/
|
|
4051
|
+
declare const DEFAULT_BUILD_POLICY: ResolvedBuildPolicy;
|
|
4052
|
+
/**
|
|
4053
|
+
* Derives the {@link ResolvedBuildPolicy} for a project by inspecting
|
|
4054
|
+
* its {@link TurboRepo} component.
|
|
4055
|
+
*
|
|
4056
|
+
* Auto-detection, not opt-in: `remoteCacheOptions` being `undefined`
|
|
4057
|
+
* *is* the "remote cache disabled" signal — `TurboRepo.renderRunArgs`
|
|
4058
|
+
* already branches on exactly the same condition when it decides
|
|
4059
|
+
* whether to emit `--api` / `--token` / `--team` flags. Consumers get
|
|
4060
|
+
* accurate guidance with no extra configuration.
|
|
4061
|
+
*
|
|
4062
|
+
* Call this lazily (at synthesis time), not from a constructor: the
|
|
4063
|
+
* `TurboRepo` component must already be attached to the project for
|
|
4064
|
+
* detection to succeed.
|
|
4065
|
+
*/
|
|
4066
|
+
declare function resolveBuildPolicy(project: Project$1): ResolvedBuildPolicy;
|
|
4067
|
+
|
|
3995
4068
|
/**
|
|
3996
4069
|
* Valid `status:*` values that may appear in an
|
|
3997
4070
|
* `IssueDefaultsOverride.status`. The list mirrors the canonical
|
|
@@ -4421,6 +4494,126 @@ interface BundleOwnership {
|
|
|
4421
4494
|
* cross-bundle surface appear here.
|
|
4422
4495
|
*/
|
|
4423
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;
|
|
4424
4617
|
/**
|
|
4425
4618
|
* Return `true` when `typeLabel` (without the leading `type:` prefix)
|
|
4426
4619
|
* is owned by any bundle in `excludedBundles`. Used by tier-table and
|
|
@@ -4728,7 +4921,22 @@ declare function buildDocsSyncBundle(paths?: ResolvedAgentPaths): AgentRuleBundl
|
|
|
4728
4921
|
declare const docsSyncBundle: AgentRuleBundle;
|
|
4729
4922
|
|
|
4730
4923
|
/**
|
|
4731
|
-
* GitHub workflow bundle — auto-detected when the project
|
|
4924
|
+
* Builds the GitHub workflow bundle — auto-detected when the project
|
|
4925
|
+
* has a GitHub component.
|
|
4926
|
+
*
|
|
4927
|
+
* The `build` policy conditions the PR-workflow build guidance on the
|
|
4928
|
+
* consuming project's Turborepo remote-cache configuration. When
|
|
4929
|
+
* omitted, the bundle ships the zero-remote-cache defaults
|
|
4930
|
+
* ({@link DEFAULT_BUILD_POLICY}), which emit no AWS-authentication
|
|
4931
|
+
* guidance at all.
|
|
4932
|
+
*/
|
|
4933
|
+
declare function buildGithubWorkflowBundle(buildPolicy?: ResolvedBuildPolicy): AgentRuleBundle;
|
|
4934
|
+
/**
|
|
4935
|
+
* `github-workflow` bundle built with the default (no remote cache)
|
|
4936
|
+
* build policy. Preserved for backward compatibility with tests and
|
|
4937
|
+
* consumers that import the const directly. Prefer
|
|
4938
|
+
* `buildGithubWorkflowBundle(buildPolicy)` when the consuming
|
|
4939
|
+
* project's Turborepo configuration is in scope.
|
|
4732
4940
|
*/
|
|
4733
4941
|
declare const githubWorkflowBundle: AgentRuleBundle;
|
|
4734
4942
|
|
|
@@ -6934,7 +7142,19 @@ declare function buildStandardsResearchBundle(paths?: ResolvedAgentPaths, issueD
|
|
|
6934
7142
|
declare const standardsResearchBundle: AgentRuleBundle;
|
|
6935
7143
|
|
|
6936
7144
|
/**
|
|
6937
|
-
* Turborepo bundle — auto-detected when the TurboRepo
|
|
7145
|
+
* Builds the Turborepo bundle — auto-detected when the TurboRepo
|
|
7146
|
+
* component is present.
|
|
7147
|
+
*
|
|
7148
|
+
* When `buildPolicy` is omitted the bundle ships the zero-remote-cache
|
|
7149
|
+
* defaults ({@link DEFAULT_BUILD_POLICY}).
|
|
7150
|
+
*/
|
|
7151
|
+
declare function buildTurborepoBundle(buildPolicy?: ResolvedBuildPolicy): AgentRuleBundle;
|
|
7152
|
+
/**
|
|
7153
|
+
* Turborepo bundle built with the default (no remote cache) build
|
|
7154
|
+
* policy. Preserved for backward compatibility with tests and
|
|
7155
|
+
* consumers that import the const directly. Prefer
|
|
7156
|
+
* `buildTurborepoBundle(buildPolicy)` when the consuming project's
|
|
7157
|
+
* Turborepo configuration is in scope.
|
|
6938
7158
|
*/
|
|
6939
7159
|
declare const turborepoBundle: AgentRuleBundle;
|
|
6940
7160
|
|
|
@@ -6994,6 +7214,12 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6994
7214
|
* When the consumer supplies no override, the bundle defaults
|
|
6995
7215
|
* (`status:ready` + `priority:medium`) ship unchanged.
|
|
6996
7216
|
*
|
|
7217
|
+
* Bundles that describe the build (`turborepo`, `github-workflow`)
|
|
7218
|
+
* accept a `ResolvedBuildPolicy` so the rendered guidance matches the
|
|
7219
|
+
* consumer's Turborepo configuration — most importantly, the
|
|
7220
|
+
* AWS-authentication note is emitted only when a remote cache is
|
|
7221
|
+
* actually configured, and names that consumer's own profile.
|
|
7222
|
+
*
|
|
6997
7223
|
* Order matters: base is first so its rules can be overridden by
|
|
6998
7224
|
* more specific bundles. The base bundle's `appliesWhen` always
|
|
6999
7225
|
* returns true; it is filtered by the `includeBaseRules` option
|
|
@@ -7002,7 +7228,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
7002
7228
|
* Bundles that do not read any agent path (typescript, jest,
|
|
7003
7229
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
7004
7230
|
*/
|
|
7005
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
7231
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy, buildPolicy?: ResolvedBuildPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
7006
7232
|
/**
|
|
7007
7233
|
* Built-in rule bundles assembled with the default agent paths.
|
|
7008
7234
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -13554,5 +13780,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
13554
13780
|
*/
|
|
13555
13781
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
13556
13782
|
|
|
13557
|
-
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_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, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, 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, 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 };
|
|
13558
|
-
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, 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 };
|
|
13783
|
+
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_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, 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, 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, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
13784
|
+
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, 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 };
|