@askthew/mcp-plugin 0.2.4 → 0.2.5
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 +2 -2
- package/dist/cli.js +1 -1
- package/dist/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ This package runs a small MCP server that lets Codex, Claude Code, Cursor, and o
|
|
|
9
9
|
- Installs an Ask The W MCP server entry into a supported local client.
|
|
10
10
|
- Preserves existing MCP servers and settings.
|
|
11
11
|
- Adds marked project instructions so future coding-agent sessions know when to send Ask The W updates.
|
|
12
|
-
- Sends a startup heartbeat so Ask The W can show
|
|
12
|
+
- Sends a startup heartbeat so Ask The W can show the plugin as installed.
|
|
13
13
|
- Exposes one primary MCP tool: `capture_session_signal`.
|
|
14
14
|
- Redacts obvious secrets from summaries, evidence excerpts, commands, and metadata before sending.
|
|
15
15
|
- Adds lightweight workspace metadata such as host type, repo name, app path, and server name.
|
|
@@ -140,7 +140,7 @@ Use compact summaries and short evidence excerpts. Do not send full transcripts.
|
|
|
140
140
|
|
|
141
141
|
- Empty `list_mcp_resources` or `list_mcp_resource_templates` results are normal. This connector is tool-driven.
|
|
142
142
|
- If Ask The W shows "Waiting for install", restart or reload your coding agent.
|
|
143
|
-
- If Ask The W shows "Installed",
|
|
143
|
+
- If Ask The W shows "Installed", approve the Ask The W setup popup if your coding agent shows one after reload. The installed behavior instructions handle future compact updates automatically.
|
|
144
144
|
- If a token fails, rotate it in Ask The W and rerun the installer.
|
|
145
145
|
|
|
146
146
|
## Development
|
package/dist/cli.js
CHANGED
|
@@ -128,7 +128,7 @@ async function main() {
|
|
|
128
128
|
console.log(`Install command: ${formatInstallCommand(options)}`);
|
|
129
129
|
if (result.wroteFile) {
|
|
130
130
|
console.log(heartbeatSent
|
|
131
|
-
? "Ask The W setup check sent. Refresh the app to confirm the plugin
|
|
131
|
+
? "Ask The W setup check sent. Refresh the app to confirm the plugin shows Installed."
|
|
132
132
|
: "Ask The W setup check could not be sent yet. Restart or reload your coding app, then refresh Ask The W.");
|
|
133
133
|
}
|
|
134
134
|
console.log(`Next step: ${result.nextStep}`);
|
package/dist/install.js
CHANGED
|
@@ -141,7 +141,7 @@ export function formatInstallCommand(input) {
|
|
|
141
141
|
}
|
|
142
142
|
export function verificationNextStep(hostType) {
|
|
143
143
|
const hostLabel = hostType === "claude_code" ? "Claude Code" : hostType === "cursor" ? "Cursor" : "Codex";
|
|
144
|
-
return `Refresh Ask The W to confirm the plugin
|
|
144
|
+
return `Refresh Ask The W to confirm the plugin shows Installed. Restart or reload ${hostLabel} if it is already open. If ${hostLabel} shows an Ask The W setup popup, approve it once. The installed project instructions tell the coding agent when to send updates automatically. list_mcp_resources/list_mcp_resource_templates may be empty for this tool-driven connector and are not failure signals.`;
|
|
145
145
|
}
|
|
146
146
|
export function installHostConfig(input) {
|
|
147
147
|
const settingsPath = resolveSettingsPath({
|