refactor(features): rename command-loader and skill-loader with claude-code prefix

This commit is contained in:
YeonGyu-Kim
2025-12-09 16:21:56 +09:00
parent 8e7447deee
commit c7a65af475
8 changed files with 88 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import { homedir } from "os"
import { join, resolve } from "path"
import { parseFrontmatter } from "../../shared/frontmatter"
import { sanitizeModelField } from "../../shared/model-sanitizer"
import type { CommandDefinition } from "../command-loader/types"
import type { CommandDefinition } from "../claude-code-command-loader/types"
import type { SkillScope, SkillMetadata, LoadedSkillAsCommand } from "./types"
function loadSkillsFromDir(skillsDir: string, scope: SkillScope): LoadedSkillAsCommand[] {

View File

@@ -1,4 +1,4 @@
import type { CommandDefinition } from "../command-loader/types"
import type { CommandDefinition } from "../claude-code-command-loader/types"
export type SkillScope = "user" | "project"