driggsby 0.1.2 → 0.1.4

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 (2) hide show
  1. package/README.md +30 -34
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,21 +1,12 @@
1
1
  # driggsby
2
2
 
3
- `driggsby` installs the local Driggsby CLI and MCP broker.
4
-
5
- It gives local AI clients a single shared path into Driggsby:
6
-
7
- ```text
8
- Codex / Claude Code / other local MCP client
9
- |
10
- v
11
- driggsby mcp-server
12
- |
13
- v
14
- shared local broker
15
- |
16
- v
17
- remote Driggsby MCP
18
- ```
3
+ `driggsby` is the local CLI for connecting AI clients to Driggsby over MCP.
4
+
5
+ ## What You Get
6
+
7
+ - browser-based sign-in to Driggsby
8
+ - a local MCP server for tools like Codex and Claude Code
9
+ - access to supported Driggsby tools from your AI client
19
10
 
20
11
  ## Install
21
12
 
@@ -25,37 +16,42 @@ npm install -g driggsby
25
16
 
26
17
  Node `20+` is required.
27
18
 
28
- ## Commands
19
+ If you prefer not to install globally, you can also use `npx -y driggsby ...`.
20
+
21
+ ## Quick Start
22
+
23
+ 1. Sign in:
29
24
 
30
- ```text
25
+ ```bash
31
26
  driggsby login
32
- driggsby status
33
- driggsby mcp-server
34
- driggsby logout
35
- driggsby broker-daemon
36
27
  ```
37
28
 
38
- Typical local setup:
29
+ 2. Add Driggsby as an MCP server in your client:
39
30
 
40
31
  ```bash
41
- driggsby login
42
32
  codex mcp add driggsby -- driggsby mcp-server
43
33
  ```
44
34
 
45
- You can also use `npx -y driggsby ...` if you do not want a global install.
35
+ 3. Check broker status any time:
46
36
 
47
- ## What It Does
37
+ ```bash
38
+ driggsby status
39
+ ```
48
40
 
49
- - opens a browser-based Driggsby sign-in flow
50
- - keeps one local broker session on the machine
51
- - exposes a local stdio MCP server for local AI clients
52
- - forwards supported Driggsby MCP tools through the broker
41
+ ## Commands
42
+
43
+ ```bash
44
+ driggsby login
45
+ driggsby status
46
+ driggsby mcp-server
47
+ driggsby logout
48
+ driggsby broker-daemon
49
+ ```
53
50
 
54
- ## Security
51
+ ## Learn More
55
52
 
56
- - publishes from GitHub Actions using npm trusted publishing and OIDC
57
- - does not require a long-lived npm publish token for releases
58
- - keeps local broker session material in the platform secret store
53
+ - Product and source: https://github.com/thegoodsoftwareco/driggsby
54
+ - Issues: https://github.com/thegoodsoftwareco/driggsby/issues
59
55
 
60
56
  ## License
61
57
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "driggsby",
3
- "version": "0.1.2",
4
- "description": "Local Driggsby MCP broker and CLI",
3
+ "version": "0.1.4",
4
+ "description": "Local MCP broker and CLI for connecting AI clients to Driggsby",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
7
7
  "repository": {