@askthew/mcp-plugin 0.2.6 → 0.2.7
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 +1 -1
- package/dist/install.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -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", keep working normally. The installed behavior instructions handle future compact updates automatically. If your coding agent asks for Ask The W tool permission during a future update, choose "Always allow" if available.
|
|
144
144
|
- If a token fails, rotate it in Ask The W and rerun the installer.
|
|
145
145
|
|
|
146
146
|
## Development
|
package/dist/install.js
CHANGED
|
@@ -142,7 +142,7 @@ export function formatInstallCommand(input) {
|
|
|
142
142
|
}
|
|
143
143
|
export function verificationNextStep(hostType) {
|
|
144
144
|
const hostLabel = hostType === "claude_code" ? "Claude Code" : hostType === "cursor" ? "Cursor" : "Codex";
|
|
145
|
-
return `Refresh Ask The W to confirm the plugin shows Installed. Restart or reload ${hostLabel} if it is already open.
|
|
145
|
+
return `Refresh Ask The W to confirm the plugin shows Installed. Restart or reload ${hostLabel} if it is already open. After that, keep working normally; the installed project instructions tell the coding agent when to send updates automatically. If ${hostLabel} asks for Ask The W tool permission during a future update, choose Always allow if available. list_mcp_resources/list_mcp_resource_templates may be empty for this tool-driven connector and are not failure signals.`;
|
|
146
146
|
}
|
|
147
147
|
export function installHostConfig(input) {
|
|
148
148
|
const settingsPath = resolveSettingsPath({
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askthew/mcp-plugin",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Ask The W MCP connector for capturing compact coding-agent session signals.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"bin": {
|
|
10
|
-
"askthew-mcp": "
|
|
10
|
+
"askthew-mcp": "dist/cli.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"README.md",
|