@sunasteriskrnd/takumi 0.9.0 → 0.10.0
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/dist/index.js +9 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21388,7 +21388,7 @@ function normalizeTakumiConfigInput(value) {
|
|
|
21388
21388
|
}
|
|
21389
21389
|
return normalized;
|
|
21390
21390
|
}
|
|
21391
|
-
var PlanValidationModeSchema, PlanFocusAreaSchema, PlanResolutionOrderSchema, ProjectTypeSchema, PackageManagerSchema, FrameworkSchema, GEMINI_MODEL_VALUES, LEGACY_GEMINI_MODEL_ALIASES, GeminiModelSchema, StatuslineModeSchema, StatuslineSectionIdSchema, StatuslineSectionConfigSchema, StatuslineThemeSchema, StatuslineLayoutSchema, CodingLevelSchema, PlanResolutionSchema, PlanValidationSchema, SkPlanConfigSchema, SkDocsConfigSchema, SkPathsConfigSchema, SkLocaleConfigSchema, SkTrustConfigSchema, SkGraphifyConfigSchema, SkProjectConfigSchema, SkGeminiConfigSchema, SkSkillsConfigSchema, UpdatePipelineSchema, ResolvedModelConfigSchema, ModelTierMapSchema, SkModelTaxonomySchema, SkAssertionSchema, SkHooksConfigSchema, TakumiConfigSchema, DEFAULT_TAKUMI_CONFIG, TAKUMI_HOOK_NAMES;
|
|
21391
|
+
var PlanValidationModeSchema, PlanFocusAreaSchema, PlanResolutionOrderSchema, ProjectTypeSchema, PackageManagerSchema, FrameworkSchema, GEMINI_MODEL_VALUES, LEGACY_GEMINI_MODEL_ALIASES, GeminiModelSchema, StatuslineModeSchema, StatuslineSectionIdSchema, StatuslineSectionConfigSchema, StatuslineThemeSchema, StatuslineLayoutSchema, CodingLevelSchema, PlanResolutionSchema, PlanValidationSchema, SkPlanConfigSchema, SkDocsConfigSchema, SkPathsConfigSchema, SkLocaleConfigSchema, SkTrustConfigSchema, SkGraphifyConfigSchema, SkProjectConfigSchema, SkGeminiConfigSchema, SkSkillsConfigSchema, SkSkillExtensionsConfigSchema, UpdatePipelineSchema, ResolvedModelConfigSchema, ModelTierMapSchema, SkModelTaxonomySchema, SkAssertionSchema, SkHooksConfigSchema, TakumiConfigSchema, DEFAULT_TAKUMI_CONFIG, TAKUMI_HOOK_NAMES;
|
|
21392
21392
|
var init_takumi_config = __esm(() => {
|
|
21393
21393
|
init_zod();
|
|
21394
21394
|
PlanValidationModeSchema = exports_external.enum(["prompt", "auto", "strict", "none"]);
|
|
@@ -21526,6 +21526,9 @@ var init_takumi_config = __esm(() => {
|
|
|
21526
21526
|
useGemini: exports_external.boolean().optional()
|
|
21527
21527
|
}).passthrough().optional()
|
|
21528
21528
|
}).passthrough();
|
|
21529
|
+
SkSkillExtensionsConfigSchema = exports_external.object({
|
|
21530
|
+
sharedDir: exports_external.string().optional()
|
|
21531
|
+
}).passthrough();
|
|
21529
21532
|
UpdatePipelineSchema = exports_external.object({
|
|
21530
21533
|
autoInitAfterUpdate: exports_external.boolean().default(false)
|
|
21531
21534
|
});
|
|
@@ -21572,6 +21575,7 @@ var init_takumi_config = __esm(() => {
|
|
|
21572
21575
|
project: SkProjectConfigSchema.optional(),
|
|
21573
21576
|
gemini: SkGeminiConfigSchema.optional(),
|
|
21574
21577
|
skills: SkSkillsConfigSchema.optional(),
|
|
21578
|
+
skillExtensions: SkSkillExtensionsConfigSchema.optional(),
|
|
21575
21579
|
assertions: exports_external.array(SkAssertionSchema).optional(),
|
|
21576
21580
|
hooks: SkHooksConfigSchema.optional(),
|
|
21577
21581
|
updatePipeline: UpdatePipelineSchema.optional(),
|
|
@@ -21631,6 +21635,9 @@ var init_takumi_config = __esm(() => {
|
|
|
21631
21635
|
useGemini: true
|
|
21632
21636
|
}
|
|
21633
21637
|
},
|
|
21638
|
+
skillExtensions: {
|
|
21639
|
+
sharedDir: ""
|
|
21640
|
+
},
|
|
21634
21641
|
assertions: [],
|
|
21635
21642
|
hooks: {
|
|
21636
21643
|
"session-init": true,
|
|
@@ -71753,7 +71760,7 @@ var import_fs_extra37 = __toESM(require_lib(), 1);
|
|
|
71753
71760
|
// package.json
|
|
71754
71761
|
var package_default = {
|
|
71755
71762
|
name: "@sunasteriskrnd/takumi",
|
|
71756
|
-
version: "0.
|
|
71763
|
+
version: "0.10.0",
|
|
71757
71764
|
description: "CLI tool for bootstrapping and managing Takumi projects",
|
|
71758
71765
|
type: "module",
|
|
71759
71766
|
repository: {
|