product-spec-mcp 0.3.19 → 0.3.20
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/README.md +10 -5
- package/dist/index.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,11 +19,6 @@
|
|
|
19
19
|
|
|
20
20
|
**不确定用哪个工具?** 先用 `product_spec_assist`,它会自动识别场景并调用合适的工具。
|
|
21
21
|
|
|
22
|
-
## 维护索引
|
|
23
|
-
|
|
24
|
-
- 更新 MCP 本体前,先看 [product-spec-mcp 更新经验索引](docs/product-spec-mcp-update-lessons.md)。
|
|
25
|
-
- WorkBuddy 接入、运行环境和副本同步问题仍记录在 [WorkBuddy 坑点记录](docs/workbuddy-mcp-pitfalls.md)。
|
|
26
|
-
|
|
27
22
|
## Features
|
|
28
23
|
|
|
29
24
|
This MCP Server provides 7 tools for product development workflow:
|
|
@@ -130,6 +125,16 @@ Add to `~/.config/opencode/opencode.json`:
|
|
|
130
125
|
|
|
131
126
|
> Note: opencode uses the `mcp` key. `mcpServers` is a Claude-style config key and will fail schema validation in current opencode versions.
|
|
132
127
|
|
|
128
|
+
## FAQ
|
|
129
|
+
|
|
130
|
+
### Where are maintainer notes?
|
|
131
|
+
|
|
132
|
+
If you plan to modify this MCP server itself, read the maintainer notes first:
|
|
133
|
+
|
|
134
|
+
- [product-spec-mcp update lessons](https://github.com/georgelue0321-vibe/product-spec-mcp/blob/main/docs/product-spec-mcp-update-lessons.md)
|
|
135
|
+
|
|
136
|
+
Client-specific integration notes are intentionally kept out of the main user flow. They live under `docs/` in the GitHub repository for maintainers who need them.
|
|
137
|
+
|
|
133
138
|
## Tools Documentation
|
|
134
139
|
|
|
135
140
|
### product_spec_assist (推荐入口)
|
package/dist/index.cjs
CHANGED
|
@@ -28302,7 +28302,7 @@ function registerProductSpecAssist(server) {
|
|
|
28302
28302
|
function createServer() {
|
|
28303
28303
|
const server = new McpServer({
|
|
28304
28304
|
name: "product-spec-mcp",
|
|
28305
|
-
version: "0.3.
|
|
28305
|
+
version: "0.3.20"
|
|
28306
28306
|
});
|
|
28307
28307
|
registerSpecInterrogate(server);
|
|
28308
28308
|
registerSpecCompile(server);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "product-spec-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
4
4
|
"description": "MCP Server for product specification - requirement interrogation, architecture decision, UI translation, debug guidance, and acceptance generation",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.cjs",
|