@comfanion/workflow 4.36.32 → 4.36.34

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/cli.js CHANGED
@@ -265,6 +265,7 @@ program
265
265
  { name: 'sequential-thinking - Enhanced reasoning (recommended)', value: 'sequential-thinking', checked: true },
266
266
  { name: 'chrome-devtools - Chrome debugging, DOM, network', value: 'chrome-devtools', checked: false },
267
267
  { name: 'playwright - Browser automation and testing', value: 'playwright', checked: false },
268
+ { name: 'figma - Figma design files and components', value: 'figma', checked: false },
268
269
  { name: 'grep - Search code examples from GitHub', value: 'grep', checked: false },
269
270
  { name: 'github - GitHub repos, issues, PRs', value: 'github', checked: false },
270
271
  { name: 'sentry - Query Sentry issues (OAuth)', value: 'sentry', checked: false },
@@ -515,11 +516,12 @@ program
515
516
  'context7': { type: 'remote', url: 'https://mcp.context7.com/mcp' },
516
517
  'grep': { type: 'remote', url: 'https://mcp.grep.app' },
517
518
  'sentry': { type: 'remote', url: 'https://mcp.sentry.dev/mcp', oauth: {} },
518
- 'sequential-thinking': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-sequential-thinking'] },
519
+ 'sequential-thinking': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'] },
519
520
  'chrome-devtools': { type: 'local', command: ['npx', '-y', 'chrome-devtools-mcp@latest'] },
520
- 'playwright': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-playwright'] },
521
- 'github': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-github'] },
522
- 'postgres': { type: 'local', command: ['npx', '-y', '@anthropic/mcp-postgres'] }
521
+ 'playwright': { type: 'local', command: ['npx', '-y', '@playwright/mcp@latest'] },
522
+ 'figma': { type: 'local', command: ['npx', '-y', 'figma-mcp'] },
523
+ 'github': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-github'] },
524
+ 'postgres': { type: 'local', command: ['npx', '-y', '@modelcontextprotocol/server-postgres'] }
523
525
  };
524
526
 
525
527
  // Read existing opencode.json or create new
@@ -1283,14 +1285,14 @@ const MCP_CATALOG = {
1283
1285
  name: 'Sequential Thinking',
1284
1286
  description: 'Enhanced reasoning for complex tasks',
1285
1287
  type: 'local',
1286
- command: ['npx', '-y', '@anthropic/mcp-sequential-thinking'],
1288
+ command: ['npx', '-y', '@modelcontextprotocol/server-sequential-thinking'],
1287
1289
  recommended: true
1288
1290
  },
1289
1291
  'playwright': {
1290
1292
  name: 'Playwright',
1291
1293
  description: 'Browser automation and testing',
1292
1294
  type: 'local',
1293
- command: ['npx', '-y', '@anthropic/mcp-playwright'],
1295
+ command: ['npx', '-y', '@playwright/mcp@latest'],
1294
1296
  recommended: false
1295
1297
  },
1296
1298
  'chrome-devtools': {
@@ -1300,11 +1302,19 @@ const MCP_CATALOG = {
1300
1302
  command: ['npx', '-y', 'chrome-devtools-mcp@latest'],
1301
1303
  recommended: false
1302
1304
  },
1305
+ 'figma': {
1306
+ name: 'Figma',
1307
+ description: 'Figma design files and components',
1308
+ type: 'local',
1309
+ command: ['npx', '-y', 'figma-mcp'],
1310
+ requires_env: ['FIGMA_ACCESS_TOKEN'],
1311
+ recommended: false
1312
+ },
1303
1313
  'github': {
1304
1314
  name: 'GitHub',
1305
1315
  description: 'GitHub repos, issues, PRs',
1306
1316
  type: 'local',
1307
- command: ['npx', '-y', '@anthropic/mcp-github'],
1317
+ command: ['npx', '-y', '@modelcontextprotocol/server-github'],
1308
1318
  requires_env: ['GITHUB_TOKEN'],
1309
1319
  recommended: false
1310
1320
  },
@@ -1312,7 +1322,7 @@ const MCP_CATALOG = {
1312
1322
  name: 'GitLab',
1313
1323
  description: 'GitLab repos, issues, MRs',
1314
1324
  type: 'local',
1315
- command: ['npx', '-y', '@anthropic/mcp-gitlab'],
1325
+ command: ['npx', '-y', '@modelcontextprotocol/server-gitlab'],
1316
1326
  requires_env: ['GITLAB_TOKEN'],
1317
1327
  recommended: false
1318
1328
  },
@@ -1320,7 +1330,7 @@ const MCP_CATALOG = {
1320
1330
  name: 'PostgreSQL',
1321
1331
  description: 'Query PostgreSQL databases',
1322
1332
  type: 'local',
1323
- command: ['npx', '-y', '@anthropic/mcp-postgres'],
1333
+ command: ['npx', '-y', '@modelcontextprotocol/server-postgres'],
1324
1334
  requires_env: ['POSTGRES_CONNECTION_STRING'],
1325
1335
  recommended: false
1326
1336
  },
@@ -1328,7 +1338,7 @@ const MCP_CATALOG = {
1328
1338
  name: 'Slack',
1329
1339
  description: 'Slack messages and channels',
1330
1340
  type: 'local',
1331
- command: ['npx', '-y', '@anthropic/mcp-slack'],
1341
+ command: ['npx', '-y', '@modelcontextprotocol/server-slack'],
1332
1342
  requires_env: ['SLACK_TOKEN'],
1333
1343
  recommended: false
1334
1344
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.36.32",
3
+ "version": "4.36.34",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.36.32",
3
- "buildDate": "2026-01-24T21:03:00.759Z",
2
+ "version": "4.36.34",
3
+ "buildDate": "2026-01-24T21:07:31.172Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -58,7 +58,7 @@ servers:
58
58
  category: thinking
59
59
  recommended: true
60
60
  type: local
61
- command: ["npx", "-y", "@anthropic/mcp-sequential-thinking"]
61
+ command: ["npx", "-y", "@modelcontextprotocol/server-sequential-thinking"]
62
62
  tags: [reasoning, planning, complex-tasks]
63
63
 
64
64
  playwright:
@@ -67,7 +67,7 @@ servers:
67
67
  category: browser
68
68
  recommended: false
69
69
  type: local
70
- command: ["npx", "-y", "@anthropic/mcp-playwright"]
70
+ command: ["npx", "-y", "@playwright/mcp@latest"]
71
71
  tags: [browser, testing, automation, scraping]
72
72
 
73
73
  chrome-devtools: