jkpark 2.1.0 → 2.2.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 +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25810,7 +25810,9 @@ async function runInstallWizard(projectRoot) {
|
|
|
25810
25810
|
rootPath = PathManager.getGitHubRoot();
|
|
25811
25811
|
}
|
|
25812
25812
|
const workspaces = PathManager.getWorkspaces(rootPath);
|
|
25813
|
-
const scopeChoices = [
|
|
25813
|
+
const scopeChoices = [
|
|
25814
|
+
{ name: "Current Directory (현재 프로젝트)", value: process.cwd() }
|
|
25815
|
+
];
|
|
25814
25816
|
if (targetType === "openclaw") {
|
|
25815
25817
|
scopeChoices.push({ name: `Shared Skills (모든 에이전트 공유: ${path4.join(rootPath, "skills")})`, value: path4.join(rootPath, "skills") });
|
|
25816
25818
|
} else if (targetType === "claude") {
|
|
@@ -25819,14 +25821,14 @@ async function runInstallWizard(projectRoot) {
|
|
|
25819
25821
|
scopeChoices.push({ name: `GitHub Extensions (~/.config/gh/extensions)`, value: path4.join(rootPath, "extensions") });
|
|
25820
25822
|
}
|
|
25821
25823
|
scopeChoices.push(...workspaces.map((ws) => ({ name: `Workspace: ${ws}`, value: path4.join(rootPath, ws) })));
|
|
25822
|
-
scopeChoices.push({ name: "Current Directory (현재 프로젝트)", value: process.cwd() });
|
|
25823
25824
|
scopeChoices.push({ name: "Custom Path (직접 입력)", value: "custom" });
|
|
25824
25825
|
const { scope } = await dist_default14.prompt([
|
|
25825
25826
|
{
|
|
25826
25827
|
type: "list",
|
|
25827
25828
|
name: "scope",
|
|
25828
|
-
message: `${targetType} 설치 범위를
|
|
25829
|
-
choices: scopeChoices
|
|
25829
|
+
message: `${targetType} 설치 범위를 선택하세요 (Default: Current Directory):`,
|
|
25830
|
+
choices: scopeChoices,
|
|
25831
|
+
default: 0
|
|
25830
25832
|
}
|
|
25831
25833
|
]);
|
|
25832
25834
|
if (scope === "custom") {
|