@team-semicolon/semo-cli 3.13.0 → 3.13.1
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 +15 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1395,6 +1395,21 @@ async function createStandardSymlinks(cwd) {
|
|
|
1395
1395
|
createSymlinkOrJunction(commandsTarget, semoCommandsLink);
|
|
1396
1396
|
console.log(chalk_1.default.green(" ✓ .claude/commands/SEMO → semo-system/semo-core/commands/SEMO"));
|
|
1397
1397
|
}
|
|
1398
|
+
// SEMO-workflow 커맨드 링크 (워크플로우 커맨드)
|
|
1399
|
+
const workflowCommandsLink = path.join(commandsDir, "SEMO-workflow");
|
|
1400
|
+
const workflowCommandsTarget = path.join(semoSystemDir, "semo-core", "commands", "SEMO-workflow");
|
|
1401
|
+
if (fs.existsSync(workflowCommandsLink)) {
|
|
1402
|
+
if (fs.lstatSync(workflowCommandsLink).isSymbolicLink()) {
|
|
1403
|
+
fs.unlinkSync(workflowCommandsLink);
|
|
1404
|
+
}
|
|
1405
|
+
else {
|
|
1406
|
+
removeRecursive(workflowCommandsLink);
|
|
1407
|
+
}
|
|
1408
|
+
}
|
|
1409
|
+
if (fs.existsSync(workflowCommandsTarget)) {
|
|
1410
|
+
createSymlinkOrJunction(workflowCommandsTarget, workflowCommandsLink);
|
|
1411
|
+
console.log(chalk_1.default.green(" ✓ .claude/commands/SEMO-workflow → semo-system/semo-core/commands/SEMO-workflow"));
|
|
1412
|
+
}
|
|
1398
1413
|
}
|
|
1399
1414
|
/**
|
|
1400
1415
|
* 설치 상태를 검증하고 문제점을 리포트
|