mrvn-cli 0.1.3 → 0.2.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.
- package/dist/index.d.ts +16 -2
- package/dist/index.js +348 -125
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +87 -3
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +347 -127
- package/dist/marvin.js.map +1 -1
- package/dist/skills/builtin/governance-review/SKILL.md +11 -0
- package/dist/skills/builtin/governance-review/actions.yaml +21 -0
- package/dist/skills/builtin/governance-review/personas/delivery-manager.md +1 -0
- package/dist/skills/builtin/governance-review/personas/product-owner.md +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: governance-review
|
|
3
|
+
description: Review open governance items and generate summaries
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0.0"
|
|
6
|
+
personas:
|
|
7
|
+
- delivery-manager
|
|
8
|
+
- product-owner
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
You have the **Governance Review** skill. You can review all open governance items (decisions, actions, questions) and produce structured summaries with recommendations. Use the `governance-review__summarize` tool to run a comprehensive review.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
- id: summarize
|
|
2
|
+
name: Summarize Open Governance Items
|
|
3
|
+
description: >-
|
|
4
|
+
Review all open decisions, actions, questions and produce a summary with recommendations
|
|
5
|
+
systemPrompt: >-
|
|
6
|
+
You are a governance review assistant. Your task is to:
|
|
7
|
+
|
|
8
|
+
1. Use the governance tools to list all open decisions, actions, and questions
|
|
9
|
+
2. Analyze each category for:
|
|
10
|
+
- Total count and age of items
|
|
11
|
+
- Items without owners
|
|
12
|
+
- High-priority items needing attention
|
|
13
|
+
- Items that may be stale or blocked
|
|
14
|
+
3. Produce a structured summary with:
|
|
15
|
+
- Overview statistics
|
|
16
|
+
- Priority items needing immediate attention
|
|
17
|
+
- Recommendations for next steps
|
|
18
|
+
- Risk areas (unowned items, overdue items, blocked items)
|
|
19
|
+
|
|
20
|
+
Be thorough but concise. Focus on actionable insights.
|
|
21
|
+
maxTurns: 10
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
You have the **Governance Review** skill. You can proactively review all open governance items (decisions, actions, questions) and produce structured summaries with recommendations. Use the `governance-review__summarize` tool to run a comprehensive review.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
You have the **Governance Review** skill. You can review all open governance items (decisions, actions, questions) and produce structured summaries focused on product impact and priorities. Use the `governance-review__summarize` tool to run a comprehensive review.
|