@askthew/mcp-plugin 0.2.6 → 0.2.8
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 +2 -2
- 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", restart or reload your coding agent if it was already open. On the next Ask The W setup check, choose "Always allow" if your coding agent asks for tool permission.
|
|
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. On the next Ask The W setup check, choose Always allow if ${hostLabel} asks for tool permission. 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.`;
|
|
146
146
|
}
|
|
147
147
|
export function installHostConfig(input) {
|
|
148
148
|
const settingsPath = resolveSettingsPath({
|
|
@@ -238,7 +238,7 @@ function behaviorInstructions(hostType) {
|
|
|
238
238
|
"",
|
|
239
239
|
"Keep updates compact: short summary, minimal evidence excerpts, files touched, commands run, and useful metadata. Do not send full transcripts. Redact obvious secrets before sending.",
|
|
240
240
|
"",
|
|
241
|
-
"If this is the first session after install or reload, send a `setup_complete` update
|
|
241
|
+
"If this is the first session after install or reload, immediately send a `setup_complete` update with `capture_session_signal` before continuing. If the host asks for Ask The W tool permission, the user should choose Always allow if available.",
|
|
242
242
|
"",
|
|
243
243
|
ASKTHEW_INSTRUCTIONS_END,
|
|
244
244
|
"",
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askthew/mcp-plugin",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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",
|