@team-semicolon/semo-cli 3.0.30 → 3.1.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.
Files changed (2) hide show
  1. package/dist/index.js +11 -2
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -1615,8 +1615,7 @@ const BASE_MCP_SERVERS = [
1615
1615
  command: "npx",
1616
1616
  args: ["-y", "@team-semicolon/semo-mcp"],
1617
1617
  env: {
1618
- GITHUB_TOKEN: "${GITHUB_TOKEN}",
1619
- SLACK_BOT_TOKEN: "${SLACK_BOT_TOKEN}",
1618
+ // Slack/GitHub/DB 토큰은 패키지에 암호화 포함됨 (설정 불필요)
1620
1619
  SUPABASE_URL: "${SUPABASE_URL}",
1621
1620
  SUPABASE_KEY: "${SUPABASE_KEY}",
1622
1621
  },
@@ -1631,6 +1630,16 @@ const BASE_MCP_SERVERS = [
1631
1630
  command: "npx",
1632
1631
  args: ["-y", "@modelcontextprotocol/server-sequential-thinking"],
1633
1632
  },
1633
+ {
1634
+ name: "playwright",
1635
+ command: "npx",
1636
+ args: ["-y", "@anthropic-ai/mcp-server-playwright"],
1637
+ },
1638
+ {
1639
+ name: "github",
1640
+ command: "npx",
1641
+ args: ["-y", "@modelcontextprotocol/server-github"],
1642
+ },
1634
1643
  ];
1635
1644
  // === Claude MCP 서버 존재 여부 확인 ===
1636
1645
  function isMCPServerRegistered(serverName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-semicolon/semo-cli",
3
- "version": "3.0.30",
3
+ "version": "3.1.0",
4
4
  "description": "SEMO CLI - AI Agent Orchestration Framework Installer",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -27,14 +27,14 @@
27
27
  "directory": "packages/cli"
28
28
  },
29
29
  "dependencies": {
30
- "chalk": "^5.3.0",
30
+ "chalk": "^4.1.2",
31
31
  "commander": "^12.0.0",
32
- "ora": "^8.0.0",
33
- "inquirer": "^9.2.0"
32
+ "ora": "^5.4.1",
33
+ "inquirer": "^8.2.6"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^20.0.0",
37
- "@types/inquirer": "^9.0.0",
37
+ "@types/inquirer": "^8.2.0",
38
38
  "typescript": "^5.0.0",
39
39
  "ts-node": "^10.0.0"
40
40
  },