Skip to content

Commit f9228b3

Browse files
committed
fix(web,plugin): simplify skill-only install to one line — npx skills add web3insight-ai/web3insight
The verbose -a claude-code -a universal -s web3insight -y --copy flags weren't buying anything because the repo only has a single skill at skills/web3insight/SKILL.md, so npx skills auto-detects the right target. Long command made the SKILL ONLY tab look more intimidating than the plugin tab, which is the opposite of intent.
1 parent 1caf89e commit f9228b3

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

apps/web/src/components/mcp-section.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ const PLUGIN_COMMAND = `/plugin marketplace add web3insight-ai/web3insight
2424
/plugin install web3insight@web3insight
2525
export WEB3INSIGHT_MCP_TOKEN="w3i_mcp_<your-token>"`
2626

27-
const SKILL_COMMAND = `npx skills add web3insight-ai/web3insight \\
28-
-a claude-code -a universal \\
29-
-s web3insight -y --copy`
27+
const SKILL_COMMAND = `npx skills add web3insight-ai/web3insight`
3028

3129
const MANUAL_SNIPPET = JSON.stringify(
3230
{

plugins/web3insight/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Want the plugin to walk a teammate through it? Run `/web3insight-setup`.
4040
For clients without MCP support, install just the SKILL.md so the assistant knows how to talk *about* Web3Insight (it will tell the user to hit the dashboard or REST API directly):
4141

4242
```bash
43-
npx skills add web3insight-ai/web3insight -s web3insight
43+
npx skills add web3insight-ai/web3insight
4444
```
4545

4646
### Option C — Manual MCP config

0 commit comments

Comments
 (0)