hive-intelligence 1.3.0 → 1.5.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.
Files changed (49) hide show
  1. package/README.md +2 -2
  2. package/agent-skills/SKILL.md +1 -1
  3. package/agent-skills/packs/hive-build/SKILL.md +1 -1
  4. package/agent-skills/packs/hive-build-onboarding/SKILL.md +7 -7
  5. package/agent-skills/packs/hive-cli/SKILL.md +2 -2
  6. package/agent-skills/packs/hive-defi-research/SKILL.md +1 -1
  7. package/agent-skills/packs/hive-dex-pool-analysis/SKILL.md +1 -1
  8. package/agent-skills/packs/hive-market-research/SKILL.md +1 -1
  9. package/agent-skills/packs/hive-mcp/SKILL.md +1 -1
  10. package/agent-skills/packs/hive-network-infrastructure/SKILL.md +1 -1
  11. package/agent-skills/packs/hive-nft-research/SKILL.md +1 -1
  12. package/agent-skills/packs/hive-prediction-markets/SKILL.md +1 -1
  13. package/agent-skills/packs/hive-query/SKILL.md +1 -1
  14. package/agent-skills/packs/hive-security-risk/SKILL.md +1 -1
  15. package/agent-skills/packs/hive-solana-analysis/SKILL.md +1 -1
  16. package/agent-skills/packs/hive-stateful-monitoring/SKILL.md +1 -1
  17. package/agent-skills/packs/hive-token-diligence/SKILL.md +1 -1
  18. package/agent-skills/packs/hive-tool-discovery/SKILL.md +1 -1
  19. package/agent-skills/packs/hive-wallet-investigation/SKILL.md +1 -1
  20. package/build/{api-client-FTVDFW5V.js → api-client-WMWFWXC7.js} +3 -15
  21. package/build/{auth-EZFJ5RYB.js → auth-Y4GXW376.js} +1 -9
  22. package/build/browser-auth-F62BMD7W.js +20 -0
  23. package/build/{chunk-W2QL7LYI.js → chunk-AGM2CIRL.js} +971 -117
  24. package/build/{chunk-7GD2MFYI.js → chunk-BDO27NIP.js} +37 -17
  25. package/build/{upgrade-J4HIGCKE.js → chunk-GB4XMTDE.js} +3 -4
  26. package/build/{chunk-TNQ7GJ6Q.js → chunk-GWZIAAQ2.js} +58 -40
  27. package/build/{chunk-Q7VBYLX7.js → chunk-P7NLFSZQ.js} +0 -58
  28. package/build/{chunk-N32UIHBU.js → chunk-SFN772RL.js} +5 -5
  29. package/build/{chunk-AEU43ACS.js → chunk-TVBPCELA.js} +2 -2
  30. package/build/{chunk-RUHO24SX.js → chunk-WF34ZD5I.js} +7 -162
  31. package/build/{chunk-I5Z6FZRL.js → chunk-XQPEFCSY.js} +14 -12
  32. package/build/cli.js +36 -47
  33. package/build/{completion-7KBW243H.js → completion-C57PDJMY.js} +1 -1
  34. package/build/{doctor-ORDOCGLM.js → doctor-XG5IQCXK.js} +5 -5
  35. package/build/{init-UCTCUYFA.js → init-COHA3VZI.js} +3 -3
  36. package/build/{init-all-BVWW3JVK.js → init-all-YTQJLPLR.js} +43 -24
  37. package/build/{mcpServer-RUEOTTF7.js → mcpServer-XHIN5JER.js} +1 -1
  38. package/build/monitor-worker.js +2 -2
  39. package/build/{namespace-L5DGCY7K.js → namespace-YLCGHVRT.js} +1 -1
  40. package/build/release.json +4 -4
  41. package/build/{serve-DKLR2WQH.js → serve-PWMT5IRU.js} +1 -1
  42. package/build/server.js +1475 -452
  43. package/build/stdio.js +1 -1
  44. package/build/{tools-I7GLWTV6.js → tools-XNFJBN7Q.js} +2 -2
  45. package/build/{uninstall-SAOIPL6K.js → uninstall-TKDP6C4F.js} +7 -7
  46. package/build/upgrade-ODPKMIDC.js +14 -0
  47. package/build/{watch-WVR4CGCD.js → watch-MXJSNGL2.js} +2 -2
  48. package/package.json +5 -3
  49. package/build/browser-auth-OJSUNFBI.js +0 -8
package/build/stdio.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  import {
7
7
  createHiveMcpServer,
8
8
  secureLogger
9
- } from "./chunk-W2QL7LYI.js";
9
+ } from "./chunk-AGM2CIRL.js";
10
10
  import "./chunk-L326MQZP.js";
11
11
  import "./chunk-EPF36Q3Z.js";
12
12
  import {
@@ -1,7 +1,7 @@
1
1
  import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);
2
2
  import {
3
3
  fetchToolCatalog
4
- } from "./chunk-Q7VBYLX7.js";
4
+ } from "./chunk-P7NLFSZQ.js";
5
5
  import "./chunk-ZXKFJQDE.js";
6
6
  import {
7
7
  info,
@@ -40,7 +40,7 @@ async function listTools(opts) {
40
40
  tools = tools.filter((t) => t.name.toLowerCase().startsWith(prefix + "_"));
41
41
  }
42
42
  if (opts.category) {
43
- const { NAMESPACE } = await import("./namespace-L5DGCY7K.js");
43
+ const { NAMESPACE } = await import("./namespace-YLCGHVRT.js");
44
44
  const cat = opts.category.toLowerCase();
45
45
  const ns = NAMESPACE.find(
46
46
  (d) => d.name === cat || d.description.toLowerCase().includes(cat)
@@ -2,7 +2,7 @@ import { createRequire } from 'node:module'; const require = createRequire(impor
2
2
  import {
3
3
  detectClients,
4
4
  removeSkillsForClients
5
- } from "./chunk-AEU43ACS.js";
5
+ } from "./chunk-TVBPCELA.js";
6
6
  import {
7
7
  removeClaudeCodeUserConfig,
8
8
  removeClaudeDesktopConfig,
@@ -51,8 +51,8 @@ async function runUninstall(opts = {}) {
51
51
  dryRun: Boolean(opts.dryRun)
52
52
  };
53
53
  if (!opts.json) {
54
- w(bold("\nHive Intelligence \u2014 Uninstall"));
55
- if (summary.dryRun) info("(dry-run \u2014 nothing will be changed)");
54
+ w(bold("\nHive Intelligence: Uninstall"));
55
+ if (summary.dryRun) info("(dry-run: nothing will be changed)");
56
56
  }
57
57
  const clients = detectClients();
58
58
  if (!opts.json) w(bold("\nRemoving from client configs"));
@@ -60,7 +60,7 @@ async function runUninstall(opts = {}) {
60
60
  for (const c of clients) {
61
61
  if (c.id === "chatgpt-desktop" || c.id === "grok") {
62
62
  info(
63
- c.id === "grok" ? "Grok \u2014 remove Hive once at grok.com/connectors" : "OpenAI / ChatGPT apps \u2014 remove the Hive app connector manually"
63
+ c.id === "grok" ? "Grok: remove Hive once at grok.com/connectors" : "OpenAI / ChatGPT apps: remove the Hive app connector manually"
64
64
  );
65
65
  continue;
66
66
  }
@@ -81,14 +81,14 @@ async function runUninstall(opts = {}) {
81
81
  ...result.instructions && { instructions: result.instructions }
82
82
  });
83
83
  if (result.removed) ok(`${c.name} ${dim("(" + result.path + ")")}`);
84
- else if (!result.manual) info(`${c.name} \u2014 no Hive entry to remove`);
84
+ else if (!result.manual) info(`${c.name}: no Hive entry to remove`);
85
85
  if (result.manual && result.instructions) {
86
- warn(`${c.name} \u2014 finish in the app: ${result.instructions}`);
86
+ warn(`${c.name} (finish in the app): ${result.instructions}`);
87
87
  }
88
88
  clientIds.push(c.id);
89
89
  } catch (err) {
90
90
  warn(
91
- `${c.name} \u2014 failed: ${err instanceof Error ? err.message : err}`
91
+ `${c.name} failed: ${err instanceof Error ? err.message : err}`
92
92
  );
93
93
  }
94
94
  }
@@ -0,0 +1,14 @@
1
+ import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);
2
+ import {
3
+ detectInstallMode,
4
+ runUpgrade
5
+ } from "./chunk-GB4XMTDE.js";
6
+ import "./chunk-M6REON2I.js";
7
+ import "./chunk-ZXKFJQDE.js";
8
+ import "./chunk-725R3KLJ.js";
9
+ import "./chunk-6PC3HUAK.js";
10
+ import "./chunk-ILVPOLA7.js";
11
+ export {
12
+ detectInstallMode,
13
+ runUpgrade
14
+ };
@@ -1,8 +1,8 @@
1
1
  import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);
2
2
  import {
3
3
  executeTool
4
- } from "./chunk-N32UIHBU.js";
5
- import "./chunk-Q7VBYLX7.js";
4
+ } from "./chunk-SFN772RL.js";
5
+ import "./chunk-P7NLFSZQ.js";
6
6
  import "./chunk-RU6QOFHH.js";
7
7
  import "./chunk-EPF36Q3Z.js";
8
8
  import "./chunk-ZXKFJQDE.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hive-intelligence",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "Evidence-backed crypto due diligence for AI agents, with sources, freshness, and a runtime receipt on every call.",
5
5
  "mcpName": "xyz.hiveintelligence/mcp",
6
6
  "type": "module",
@@ -12,7 +12,7 @@
12
12
  "scripts": {
13
13
  "build": "tsup && chmod 755 build/server.js build/stdio.js build/cli.js build/monitor-worker.js",
14
14
  "build:client": "npm --workspace hive-mcp-client run build",
15
- "check": "npm run verify:workflows && npm run release:verify && npm run verify:public-plugins && npm run build && npm run verify:bundles && npm run typecheck && npm run check:client && npm run env:render:check && npm run verify:endpoints && npx tsx scripts/verify-tools.ts && npm run verify:toolsets && npm run verify:agent-skills && npm run verify:docs && npm run measure-tokens -- --threshold=10000 && npm run test:unit && npm run test:mcp-compliance && npm run test:audit",
15
+ "check": "npm run verify:workflows && npm run release:verify && npm run verify:public-plugins && npm run build && npm run verify:bundles && npm run typecheck && npm run check:client && npm run env:render:check && npm run verify:endpoints && npx tsx scripts/verify-tools.ts && npm run verify:toolsets && npm run verify:agent-skills && npm run verify:docs && npm run verify:plan-parity && npm run measure-tokens -- --threshold=10000 && npm run test:unit && npm run test:mcp-compliance && npm run test:audit",
16
16
  "check:client": "npm --workspace hive-mcp-client run typecheck && npm --workspace hive-mcp-client run build && npm --workspace hive-mcp-client run test",
17
17
  "typecheck": "tsc --noEmit",
18
18
  "prepare": "npm run build",
@@ -65,7 +65,9 @@
65
65
  "verify:marketplace-review": "tsx scripts/verify-marketplace-review.ts",
66
66
  "verify:public-plugins": "npm run verify:codex-plugin && npm run verify:cursor-plugin && npm run verify:marketplace-review",
67
67
  "verify:docs": "tsx scripts/verify-doc-claims.ts",
68
- "verify:workflows": "github-actionlint .github/workflows/*.yml public-repos/hive-sdk/.github/workflows/*.yml",
68
+ "verify:plan-parity": "tsx scripts/verify-plan-parity.ts",
69
+ "analytics:rollup": "tsx scripts/rollup-tool-call-events.ts",
70
+ "verify:workflows": "github-actionlint ../.github/workflows/*.yml .github/workflows/*.yml public-repos/hive-sdk/.github/workflows/*.yml",
69
71
  "verify:bundles": "node --check build/server.js && node --check build/stdio.js && node --check build/cli.js && node --check build/monitor-worker.js",
70
72
  "verify:endpoints": "tsx scripts/validate-endpoints.ts",
71
73
  "export:toolsets": "tsx scripts/export-task-toolsets.ts",
@@ -1,8 +0,0 @@
1
- import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);
2
- import {
3
- browserLogin
4
- } from "./chunk-7GD2MFYI.js";
5
- import "./chunk-ILVPOLA7.js";
6
- export {
7
- browserLogin
8
- };