@shnitzel/plugscout 0.3.33 → 0.3.35
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 +4 -2
- package/config/providers.json +10 -0
- package/config/registries.json +15 -0
- package/data/catalog/items.json +32383 -14166
- package/data/catalog/mcps.json +30663 -13163
- package/data/catalog/skills.json +297 -297
- package/data/catalog/sync-state.json +22 -22
- package/dist/catalog/adapter.js +4 -0
- package/dist/catalog/adapters/agentskills-il-v1.js +180 -0
- package/dist/catalog/adapters/mcp-registry-v0.1.js +17 -0
- package/dist/catalog/remote-registry.js +7 -2
- package/dist/catalog/sync.js +1 -1
- package/dist/lib/validation/contracts.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ npm install
|
|
|
78
78
|
npm run setup
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
## Your first scan
|
|
81
|
+
## Your first scan
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
plugscout setup # install deps, write config, sync catalogs
|
|
@@ -97,7 +97,7 @@ skill:secure-prompting skill openai low(0) fals
|
|
|
97
97
|
|
|
98
98
|
Review any result with `plugscout show --id <id>`, then install with `plugscout install --id <id> --yes`.
|
|
99
99
|
|
|
100
|
-
## Quick Start
|
|
100
|
+
## Quick Start
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
103
|
npm install -g @shnitzel/plugscout
|
|
@@ -197,6 +197,8 @@ plugscout sync # skip registries synced within the last 6 hours
|
|
|
197
197
|
plugscout sync --force # re-fetch everything regardless of cache age
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
+
**First sync timing:** The MCP registry (`registry.modelcontextprotocol.io`) contains 10,000+ servers and is fetched in paginated batches. The first full sync takes 5–8 minutes. Subsequent syncs are cached for 6 hours and complete in seconds. Progress is printed per page so you can see it working.
|
|
201
|
+
|
|
200
202
|
Cursor and Gemini extension lists are served from `raw.githubusercontent.com` and auto-update on each sync.
|
|
201
203
|
|
|
202
204
|
## Core Commands
|
package/config/providers.json
CHANGED
package/config/registries.json
CHANGED
|
@@ -3363,6 +3363,21 @@
|
|
|
3363
3363
|
"official": true,
|
|
3364
3364
|
"licenseHint": "community"
|
|
3365
3365
|
}
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
"id": "agentskills-il",
|
|
3369
|
+
"kind": "skill",
|
|
3370
|
+
"adapter": "agentskills-il-v1",
|
|
3371
|
+
"sourceType": "vendor-feed",
|
|
3372
|
+
"officialOnly": false,
|
|
3373
|
+
"entries": [],
|
|
3374
|
+
"remote": {
|
|
3375
|
+
"url": "https://raw.githubusercontent.com/amitrintzler/plugscout/main/assets/registries/agentskills-il.json",
|
|
3376
|
+
"format": "json-array",
|
|
3377
|
+
"timeoutMs": 15000,
|
|
3378
|
+
"fallbackToLocal": true,
|
|
3379
|
+
"provider": "skills-il"
|
|
3380
|
+
}
|
|
3366
3381
|
}
|
|
3367
3382
|
]
|
|
3368
3383
|
}
|