@keepur/hive 0.2.9 → 0.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/README.md +8 -0
- package/package.json +2 -1
- package/pkg/cli.min.js +120 -117
- package/pkg/mcp/structured-memory.min.js +21 -21
- package/pkg/server.min.js +197 -194
- package/scripts/honeypot +84 -34
package/README.md
CHANGED
|
@@ -81,7 +81,15 @@ hive plugin list # List installed plugins
|
|
|
81
81
|
hive plugin remove <name> # Remove a plugin
|
|
82
82
|
hive skill add <name> # Install a skill
|
|
83
83
|
hive skill list # List installed skills
|
|
84
|
+
hive skill upgrade # Upgrade installed skills
|
|
85
|
+
hive skill search <query> # Search registries for a skill
|
|
84
86
|
hive skill remove <name> # Remove a skill
|
|
87
|
+
hive registry add # Add a skill registry
|
|
88
|
+
hive registry list # List configured registries
|
|
89
|
+
hive registry remove # Remove a registry
|
|
90
|
+
hive credentials list # Show third-party API keys (curated)
|
|
91
|
+
hive credentials add <KEY> # Set or rotate a credential (Keychain-backed)
|
|
92
|
+
hive credentials remove <KEY> # Delete a credential
|
|
85
93
|
```
|
|
86
94
|
|
|
87
95
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keepur/hive",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"hiveApi": "1.0.0",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"setup:seeds": "npx tsx setup/setup-seeds.ts",
|
|
41
41
|
"setup:plugins": "npx tsx setup/sync-plugins.ts",
|
|
42
42
|
"migrate:agents:legacy": "npx tsx setup/migrate-agents.ts",
|
|
43
|
+
"migrate:split-crm-contacts": "npx tsx setup/migrate-split-crm-contacts.ts",
|
|
43
44
|
"setup:plist": "npx tsx setup/generate-plist.ts",
|
|
44
45
|
"update": "git pull && npm install && npm run build",
|
|
45
46
|
"reindex": "npx tsx scripts/code-index.ts",
|