@imisbahk/hive 0.1.1 → 0.1.3
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/Aborted +0 -0
- package/FEATURES.md +10 -2
- package/bun.lock +554 -0
- package/dist/cli/commands/chat.d.ts.map +1 -1
- package/dist/cli/commands/chat.js +28 -8
- package/dist/cli/commands/chat.js.map +1 -1
- package/dist/cli/commands/config.d.ts +2 -0
- package/dist/cli/commands/config.d.ts.map +1 -1
- package/dist/cli/commands/config.js +207 -1
- package/dist/cli/commands/config.js.map +1 -1
- package/dist/cli/commands/doctor.d.ts +8 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +503 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/status.js +1 -1
- package/dist/cli/commands/status.js.map +1 -1
- package/dist/cli/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/theme.d.ts +22 -0
- package/dist/cli/theme.d.ts.map +1 -0
- package/dist/cli/theme.js +63 -0
- package/dist/cli/theme.js.map +1 -0
- package/dist/cli/ui.d.ts.map +1 -1
- package/dist/cli/ui.js +12 -7
- package/dist/cli/ui.js.map +1 -1
- package/package.json +2 -2
- package/releases/v1/v0.1/RELEASE-NOTES.md +55 -0
- package/src/cli/commands/chat.ts +31 -7
- package/src/cli/commands/config.ts +266 -1
- package/src/cli/commands/doctor.ts +655 -0
- package/src/cli/commands/status.ts +1 -1
- package/src/cli/index.ts +2 -0
- package/src/cli/theme.ts +88 -0
- package/src/cli/ui.ts +14 -7
package/Aborted
ADDED
|
File without changes
|
package/FEATURES.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
• v0.1.
|
|
1
|
+
• v0.1.3 command surface:
|
|
2
2
|
|
|
3
3
|
CLI commands
|
|
4
4
|
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
- hive config provider → interactive provider/model/key update
|
|
10
10
|
- hive config model → interactive model update
|
|
11
11
|
- hive config key → interactive API key update
|
|
12
|
+
- hive config theme → interactive accent theme picker (live preview)
|
|
12
13
|
- hive config show → show provider/model/agent/key status
|
|
14
|
+
- hive doctor → run full health check diagnostics
|
|
13
15
|
- hive status → full local status report
|
|
14
16
|
- hive nuke → permanently delete local Hive data + keys
|
|
15
17
|
- hive help [command]
|
|
@@ -40,11 +42,17 @@
|
|
|
40
42
|
- /hive config provider (interactive in chat)
|
|
41
43
|
- /hive config model (interactive in chat)
|
|
42
44
|
- /hive config key (interactive in chat)
|
|
45
|
+
- /hive config theme (interactive in chat)
|
|
43
46
|
- /hive init and /hive nuke are shell-only safety commands
|
|
44
47
|
|
|
45
48
|
Current features
|
|
46
49
|
|
|
47
50
|
- Centered “HIVE / Command Centre” UI across command pages
|
|
51
|
+
- Unified CLI accent theme system stored in `~/.hive/hive.db`
|
|
52
|
+
- Built-in themes: amber (default), cyan, rose, slate, green
|
|
53
|
+
- Custom theme hex support with validation (`^#[0-9A-Fa-f]{6}$`)
|
|
54
|
+
- Live, real-time theme preview while navigating `hive config theme`
|
|
55
|
+
- ASCII HIVE wordmark, separators, prompts, step/success indicators now share one accent color
|
|
48
56
|
- Chat-first CLI (hive opens chat)
|
|
49
57
|
- Deprecated hive chat messaging
|
|
50
58
|
- Live / autocomplete with scrollable suggestion viewport
|
|
@@ -52,4 +60,4 @@
|
|
|
52
60
|
- Slash-command hardening (unknown slash commands handled locally, not sent to model)
|
|
53
61
|
- Browser-augmented chat flow for search/browse prompts
|
|
54
62
|
- In-chat provider/model switching without dropping back to shell
|
|
55
|
-
- Local-first storage (~/.hive), prompt loading from .hive/prompts, keychain-backed keys
|
|
63
|
+
- Local-first storage (~/.hive), prompt loading from .hive/prompts, keychain-backed keys
|