@dv.nghiem/flowdeck 0.4.10 → 0.4.11
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
CHANGED
|
@@ -4473,13 +4473,6 @@ function createFlowDeckMcps() {
|
|
|
4473
4473
|
enabled: true
|
|
4474
4474
|
};
|
|
4475
4475
|
}
|
|
4476
|
-
if (!disabled.has("omega-memory") && isLauncherAvailable("uvx")) {
|
|
4477
|
-
mcps.omegaMemory = {
|
|
4478
|
-
type: "local",
|
|
4479
|
-
command: ["uvx", "omega-memory", "serve"],
|
|
4480
|
-
enabled: true
|
|
4481
|
-
};
|
|
4482
|
-
}
|
|
4483
4476
|
if (!disabled.has("sequential-thinking") && isLauncherAvailable("npx")) {
|
|
4484
4477
|
mcps.sequentialThinking = {
|
|
4485
4478
|
type: "local",
|
|
@@ -5606,7 +5599,7 @@ Use the following MCP tools when relevant to the research task:
|
|
|
5606
5599
|
|
|
5607
5600
|
- **context7** — library documentation lookup (always try first for API/docs questions)
|
|
5608
5601
|
- **sequential-thinking** — stepwise investigation and planning for complex research tasks
|
|
5609
|
-
- **memory
|
|
5602
|
+
- **memory** — retrieve prior context from previous research sessions when relevant
|
|
5610
5603
|
- **magic** — UI/design system research (component libraries, design tokens, theming)
|
|
5611
5604
|
- **playwright** — verify browser behavior, test interactive examples, or research runtime DOM/API behavior
|
|
5612
5605
|
- **token-optimizer** — compress or reduce large context before presenting findings
|
package/dist/mcp/index.d.ts
CHANGED
|
@@ -12,13 +12,12 @@
|
|
|
12
12
|
*
|
|
13
13
|
* Additional local stdio MCPs (enabled by default):
|
|
14
14
|
* - memory npx -y @modelcontextprotocol/server-memory
|
|
15
|
-
* - omega-memory uvx omega-memory serve
|
|
16
15
|
* - sequential-thinking npx -y @modelcontextprotocol/server-sequential-thinking
|
|
17
16
|
* - magic npx -y @magicuidesign/mcp@latest
|
|
18
17
|
* - playwright npx -y @playwright/mcp --browser chrome
|
|
19
18
|
* - token-optimizer npx -y token-optimizer-mcp
|
|
20
19
|
*
|
|
21
|
-
* Disable individual MCPs with: FLOWDECK_DISABLE_MCP=context7,websearch,grep_app,github,codegraph,memory,
|
|
20
|
+
* Disable individual MCPs with: FLOWDECK_DISABLE_MCP=context7,websearch,grep_app,github,codegraph,memory,sequential-thinking,magic,playwright,token-optimizer
|
|
22
21
|
*/
|
|
23
22
|
type RemoteMcp = {
|
|
24
23
|
type: "remote";
|
package/dist/mcp/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/mcp/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAKH,KAAK,SAAS,GAAG;IACf,IAAI,EAAE,QAAQ,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAChC,KAAK,CAAC,EAAE,KAAK,CAAA;CACd,CAAA;AAED,KAAK,QAAQ,GAAG;IACd,IAAI,EAAE,OAAO,CAAA;IACb,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACpC,OAAO,EAAE,OAAO,CAAA;CACjB,CAAA;AAoBD,wBAAgB,kBAAkB,IAAI,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,QAAQ,CAAC,CAuGzE"}
|
package/package.json
CHANGED
|
@@ -46,7 +46,7 @@ If research is stale or missing:
|
|
|
46
46
|
> **MCP integration:** When implementation requires external library knowledge, invoke configured MCP tools as part of the research pass.
|
|
47
47
|
> - **context7** — library docs lookup (first choice for API/docs questions)
|
|
48
48
|
> - **sequential-thinking** — break down complex implementation steps
|
|
49
|
-
> - **memory
|
|
49
|
+
> - **memory** — retrieve prior context from planning or earlier phases
|
|
50
50
|
> - **magic** — UI/design system reference for frontend tasks
|
|
51
51
|
> - **playwright** — verify browser behavior for frontend implementations
|
|
52
52
|
> - **token-optimizer** — compress large context when passing research to implementation agents
|
|
@@ -63,7 +63,7 @@ If research is stale or missing:
|
|
|
63
63
|
> **MCP integration:** When the bug involves external APIs or libraries, invoke configured MCP tools to research known failure modes.
|
|
64
64
|
> - **context7** — library docs lookup (first choice for API/docs questions)
|
|
65
65
|
> - **sequential-thinking** — stepwise root cause analysis for complex bugs
|
|
66
|
-
> - **memory
|
|
66
|
+
> - **memory** — retrieve prior bug fixes or related context
|
|
67
67
|
> - **magic** — design system issues for UI bugs
|
|
68
68
|
> - **playwright** — reproduce and verify browser-specific bugs
|
|
69
69
|
> - **token-optimizer** — compress large stack traces or logs before analysis
|
package/src/commands/fd-plan.md
CHANGED
|
@@ -49,7 +49,7 @@ If research is stale or missing:
|
|
|
49
49
|
> **MCP integration:** When library, API, or external knowledge is needed, invoke configured MCP tools as part of the research pass.
|
|
50
50
|
> - **context7** — library docs lookup (first choice for API/docs questions)
|
|
51
51
|
> - **sequential-thinking** — stepwise planning for complex or ambiguous tasks
|
|
52
|
-
> - **memory
|
|
52
|
+
> - **memory** — retrieve prior context when available
|
|
53
53
|
> - **magic** — UI/design system research
|
|
54
54
|
> - **playwright** — verify browser behavior for frontend tasks
|
|
55
55
|
> - **token-optimizer** — compress large research context before planning
|