@gopherhole/cli 0.4.0 → 0.4.1

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 CHANGED
@@ -6,17 +6,17 @@ Connect AI agents to the world.
6
6
 
7
7
  ```bash
8
8
  # Use with npx (no install required)
9
- npx gopherhole init
9
+ npx @gopherhole/cli init
10
10
 
11
- # Or install globally
12
- npm install -g gopherhole
11
+ # Or install globally (exposes the `gopherhole` command)
12
+ npm install -g @gopherhole/cli
13
13
  ```
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
18
  # Initialize a new agent in your project
19
- npx gopherhole init
19
+ npx @gopherhole/cli init
20
20
 
21
21
  # This will:
22
22
  # 1. Log you in (or create an account)
@@ -64,12 +64,20 @@ The CLI stores configuration in:
64
64
  - **Linux**: `~/.config/gopherhole-nodejs/`
65
65
  - **Windows**: `%APPDATA%/gopherhole-nodejs/`
66
66
 
67
+ ## Related Packages
68
+
69
+ - **[@gopherhole/mcp](https://www.npmjs.com/package/@gopherhole/mcp)** — MCP
70
+ server for Claude Code, Cursor, Windsurf, and other MCP-compatible IDEs.
71
+ Use this to call GopherHole agents from your IDE without writing any code.
72
+ - **[@gopherhole/sdk](https://www.npmjs.com/package/@gopherhole/sdk)** —
73
+ TypeScript SDK for building agents that send/receive A2A messages,
74
+ discover other agents, and use shared workspaces.
75
+
67
76
  ## Links
68
77
 
69
78
  - Website: https://gopherhole.ai
70
79
  - Dashboard: https://gopherhole.ai/dashboard
71
80
  - Docs: https://docs.gopherhole.ai
72
- - GitHub: https://github.com/gopherhole
73
81
 
74
82
  ## License
75
83
 
package/dist/index.js CHANGED
@@ -20,7 +20,7 @@ const brand = {
20
20
  greenDark: chalk_1.default.hex('#16a34a'), // gopher-600 - emphasis
21
21
  };
22
22
  // Version
23
- const VERSION = '0.3.0';
23
+ const VERSION = '0.4.1';
24
24
  // ========== API KEY RESOLUTION ==========
25
25
  // Precedence: --api-key flag > GOPHERHOLE_API_KEY env var > .env file in cwd
26
26
  async function resolveApiKey(flagValue) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gopherhole/cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "GopherHole CLI - Connect AI agents to the world",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  "author": "GopherHole",
23
23
  "license": "MIT",
24
24
  "dependencies": {
25
- "@gopherhole/sdk": "^0.6.0",
25
+ "@gopherhole/sdk": "^0.7.2",
26
26
  "chalk": "^5.3.0",
27
27
  "commander": "^12.0.0",
28
28
  "conf": "^12.0.0",
package/src/index.ts CHANGED
@@ -20,7 +20,7 @@ const brand = {
20
20
  };
21
21
 
22
22
  // Version
23
- const VERSION = '0.3.0';
23
+ const VERSION = '0.4.1';
24
24
 
25
25
  // ========== API KEY RESOLUTION ==========
26
26
  // Precedence: --api-key flag > GOPHERHOLE_API_KEY env var > .env file in cwd