@euqns/nudge-mcp 0.16.0 → 1.0.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 +19 -16
- package/dist/codex-companion.js +452 -129
- package/dist/codex-companion.js.map +1 -1
- package/dist/codex-companion.test.js +27 -1
- package/dist/codex-companion.test.js.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,19 +66,22 @@ authenticated on the user's computer. It binds to loopback and opens Nudge with
|
|
|
66
66
|
a one-time pairing secret in the URL fragment:
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
# Sign in to
|
|
70
|
-
codex login
|
|
69
|
+
# Sign in to any or all supported CLIs first
|
|
70
|
+
codex login
|
|
71
|
+
claude auth login
|
|
72
|
+
cursor-agent login
|
|
71
73
|
|
|
72
74
|
# Run this from the repository the agent should inspect
|
|
73
|
-
npx -y @euqns/nudge-mcp@latest agent
|
|
74
|
-
# Providers: codex, claude, cursor
|
|
75
|
+
npx -y @euqns/nudge-mcp@latest agent
|
|
75
76
|
```
|
|
76
77
|
|
|
77
|
-
The companion
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
The companion checks Codex, Claude Code, and Cursor independently, starts when at
|
|
79
|
+
least one has a valid subscription login, and reports which CLIs are ready. One
|
|
80
|
+
pairing exposes every ready provider, so each chat can choose its own agent and
|
|
81
|
+
resume with that same agent later. `--provider codex|claude|cursor` remains an
|
|
82
|
+
optional initial preference. The companion does not accept or store provider API
|
|
83
|
+
keys. It keeps local filesystem access read-only and allows only the exact Nudge
|
|
84
|
+
origin that launched it. Authorized Nudge MCP tools can still update board data.
|
|
82
85
|
|
|
83
86
|
The Codex and Claude Code adapters supply their own Nudge MCP transport, so a
|
|
84
87
|
fresh computer does not need a manual `mcp_servers.nudge` entry in
|
|
@@ -88,13 +91,13 @@ Cursor reads MCP servers from its normal `.cursor/mcp.json` configuration, so
|
|
|
88
91
|
the Nudge MCP server must also be present there for board mutations.
|
|
89
92
|
|
|
90
93
|
For Codex, the sidecar reads the installed model catalog and subscription rate-limit
|
|
91
|
-
windows from the local Codex app server.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
94
|
+
windows from the local Codex app server. Claude Code exposes its subscription model
|
|
95
|
+
aliases and reasoning efforts, while Cursor reads the models available to the signed-in
|
|
96
|
+
account from `cursor-agent --list-models`. Users can change models for every provider;
|
|
97
|
+
Claude Code and Codex also expose reasoning effort. A model or effort change starts a
|
|
98
|
+
fresh chat; prior chats are kept in browser-local history and resume their persisted
|
|
99
|
+
local agent session when reopened. Codex additionally shows its exact rate-limit windows
|
|
100
|
+
and per-turn token usage.
|
|
98
101
|
|
|
99
102
|
When chat is opened from a board or canvas, Nudge sends the active board id,
|
|
100
103
|
title, source, view, canvas id, and lightweight counts with each prompt. The
|