@team-semicolon/semo-cli 2.0.0 → 2.0.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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -58,7 +58,7 @@ const inquirer_1 = __importDefault(require("inquirer"));
|
|
|
58
58
|
const child_process_1 = require("child_process");
|
|
59
59
|
const fs = __importStar(require("fs"));
|
|
60
60
|
const path = __importStar(require("path"));
|
|
61
|
-
const VERSION = "2.0.
|
|
61
|
+
const VERSION = "2.0.1";
|
|
62
62
|
const SEMO_REPO = "https://github.com/semicolon-devteam/semo.git";
|
|
63
63
|
// 확장 패키지 정의
|
|
64
64
|
const EXTENSION_PACKAGES = {
|
|
@@ -71,6 +71,7 @@ const EXTENSION_PACKAGES = {
|
|
|
71
71
|
design: { name: "Design", desc: "디자인 핸드오프 (3 agents, 4 skills)", detect: [] },
|
|
72
72
|
ms: { name: "Microservice", desc: "마이크로서비스 아키텍처 (5 agents, 5 skills)", detect: [] },
|
|
73
73
|
mvp: { name: "MVP", desc: "MVP 빠른 개발 (4 agents, 6 skills)", detect: [] },
|
|
74
|
+
meta: { name: "Meta", desc: "SEMO 프레임워크 자체 개발/관리 (6 agents, 7 skills)", detect: ["semo-core", "semo-skills", "packages/meta"] },
|
|
74
75
|
};
|
|
75
76
|
const program = new commander_1.Command();
|
|
76
77
|
program
|