@sunasteriskrnd/takumi 1.0.0-dev.26 → 1.0.0-dev.27

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.
Files changed (2) hide show
  1. package/dist/index.js +16 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8539,7 +8539,7 @@ var package_default;
8539
8539
  var init_package = __esm(() => {
8540
8540
  package_default = {
8541
8541
  name: "@sunasteriskrnd/takumi",
8542
- version: "1.0.0-dev.26",
8542
+ version: "1.0.0-dev.27",
8543
8543
  description: "CLI tool for bootstrapping and managing Takumi projects",
8544
8544
  type: "module",
8545
8545
  repository: {
@@ -11227,7 +11227,7 @@ function normalizeTakumiConfigInput(value) {
11227
11227
  }
11228
11228
  return normalized;
11229
11229
  }
11230
- 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, SkProjectConfigSchema, SkGeminiConfigSchema, SkSkillsConfigSchema, UpdatePipelineSchema, ResolvedModelConfigSchema, ModelTierMapSchema, SkModelTaxonomySchema, SkAssertionSchema, SkHooksConfigSchema, TakumiConfigSchema, DEFAULT_TAKUMI_CONFIG, TAKUMI_HOOK_NAMES;
11230
+ 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;
11231
11231
  var init_takumi_config = __esm(() => {
11232
11232
  init_zod();
11233
11233
  PlanValidationModeSchema = exports_external.enum(["prompt", "auto", "strict", "none"]);
@@ -11349,6 +11349,9 @@ var init_takumi_config = __esm(() => {
11349
11349
  passphrase: exports_external.string().nullable().optional(),
11350
11350
  enabled: exports_external.boolean().optional()
11351
11351
  });
11352
+ SkGraphifyConfigSchema = exports_external.object({
11353
+ enabled: exports_external.boolean().optional()
11354
+ });
11352
11355
  SkProjectConfigSchema = exports_external.object({
11353
11356
  type: ProjectTypeSchema.optional(),
11354
11357
  packageManager: PackageManagerSchema.optional(),
@@ -11362,6 +11365,9 @@ var init_takumi_config = __esm(() => {
11362
11365
  useGemini: exports_external.boolean().optional()
11363
11366
  }).passthrough().optional()
11364
11367
  }).passthrough();
11368
+ SkSkillExtensionsConfigSchema = exports_external.object({
11369
+ sharedDir: exports_external.string().optional()
11370
+ }).passthrough();
11365
11371
  UpdatePipelineSchema = exports_external.object({
11366
11372
  autoInitAfterUpdate: exports_external.boolean().default(false)
11367
11373
  });
@@ -11404,9 +11410,11 @@ var init_takumi_config = __esm(() => {
11404
11410
  paths: SkPathsConfigSchema.optional(),
11405
11411
  locale: SkLocaleConfigSchema.optional(),
11406
11412
  trust: SkTrustConfigSchema.optional(),
11413
+ graphify: SkGraphifyConfigSchema.optional(),
11407
11414
  project: SkProjectConfigSchema.optional(),
11408
11415
  gemini: SkGeminiConfigSchema.optional(),
11409
11416
  skills: SkSkillsConfigSchema.optional(),
11417
+ skillExtensions: SkSkillExtensionsConfigSchema.optional(),
11410
11418
  assertions: exports_external.array(SkAssertionSchema).optional(),
11411
11419
  hooks: SkHooksConfigSchema.optional(),
11412
11420
  updatePipeline: UpdatePipelineSchema.optional(),
@@ -11450,6 +11458,9 @@ var init_takumi_config = __esm(() => {
11450
11458
  passphrase: null,
11451
11459
  enabled: false
11452
11460
  },
11461
+ graphify: {
11462
+ enabled: true
11463
+ },
11453
11464
  project: {
11454
11465
  type: "auto",
11455
11466
  packageManager: "auto",
@@ -11463,6 +11474,9 @@ var init_takumi_config = __esm(() => {
11463
11474
  useGemini: true
11464
11475
  }
11465
11476
  },
11477
+ skillExtensions: {
11478
+ sharedDir: ""
11479
+ },
11466
11480
  assertions: [],
11467
11481
  hooks: {
11468
11482
  "session-init": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunasteriskrnd/takumi",
3
- "version": "1.0.0-dev.26",
3
+ "version": "1.0.0-dev.27",
4
4
  "description": "CLI tool for bootstrapping and managing Takumi projects",
5
5
  "type": "module",
6
6
  "repository": {