bluekiwi 0.1.7 → 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/assets/mcp/server.js +97 -2
- package/dist/assets/skills/bk-approve/SKILL.md +78 -0
- package/dist/assets/skills/bk-credential/SKILL.md +146 -0
- package/dist/assets/skills/bk-design/SKILL.md +127 -0
- package/dist/assets/skills/bk-improve/SKILL.md +106 -0
- package/dist/assets/skills/bk-instruction/SKILL.md +177 -0
- package/dist/assets/skills/bk-next/SKILL.md +128 -116
- package/dist/assets/skills/bk-report/SKILL.md +97 -0
- package/dist/assets/skills/bk-rewind/SKILL.md +34 -41
- package/dist/assets/skills/bk-run/SKILL.md +50 -0
- package/dist/assets/skills/bk-scan/SKILL.md +115 -0
- package/dist/assets/skills/bk-share/SKILL.md +99 -0
- package/dist/assets/skills/bk-start/SKILL.md +67 -64
- package/dist/assets/skills/bk-status/SKILL.md +14 -14
- package/dist/assets/skills/bk-version/SKILL.md +95 -0
- package/package.json +1 -1
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bk-version
|
|
3
|
+
description: BlueKiwi version management skill. Lists all versions of a workflow family, activates or deactivates specific versions, and compares versions. This skill should be used when the user says "/bk-version", "manage versions", "switch version", "see version history", or wants to handle workflow versioning in BlueKiwi.
|
|
4
|
+
user_invocable: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# BlueKiwi Version Management
|
|
8
|
+
|
|
9
|
+
View, compare, activate, and manage versions of a workflow family.
|
|
10
|
+
|
|
11
|
+
## Argument Handling
|
|
12
|
+
|
|
13
|
+
- `/bk-version` → Select a workflow and show its version history.
|
|
14
|
+
- `/bk-version <workflow name>` → Load version history for the named workflow directly.
|
|
15
|
+
|
|
16
|
+
## Core Concepts
|
|
17
|
+
|
|
18
|
+
- A **workflow family** shares the same root. All versions created via `create_new_version: true` are members of the same family.
|
|
19
|
+
- Only **one version per family** can be active at a time. Activating a version automatically deactivates the previous active one.
|
|
20
|
+
- Inactive (archived) versions are readable but cannot be started with `start_workflow`.
|
|
21
|
+
|
|
22
|
+
## Execution Steps
|
|
23
|
+
|
|
24
|
+
### Step 1: Select Workflow
|
|
25
|
+
|
|
26
|
+
If no argument, call `list_workflows` and ask via AskUserQuestion:
|
|
27
|
+
|
|
28
|
+
- header: "Which workflow?"
|
|
29
|
+
- options: workflow title list (up to 4)
|
|
30
|
+
|
|
31
|
+
### Step 2: Load Version History
|
|
32
|
+
|
|
33
|
+
Call `list_workflow_versions` for the selected workflow ID.
|
|
34
|
+
|
|
35
|
+
Display the version list:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
Workflow versions: {title}
|
|
39
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
40
|
+
v1.0 (ID: 12) ✅ Active created 2026-04-10
|
|
41
|
+
v1.1 (ID: 15) 🗄️ Archived created 2026-04-11
|
|
42
|
+
v2.0 (ID: 18) 🗄️ Archived created 2026-04-12
|
|
43
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
44
|
+
Active: v1.0
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Step 3: Select Action
|
|
48
|
+
|
|
49
|
+
Ask via AskUserQuestion:
|
|
50
|
+
|
|
51
|
+
- header: "Version action"
|
|
52
|
+
- options: ["Activate a version", "Deactivate current", "Compare two versions", "Cancel"]
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
### Action: Activate
|
|
57
|
+
|
|
58
|
+
Ask which version to activate via AskUserQuestion (show archived versions as options).
|
|
59
|
+
|
|
60
|
+
Confirm:
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
Activate v<x.y> (ID: <id>)?
|
|
64
|
+
This will deactivate the current active version v<current>.
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Call `activate_workflow` with the selected `workflow_id`.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
### Action: Deactivate Current
|
|
72
|
+
|
|
73
|
+
Confirm via AskUserQuestion:
|
|
74
|
+
|
|
75
|
+
- "Deactivate the current active version v<version>? No version will be active until you reactivate one."
|
|
76
|
+
- options: ["Deactivate", "Cancel"]
|
|
77
|
+
|
|
78
|
+
Call `deactivate_workflow`.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
### Action: Compare Two Versions
|
|
83
|
+
|
|
84
|
+
Ask the user to select two versions to compare via AskUserQuestion.
|
|
85
|
+
|
|
86
|
+
Fetch both workflows and display a side-by-side node comparison:
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
Comparing v<a> vs v<b>
|
|
90
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
91
|
+
Step 1: [same] Clarify Goal
|
|
92
|
+
Step 2: [changed] "Collect keywords" → "Collect top 10 keywords (by search volume)"
|
|
93
|
+
Step 3: [added in v<b>] Quantitative Validation
|
|
94
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
95
|
+
```
|