@unified-product-graph/mcp-server 0.7.6 → 0.8.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/TOOLS.md +1 -1
- package/dist/index.js +413 -422
- package/dist/index.js.map +1 -1
- package/dist/tools-manifest.json +2 -2
- package/package.json +1 -1
- package/skills/upg-run/SKILL.md +5 -5
package/dist/tools-manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "2",
|
|
3
3
|
"package": "@unified-product-graph/mcp-server",
|
|
4
|
-
"package_version": "0.
|
|
4
|
+
"package_version": "0.8.1",
|
|
5
5
|
"tool_count": 94,
|
|
6
6
|
"domains": [
|
|
7
7
|
"context",
|
|
@@ -2464,7 +2464,7 @@
|
|
|
2464
2464
|
},
|
|
2465
2465
|
{
|
|
2466
2466
|
"name": "get_playbook",
|
|
2467
|
-
"description": "Return one `UPGPlaybook` by id (e.g. \"playbook:strategy-outcomes\", \"playbook:business-
|
|
2467
|
+
"description": "Return one `UPGPlaybook` by id (e.g. \"playbook:strategy-outcomes\", \"playbook:business-gtm-growth\"). Includes the ordered `creation_sequence` with step kinds and prompts. IDs are namespace-prefixed `playbook:*`. For approaches, use `get_approach`.",
|
|
2468
2468
|
"domain": "spec",
|
|
2469
2469
|
"inputSchema": {
|
|
2470
2470
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unified-product-graph/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Local MCP server for .upg files. Read and write product knowledge graphs offline.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "The Product Creator <hello@theproductcreator.com>",
|
package/skills/upg-run/SKILL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: upg-run
|
|
3
3
|
description: "Run any UPG playbook: generic driver for canonical playbooks"
|
|
4
4
|
user-invocable: true
|
|
5
|
-
argument-hint: "[playbook-id] (e.g. playbook:strategy-outcomes, playbook:business-
|
|
5
|
+
argument-hint: "[playbook-id] (e.g. playbook:strategy-outcomes, playbook:business-gtm-growth, playbook:experience-design-brand)"
|
|
6
6
|
category: cognitive
|
|
7
7
|
approaches: [plan]
|
|
8
8
|
---
|
|
@@ -23,12 +23,12 @@ For `kind: 'domain_guide'` steps, the runtime expands them via `DomainUsageGuide
|
|
|
23
23
|
|
|
24
24
|
## Argument parsing
|
|
25
25
|
|
|
26
|
-
The user invokes this skill with a playbook id, e.g. `/upg-run playbook:business-
|
|
26
|
+
The user invokes this skill with a playbook id, e.g. `/upg-run playbook:business-gtm-growth`.
|
|
27
27
|
|
|
28
|
-
If no argument is given, list the canonical ids and ask the user to pick one. Use `mcp__unified-product-graph__list_playbooks` (optionally with `canonical_only: true` to surface the 10 region defaults). v0.3.0 ships
|
|
28
|
+
If no argument is given, list the canonical ids and ask the user to pick one. Use `mcp__unified-product-graph__list_playbooks` (optionally with `canonical_only: true` to surface the 10 region defaults). v0.3.0 ships 12 playbooks across 10 regions:
|
|
29
29
|
|
|
30
30
|
- **Canonical** (one per region): `playbook:strategy-outcomes`, `playbook:users-needs`, `playbook:discovery-research-validation`, `playbook:market-competitive`, `playbook:experience-design-brand`, `playbook:product-delivery`, `playbook:engineering-platform`, `playbook:business-gtm-growth`, `playbook:analytics-data`, `playbook:operations-quality`.
|
|
31
|
-
- **Specialised** (alternative entry paths
|
|
31
|
+
- **Specialised** (alternative entry paths): `playbook:business-growth-metric-driven`, `playbook:business-marketing-audience-first`.
|
|
32
32
|
|
|
33
33
|
## Session flow
|
|
34
34
|
|
|
@@ -117,7 +117,7 @@ Summarize:
|
|
|
117
117
|
|
|
118
118
|
If the final step (or any completed step) declared `next_sequence_on_gap` **and** the named gap is present in the graph, offer to run it:
|
|
119
119
|
|
|
120
|
-
> "Done with `playbook:
|
|
120
|
+
> "Done with `playbook:strategy-outcomes`. I noticed discovery research isn't modelled yet; want me to run `playbook:discovery-research-validation` next?"
|
|
121
121
|
|
|
122
122
|
The user picks yes/no/different playbook. On yes, invoke `/upg-run <chained-id>` directly.
|
|
123
123
|
|