triflux 10.0.2 → 10.0.3
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/bin/triflux.mjs +4 -4
- package/package.json +1 -1
package/bin/triflux.mjs
CHANGED
|
@@ -788,8 +788,8 @@ function cmdSetup(options = {}) {
|
|
|
788
788
|
}
|
|
789
789
|
{
|
|
790
790
|
const claudeGuide = ensureGlobalClaudeRoutingSection(CLAUDE_DIR);
|
|
791
|
-
if (
|
|
792
|
-
else if (claudeGuide.
|
|
791
|
+
if (claudeGuide.skipped) warn(`CLAUDE.md 라우팅 섹션 확인 실패: ${claudeGuide.reason}`);
|
|
792
|
+
else if (claudeGuide.action === "created" || claudeGuide.action === "updated") ok("CLAUDE.md: 전역 triflux 라우팅 요약 갱신");
|
|
793
793
|
else ok("CLAUDE.md: 전역 triflux 라우팅 요약 유지");
|
|
794
794
|
}
|
|
795
795
|
|
|
@@ -1374,8 +1374,8 @@ async function cmdDoctor(options = {}) {
|
|
|
1374
1374
|
}
|
|
1375
1375
|
{
|
|
1376
1376
|
const claudeGuide = ensureGlobalClaudeRoutingSection(CLAUDE_DIR);
|
|
1377
|
-
if (
|
|
1378
|
-
else if (claudeGuide.
|
|
1377
|
+
if (claudeGuide.skipped) warn(`CLAUDE.md 라우팅 섹션 확인 실패: ${claudeGuide.reason}`);
|
|
1378
|
+
else if (claudeGuide.action === "created" || claudeGuide.action === "updated") ok("CLAUDE.md: 전역 triflux 라우팅 요약 갱신");
|
|
1379
1379
|
}
|
|
1380
1380
|
// 스킬 동기화
|
|
1381
1381
|
const fSkillsSrc = join(PKG_ROOT, "skills");
|