From 845f3e41c8d9809e1cd5cd808a5602d6305e4e4c Mon Sep 17 00:00:00 2001 From: Aadil Abdul Ghani Date: Wed, 29 Jul 2026 18:56:03 +0200 Subject: [PATCH] Add Pushary to the external plugins marketplace Pushary is a PreToolUse hook plus MCP server. The hook gates risky terminal commands on an approval sent to the user's phone before the command runs, falling back to VS Code's own approval prompt whenever it cannot reach a decision. The MCP tools let the agent ask a question or send a notification and get an answer back. The plugin is hosted at Pushary/vscode-plugin and uses the .claude-plugin layout, so it is referenced here by source rather than vendored. --- .github/plugin/marketplace.json | 25 +++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 27 insertions(+) diff --git a/.github/plugin/marketplace.json b/.github/plugin/marketplace.json index b251e9f..007a27d 100644 --- a/.github/plugin/marketplace.json +++ b/.github/plugin/marketplace.json @@ -425,6 +425,31 @@ "flowagent" ], "license": "MIT" + }, + { + "name": "pushary", + "source": { + "source": "github", + "repo": "Pushary/vscode-plugin" + }, + "description": "PreToolUse permission gate that routes risky terminal commands to a phone approval before they run, plus MCP tools for the agent to ask questions and send notifications. Requires a Pushary account.", + "version": "0.1.0", + "author": { + "name": "Pushary", + "url": "https://pushary.com" + }, + "homepage": "https://pushary.com", + "repository": "https://github.com/Pushary/vscode-plugin", + "keywords": [ + "human-in-the-loop", + "approvals", + "permissions", + "notifications", + "hooks", + "pretooluse", + "mcp" + ], + "license": "MIT" } ] } diff --git a/README.md b/README.md index fce8d6c..4a1fd60 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ This marketplace also references plugins hosted in other repositories: - **[Power Platform Skills](https://github.com/microsoft/power-platform-skills)** — `power-pages`, `model-apps`, `mcp-apps`, `canvas-apps`, `code-apps-preview`, `mobile-app`, `power-automate`. Plugins for Power Platform development (Power Pages sites, model-driven and canvas apps, code apps, MCP App widgets, mobile apps, and Power Automate cloud flows). +- **[Pushary](https://github.com/Pushary/vscode-plugin)** — `pushary`. A `PreToolUse` hook that gates risky terminal commands on a phone approval before they run, plus MCP tools the agent can call to ask a question or send a notification. Requires a Pushary account. + ## 🤝 Contributing We'd love your contributions! Please read our [Contributing Guide](CONTRIBUTING.md) for details on how to submit pull requests.