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.
- package/dist/agents/architect.d.ts +1 -1
- package/dist/agents/forager.d.ts +1 -1
- package/dist/agents/hive.d.ts +1 -1
- package/dist/agents/hygienic.d.ts +1 -1
- package/dist/agents/scout.d.ts +1 -7
- package/dist/agents/swarm.d.ts +1 -1
- package/dist/hooks/system-hook.d.ts +8 -0
- package/dist/index.js +1616 -507
- package/dist/skills/registry.generated.d.ts +1 -1
- package/dist/utils/compaction-prompt.d.ts +1 -0
- package/package.json +1 -1
- package/skills/agents-md-mastery/SKILL.md +253 -0
- package/skills/docker-mastery/SKILL.md +346 -0
- package/skills/executing-plans/SKILL.md +2 -2
- package/skills/test-driven-development/SKILL.md +1 -1
- package/skills/writing-plans/SKILL.md +7 -0
- package/skills/onboarding/SKILL.md +0 -61
|
@@ -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.
|