Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions skill.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "webmcpify",
"version": "0.3.0",
"description": "Make any web app agent-ready, verifiably — an agent skill that integrates WebMCP end to end: inventory, integrate, verify in a real browser, heal.",
"license": "MIT",
"author": {
"name": "Jonas Tüchler",
"github": "TueJon",
"url": "https://jonastuechler.at"
},
"repository": "https://github.com/TueJon/webmcpify",
"homepage": "https://github.com/TueJon/webmcpify",
"keywords": [
"webmcp",
"ai-agents",
"browser-agents",
"claude-code",
"agent-skills",
"document.modelContext"
],
"categories": ["web-development", "agent-architecture"],
"skills": [
{
"id": "webmcpify",
"path": "skills/webmcpify/SKILL.md",
"description": "End-to-end WebMCP integration pipeline: propose a tool manifest, integrate, verify every tool in a real browser, heal failures — zero unrelated changes."
}
],
"agents": ["claude-code", "codex", "cursor", "opencode", "copilot", "gemini-cli"],
"install": {
"command": "npx skills add TueJon/webmcpify"
}
}
3 changes: 2 additions & 1 deletion tests/versions.test.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Distribution-manifest version equality — all five manifests must parse and
* Distribution-manifest version equality — all six manifests must parse and
* carry the same version as package.json.
*/
import { test } from 'node:test';
Expand All @@ -17,6 +17,7 @@ const versions = [
['.claude-plugin/marketplace.json', read('.claude-plugin/marketplace.json').plugins?.[0]?.version],
['.cursor-plugin/plugin.json', read('.cursor-plugin/plugin.json').version],
['gemini-extension.json', read('gemini-extension.json').version],
['skill.json', read('skill.json').version],
];

test('every distribution manifest defines a version', () => {
Expand Down
Loading