@codedrifters/configulator 0.0.154 → 0.0.156
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 +382 -2
- package/lib/index.d.ts +383 -3
- package/lib/index.js +1386 -565
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1340 -529
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -622,6 +622,20 @@ interface AgentConfigOptions {
|
|
|
622
622
|
* Names of individual rules to exclude from any source.
|
|
623
623
|
*/
|
|
624
624
|
readonly excludeRules?: ReadonlyArray<string>;
|
|
625
|
+
/**
|
|
626
|
+
* Additional content to append to existing rules (from bundles or custom rules).
|
|
627
|
+
* Keys are rule names, values are markdown content appended after a horizontal rule.
|
|
628
|
+
* Use this to supplement bundle rules with project-specific additions without
|
|
629
|
+
* replacing the entire rule.
|
|
630
|
+
*
|
|
631
|
+
* @example
|
|
632
|
+
* ```ts
|
|
633
|
+
* ruleExtensions: {
|
|
634
|
+
* 'typescript-conventions': '## Additional Conventions\n\n- Use branded types for IDs',
|
|
635
|
+
* }
|
|
636
|
+
* ```
|
|
637
|
+
*/
|
|
638
|
+
readonly ruleExtensions?: Readonly<Record<string, string>>;
|
|
625
639
|
/**
|
|
626
640
|
* Claude Code settings.json configuration.
|
|
627
641
|
* Generated to .claude/settings.json (committed, team-shared).
|
|
@@ -669,16 +683,326 @@ declare class AgentConfig extends Component {
|
|
|
669
683
|
private resolveRules;
|
|
670
684
|
private resolveSkills;
|
|
671
685
|
private resolveSubAgents;
|
|
686
|
+
/**
|
|
687
|
+
* Resolves template variables in rule content using project metadata.
|
|
688
|
+
* Emits synthesis warnings for rules with unresolved variables.
|
|
689
|
+
*/
|
|
690
|
+
private resolveTemplates;
|
|
691
|
+
/**
|
|
692
|
+
* Resolves template variables in skill instructions using project metadata.
|
|
693
|
+
*/
|
|
694
|
+
private resolveSkillTemplates;
|
|
695
|
+
/**
|
|
696
|
+
* Resolves template variables in sub-agent prompts using project metadata.
|
|
697
|
+
*/
|
|
698
|
+
private resolveSubAgentTemplates;
|
|
672
699
|
}
|
|
673
700
|
|
|
701
|
+
/**
|
|
702
|
+
* AWS CDK bundle — auto-detected when `aws-cdk-lib` is in dependencies.
|
|
703
|
+
*/
|
|
704
|
+
declare const awsCdkBundle: AgentRuleBundle;
|
|
705
|
+
|
|
706
|
+
/**
|
|
707
|
+
* Base bundle — always included unless `includeBaseRules: false`.
|
|
708
|
+
* Contains project-overview, interaction-style, and general-conventions rules.
|
|
709
|
+
*/
|
|
710
|
+
declare const baseBundle: AgentRuleBundle;
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* Jest bundle — auto-detected when Jest is in dependencies.
|
|
714
|
+
*/
|
|
715
|
+
declare const jestBundle: AgentRuleBundle;
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* PNPM bundle — auto-detected when the PnpmWorkspace component is present.
|
|
719
|
+
*/
|
|
720
|
+
declare const pnpmBundle: AgentRuleBundle;
|
|
721
|
+
|
|
722
|
+
/**
|
|
723
|
+
* Projen bundle — auto-detected when `projen` is in dependencies.
|
|
724
|
+
*/
|
|
725
|
+
declare const projenBundle: AgentRuleBundle;
|
|
726
|
+
|
|
727
|
+
/**
|
|
728
|
+
* Turborepo bundle — auto-detected when the TurboRepo component is present.
|
|
729
|
+
*/
|
|
730
|
+
declare const turborepoBundle: AgentRuleBundle;
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* TypeScript bundle — auto-detected when a tsconfig is present.
|
|
734
|
+
*/
|
|
735
|
+
declare const typescriptBundle: AgentRuleBundle;
|
|
736
|
+
|
|
737
|
+
/**
|
|
738
|
+
* Vitest bundle — auto-detected when the Vitest component is present.
|
|
739
|
+
*/
|
|
740
|
+
declare const vitestBundle: AgentRuleBundle;
|
|
741
|
+
|
|
674
742
|
/**
|
|
675
743
|
* Built-in rule bundles that ship with configulator.
|
|
676
744
|
* Each bundle is auto-detected based on project introspection.
|
|
677
745
|
*
|
|
678
|
-
*
|
|
746
|
+
* Order matters: base is first so its rules can be overridden by
|
|
747
|
+
* more specific bundles. The base bundle's `appliesWhen` always
|
|
748
|
+
* returns true; it is filtered by the `includeBaseRules` option
|
|
749
|
+
* in AgentConfig.
|
|
679
750
|
*/
|
|
680
751
|
declare const BUILT_IN_BUNDLES: ReadonlyArray<AgentRuleBundle>;
|
|
681
752
|
|
|
753
|
+
/*******************************************************************************
|
|
754
|
+
*
|
|
755
|
+
* Repository Metadata
|
|
756
|
+
*
|
|
757
|
+
******************************************************************************/
|
|
758
|
+
/**
|
|
759
|
+
* Repository identity. Required fields are auto-detected when not provided.
|
|
760
|
+
*/
|
|
761
|
+
interface RepositoryMetadata {
|
|
762
|
+
/**
|
|
763
|
+
* Repository owner (GitHub user or organization).
|
|
764
|
+
* Auto-detected from package.json repository URL when not provided.
|
|
765
|
+
* @example 'codedrifters'
|
|
766
|
+
*/
|
|
767
|
+
readonly owner?: string;
|
|
768
|
+
/**
|
|
769
|
+
* Repository name.
|
|
770
|
+
* Auto-detected from package.json repository URL when not provided.
|
|
771
|
+
* @example 'packages'
|
|
772
|
+
*/
|
|
773
|
+
readonly name?: string;
|
|
774
|
+
/**
|
|
775
|
+
* Default branch name.
|
|
776
|
+
* @default 'main'
|
|
777
|
+
*/
|
|
778
|
+
readonly defaultBranch?: string;
|
|
779
|
+
}
|
|
780
|
+
/*******************************************************************************
|
|
781
|
+
*
|
|
782
|
+
* GitHub Projects Metadata
|
|
783
|
+
*
|
|
784
|
+
******************************************************************************/
|
|
785
|
+
/**
|
|
786
|
+
* A board or view within a GitHub Project.
|
|
787
|
+
*/
|
|
788
|
+
interface GitHubBoardMetadata {
|
|
789
|
+
/** Board/view name. */
|
|
790
|
+
readonly name: string;
|
|
791
|
+
/** Board/view ID. */
|
|
792
|
+
readonly id?: string;
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
* Sprint/iteration field metadata for GitHub Projects.
|
|
796
|
+
*/
|
|
797
|
+
interface GitHubSprintMetadata {
|
|
798
|
+
/** Name of the iteration field in GitHub Projects. */
|
|
799
|
+
readonly fieldName?: string;
|
|
800
|
+
/** Current sprint/iteration name. */
|
|
801
|
+
readonly current?: string;
|
|
802
|
+
/** Known sprint/iteration names. */
|
|
803
|
+
readonly iterations?: ReadonlyArray<string>;
|
|
804
|
+
}
|
|
805
|
+
/**
|
|
806
|
+
* GitHub Projects (v2) context for workflow automation.
|
|
807
|
+
*/
|
|
808
|
+
interface GitHubProjectMetadata {
|
|
809
|
+
/**
|
|
810
|
+
* GitHub Project name.
|
|
811
|
+
* @example 'CodeDrifters Packages'
|
|
812
|
+
*/
|
|
813
|
+
readonly name?: string;
|
|
814
|
+
/**
|
|
815
|
+
* GitHub Project number (visible in the project URL).
|
|
816
|
+
* @example 3
|
|
817
|
+
*/
|
|
818
|
+
readonly number?: number;
|
|
819
|
+
/**
|
|
820
|
+
* GitHub Project node ID (for GraphQL API).
|
|
821
|
+
* @example 'PVT_kwHOABCDEf4AGHIJ'
|
|
822
|
+
*/
|
|
823
|
+
readonly nodeId?: string;
|
|
824
|
+
/**
|
|
825
|
+
* Board or view definitions within the project.
|
|
826
|
+
*/
|
|
827
|
+
readonly boards?: ReadonlyArray<GitHubBoardMetadata>;
|
|
828
|
+
/**
|
|
829
|
+
* Sprint/iteration field metadata.
|
|
830
|
+
*/
|
|
831
|
+
readonly sprints?: GitHubSprintMetadata;
|
|
832
|
+
/**
|
|
833
|
+
* Kanban column (status field) definitions.
|
|
834
|
+
* @example [{ name: 'To Do', id: 'status_1' }, { name: 'In Progress', id: 'status_2' }]
|
|
835
|
+
*/
|
|
836
|
+
readonly columns?: ReadonlyArray<{
|
|
837
|
+
readonly name: string;
|
|
838
|
+
readonly id?: string;
|
|
839
|
+
}>;
|
|
840
|
+
}
|
|
841
|
+
/*******************************************************************************
|
|
842
|
+
*
|
|
843
|
+
* Organization Metadata
|
|
844
|
+
*
|
|
845
|
+
******************************************************************************/
|
|
846
|
+
/**
|
|
847
|
+
* Organization or team context.
|
|
848
|
+
*/
|
|
849
|
+
interface OrganizationMetadata {
|
|
850
|
+
/**
|
|
851
|
+
* Organization or team display name.
|
|
852
|
+
* Used in generated documentation and rule content.
|
|
853
|
+
* @example 'CodeDrifters'
|
|
854
|
+
*/
|
|
855
|
+
readonly name?: string;
|
|
856
|
+
/**
|
|
857
|
+
* GitHub organization login (may differ from display name).
|
|
858
|
+
* @example 'codedrifters'
|
|
859
|
+
*/
|
|
860
|
+
readonly githubOrg?: string;
|
|
861
|
+
}
|
|
862
|
+
/*******************************************************************************
|
|
863
|
+
*
|
|
864
|
+
* Slack Metadata
|
|
865
|
+
*
|
|
866
|
+
******************************************************************************/
|
|
867
|
+
/**
|
|
868
|
+
* Slack channel references for workflow skills.
|
|
869
|
+
*/
|
|
870
|
+
interface SlackMetadata {
|
|
871
|
+
/**
|
|
872
|
+
* Primary project channel.
|
|
873
|
+
* @example '#packages-dev'
|
|
874
|
+
*/
|
|
875
|
+
readonly projectChannel?: string;
|
|
876
|
+
/**
|
|
877
|
+
* Alerts or notifications channel.
|
|
878
|
+
* @example '#packages-alerts'
|
|
879
|
+
*/
|
|
880
|
+
readonly alertsChannel?: string;
|
|
881
|
+
/**
|
|
882
|
+
* Additional named channels. Keys are purpose identifiers.
|
|
883
|
+
* @example { releases: '#releases', support: '#customer-support' }
|
|
884
|
+
*/
|
|
885
|
+
readonly channels?: Readonly<Record<string, string>>;
|
|
886
|
+
}
|
|
887
|
+
/*******************************************************************************
|
|
888
|
+
*
|
|
889
|
+
* Deployment Metadata
|
|
890
|
+
*
|
|
891
|
+
******************************************************************************/
|
|
892
|
+
/**
|
|
893
|
+
* Deployment and environment hints.
|
|
894
|
+
*/
|
|
895
|
+
interface DeploymentMetadata {
|
|
896
|
+
/**
|
|
897
|
+
* AWS account ID for the primary deployment target.
|
|
898
|
+
* @example '123456789012'
|
|
899
|
+
*/
|
|
900
|
+
readonly awsAccountId?: string;
|
|
901
|
+
/**
|
|
902
|
+
* Primary AWS region.
|
|
903
|
+
* @example 'us-east-1'
|
|
904
|
+
*/
|
|
905
|
+
readonly awsRegion?: string;
|
|
906
|
+
/**
|
|
907
|
+
* Named environments.
|
|
908
|
+
* @example { dev: { accountId: '111', region: 'us-east-1' }, prod: { accountId: '222', region: 'us-east-1' } }
|
|
909
|
+
*/
|
|
910
|
+
readonly environments?: Readonly<Record<string, {
|
|
911
|
+
readonly accountId?: string;
|
|
912
|
+
readonly region?: string;
|
|
913
|
+
}>>;
|
|
914
|
+
}
|
|
915
|
+
/*******************************************************************************
|
|
916
|
+
*
|
|
917
|
+
* ProjectMetadata Options & Resolved Shape
|
|
918
|
+
*
|
|
919
|
+
******************************************************************************/
|
|
920
|
+
/**
|
|
921
|
+
* Options for the ProjectMetadata component.
|
|
922
|
+
*/
|
|
923
|
+
interface ProjectMetadataOptions {
|
|
924
|
+
/**
|
|
925
|
+
* Repository identity. When omitted, auto-detected from the Projen
|
|
926
|
+
* project's package.json repository field.
|
|
927
|
+
*/
|
|
928
|
+
readonly repository?: RepositoryMetadata;
|
|
929
|
+
/**
|
|
930
|
+
* GitHub Projects (v2) context for workflow automation.
|
|
931
|
+
* Optional — only needed when skills or rules reference project boards.
|
|
932
|
+
*/
|
|
933
|
+
readonly githubProject?: GitHubProjectMetadata;
|
|
934
|
+
/**
|
|
935
|
+
* Organization or team metadata.
|
|
936
|
+
* Optional — used in branch naming, PR conventions, and rule content.
|
|
937
|
+
*/
|
|
938
|
+
readonly organization?: OrganizationMetadata;
|
|
939
|
+
/**
|
|
940
|
+
* Slack channel references for workflow skills.
|
|
941
|
+
* Optional — only needed when skills post to or reference Slack channels.
|
|
942
|
+
*/
|
|
943
|
+
readonly slack?: SlackMetadata;
|
|
944
|
+
/**
|
|
945
|
+
* Important label names used by the project.
|
|
946
|
+
* Optional — allows skills and rules to reference canonical labels.
|
|
947
|
+
* @example ['auto-approve', 'wontfix', 'breaking-change']
|
|
948
|
+
*/
|
|
949
|
+
readonly labels?: ReadonlyArray<string>;
|
|
950
|
+
/**
|
|
951
|
+
* Milestone names or IDs for release planning.
|
|
952
|
+
* Optional — allows skills to reference milestones by name.
|
|
953
|
+
*/
|
|
954
|
+
readonly milestones?: ReadonlyArray<string>;
|
|
955
|
+
/**
|
|
956
|
+
* Documentation base path (relative to repo root) or external URL.
|
|
957
|
+
* Optional — used by "reference docs" skills to point to the right location.
|
|
958
|
+
* @example 'docs/' or 'https://docs.example.com'
|
|
959
|
+
*/
|
|
960
|
+
readonly docsPath?: string;
|
|
961
|
+
/**
|
|
962
|
+
* Deployment or environment hints.
|
|
963
|
+
* Optional — used by deploy-related skills or rules.
|
|
964
|
+
*/
|
|
965
|
+
readonly deployment?: DeploymentMetadata;
|
|
966
|
+
}
|
|
967
|
+
/**
|
|
968
|
+
* Resolved project metadata with auto-detected values filled in.
|
|
969
|
+
* Consumed by AgentConfig and other configulator features at synthesis time.
|
|
970
|
+
*/
|
|
971
|
+
interface ResolvedProjectMetadata {
|
|
972
|
+
readonly repository: {
|
|
973
|
+
readonly owner: string | undefined;
|
|
974
|
+
readonly name: string | undefined;
|
|
975
|
+
/** Always has a value (default: 'main'). */
|
|
976
|
+
readonly defaultBranch: string;
|
|
977
|
+
};
|
|
978
|
+
readonly githubProject?: GitHubProjectMetadata;
|
|
979
|
+
readonly organization?: OrganizationMetadata;
|
|
980
|
+
readonly slack?: SlackMetadata;
|
|
981
|
+
readonly labels?: ReadonlyArray<string>;
|
|
982
|
+
readonly milestones?: ReadonlyArray<string>;
|
|
983
|
+
readonly docsPath?: string;
|
|
984
|
+
readonly deployment?: DeploymentMetadata;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
/**
|
|
988
|
+
* Result of template variable resolution.
|
|
989
|
+
*/
|
|
990
|
+
interface TemplateResolveResult {
|
|
991
|
+
/** The template string with all variables resolved or replaced with fallbacks. */
|
|
992
|
+
readonly resolved: string;
|
|
993
|
+
/** Template variable keys that could not be resolved from metadata. */
|
|
994
|
+
readonly unresolvedKeys: ReadonlyArray<string>;
|
|
995
|
+
}
|
|
996
|
+
/**
|
|
997
|
+
* Resolves `{{dotted.path}}` template variables in a string using project metadata.
|
|
998
|
+
* Unresolved variables are replaced with their fallback placeholders.
|
|
999
|
+
*
|
|
1000
|
+
* @param template - String potentially containing `{{variable}}` patterns
|
|
1001
|
+
* @param metadata - Resolved project metadata, or undefined if not available
|
|
1002
|
+
* @returns The resolved string and a list of any unresolved variable keys
|
|
1003
|
+
*/
|
|
1004
|
+
declare function resolveTemplateVariables(template: string, metadata: ResolvedProjectMetadata | undefined): TemplateResolveResult;
|
|
1005
|
+
|
|
682
1006
|
/*******************************************************************************
|
|
683
1007
|
*
|
|
684
1008
|
* Git configs for this repo. This venn diagram has a great deal of overlap
|
|
@@ -1988,6 +2312,30 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
|
|
|
1988
2312
|
* @default true
|
|
1989
2313
|
*/
|
|
1990
2314
|
readonly configulatorRegistryConsumer?: boolean;
|
|
2315
|
+
/**
|
|
2316
|
+
* Project metadata configuration. Provides repository identity,
|
|
2317
|
+
* GitHub project context, and organizational details consumed by
|
|
2318
|
+
* AgentConfig and other features at synthesis time.
|
|
2319
|
+
*
|
|
2320
|
+
* - `undefined` or `{}`: auto-instantiate with auto-detection (default)
|
|
2321
|
+
* - `ProjectMetadataOptions`: explicit metadata configuration
|
|
2322
|
+
* - `false`: disable ProjectMetadata entirely
|
|
2323
|
+
*
|
|
2324
|
+
* @default {} (auto-detect from package.json)
|
|
2325
|
+
*/
|
|
2326
|
+
readonly projectMetadata?: ProjectMetadataOptions | false;
|
|
2327
|
+
/**
|
|
2328
|
+
* Enable AI agent configuration (Cursor, Claude Code rules).
|
|
2329
|
+
* When true, generates rule files at the monorepo root with auto-detected
|
|
2330
|
+
* bundles based on project and subproject introspection.
|
|
2331
|
+
*
|
|
2332
|
+
* @default false
|
|
2333
|
+
*/
|
|
2334
|
+
readonly agentConfig?: boolean;
|
|
2335
|
+
/**
|
|
2336
|
+
* Options for the AgentConfig component. Only used when `agentConfig` is true.
|
|
2337
|
+
*/
|
|
2338
|
+
readonly agentConfigOptions?: AgentConfigOptions;
|
|
1991
2339
|
}
|
|
1992
2340
|
declare class MonorepoProject extends TypeScriptAppProject {
|
|
1993
2341
|
/**
|
|
@@ -2012,6 +2360,38 @@ declare class MonorepoProject extends TypeScriptAppProject {
|
|
|
2012
2360
|
postSynthesize(): void;
|
|
2013
2361
|
}
|
|
2014
2362
|
|
|
2363
|
+
/**
|
|
2364
|
+
* Provides structured project metadata consumed by AgentConfig, skills,
|
|
2365
|
+
* and other configulator features at synthesis time.
|
|
2366
|
+
*
|
|
2367
|
+
* This is a project-level component — it describes the project itself,
|
|
2368
|
+
* not any specific feature. It lives alongside MonorepoProject and
|
|
2369
|
+
* TypeScriptProject and is discovered by consumers via the static
|
|
2370
|
+
* `.of()` factory method.
|
|
2371
|
+
*/
|
|
2372
|
+
declare class ProjectMetadata extends Component {
|
|
2373
|
+
/**
|
|
2374
|
+
* Returns the ProjectMetadata instance for a project, or undefined
|
|
2375
|
+
* if the component has not been added.
|
|
2376
|
+
*/
|
|
2377
|
+
static of(project: Project$1): ProjectMetadata | undefined;
|
|
2378
|
+
/** Resolved metadata with auto-detected values filled in. */
|
|
2379
|
+
readonly metadata: ResolvedProjectMetadata;
|
|
2380
|
+
constructor(project: Project$1, options?: ProjectMetadataOptions);
|
|
2381
|
+
/**
|
|
2382
|
+
* Merges explicit options with auto-detected values.
|
|
2383
|
+
* Auto-detection reads the repository URL from package.json
|
|
2384
|
+
* (via Projen's NodePackage manifest) and parses GitHub owner/name.
|
|
2385
|
+
* Explicit options always take precedence over auto-detected values.
|
|
2386
|
+
*/
|
|
2387
|
+
private resolveMetadata;
|
|
2388
|
+
/**
|
|
2389
|
+
* Attempts to auto-detect repository owner and name from the Projen
|
|
2390
|
+
* project's package.json repository field.
|
|
2391
|
+
*/
|
|
2392
|
+
private autoDetectRepository;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2015
2395
|
/**
|
|
2016
2396
|
* Options for the Vitest config (test block in vitest.config).
|
|
2017
2397
|
*
|
|
@@ -2260,4 +2640,4 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
2260
2640
|
*/
|
|
2261
2641
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
2262
2642
|
|
|
2263
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AgentConfig, type AgentConfigOptions, type AgentModel, type AgentPlatform, type AgentPlatformOverrides, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type ApproveMergeUpgradeOptions, type AwsAccount, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type DeployWorkflowOptions, type GitBranch, type IDependencyResolver, JsiiFaker, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, type McpServerConfig, type McpTransport, type MergeMethod, MonorepoProject, type MonorepoProjectOptions, PROD_DEPLOY_NAME, PnpmWorkspace, type PnpmWorkspaceOptions, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type RemoteCacheOptions, ResetTask, type ResetTaskOptions, TestRunner, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, getLatestEligibleVersion };
|
|
2643
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AgentConfig, type AgentConfigOptions, type AgentModel, type AgentPlatform, type AgentPlatformOverrides, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type ApproveMergeUpgradeOptions, type AwsAccount, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type DeployWorkflowOptions, type DeploymentMetadata, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, JsiiFaker, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, type McpServerConfig, type McpTransport, type MergeMethod, MonorepoProject, type MonorepoProjectOptions, type OrganizationMetadata, PROD_DEPLOY_NAME, PnpmWorkspace, type PnpmWorkspaceOptions, ProjectMetadata, type ProjectMetadataOptions, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedProjectMetadata, type SlackMetadata, type TemplateResolveResult, TestRunner, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, awsCdkBundle, baseBundle, getLatestEligibleVersion, jestBundle, pnpmBundle, projenBundle, resolveTemplateVariables, turborepoBundle, typescriptBundle, vitestBundle };
|