opencode-hive 1.1.0 → 1.3.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.
@@ -1,61 +0,0 @@
1
- ---
2
- name: onboarding
3
- description: "Ask about workflow preferences and store them in .hive/contexts/preferences.md before proceeding."
4
- ---
5
-
6
- # Onboarding Preferences
7
-
8
- ## Overview
9
-
10
- Gather workflow preferences so the assistant can match the user's desired working style.
11
-
12
- ## When to Ask
13
-
14
- - **Immediately when the skill is loaded**, before any other work.
15
- - If `.hive/contexts/preferences.md` does not exist, start onboarding.
16
- - If later a decision is ambiguous and preferences are missing, ask again.
17
-
18
- ## Preference Storage
19
-
20
- Use `hive_context_write` to write `.hive/contexts/preferences.md` with this exact template:
21
-
22
- ```
23
- # Preferences
24
-
25
- ## Exploration Style
26
- sync
27
-
28
- ## Research Depth
29
- medium
30
-
31
- ## Confirmation Level
32
- standard
33
-
34
- ## Commit Behavior
35
- ask-before-commit
36
- ```
37
-
38
- ## If Preferences Already Exist
39
-
40
- Follow the same pattern used in `packages/vscode-hive/src/tools/plan.ts`:
41
-
42
- 1. Use `contextService.list(feature)` to detect existing contexts.
43
- 2. Ask **"Preferences already exist. Keep or overwrite?"** using the `question()` tool.
44
- 3. If keep → continue using existing preferences.
45
- 4. If overwrite → collect new answers and write them with `hive_context_write`.
46
-
47
- ## Questions to Ask (Always use `question()`)
48
-
49
- Ask one at a time, with the provided options. Store the answers in `.hive/contexts/preferences.md`.
50
-
51
- 1. **Exploration Style:** sync | async
52
- 2. **Research Depth:** shallow | medium | deep
53
- 3. **Confirmation Level:** minimal | standard | high
54
- 4. **Commit Behavior:** ask-before-commit | auto-commit | never-commit
55
-
56
- ## Requirements
57
-
58
- - Use the `question()` tool (no plain text questions).
59
- - Ask immediately when the skill loads if preferences are missing.
60
- - If later a decision is ambiguous and preferences are missing, ask again.
61
- - Always store answers using `hive_context_write` with the template above.