mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
Complete manifest hierarchy for plugin discovery: - Root level: lists all 6 languages (python, go, rust, cpp, mojo, ts) - Language level: lists all categories per language - Category level: lists all plugins with metadata Structure enables programmatic plugin discovery and loading across the multi-language workflow plugin ecosystem. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
792 B
JSON
18 lines
792 B
JSON
{
|
|
"name": "@metabuilder/workflow-plugins",
|
|
"version": "1.0.0",
|
|
"description": "MetaBuilder Workflow Plugins - Multi-language plugin ecosystem",
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"keywords": ["workflow", "plugins", "multi-language"],
|
|
"languages": ["python", "go", "rust", "cpp", "mojo", "ts"],
|
|
"contents": {
|
|
"python": { "description": "Python workflow plugins", "path": "./python" },
|
|
"go": { "description": "Go workflow plugins", "path": "./go" },
|
|
"rust": { "description": "Rust workflow plugins", "path": "./rust" },
|
|
"cpp": { "description": "C++ header-only workflow plugins", "path": "./cpp" },
|
|
"mojo": { "description": "Mojo workflow plugins", "path": "./mojo" },
|
|
"ts": { "description": "TypeScript workflow plugins", "path": "./ts" }
|
|
}
|
|
}
|