Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:14:25 +08:00
commit 0823637499
8 changed files with 801 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"name": "ai-studio-orchestrator",
"description": "Advanced AI task orchestration platform with agent coordination, performance monitoring, and intelligent workflow automation",
"version": "1.0.0",
"author": {
"name": "ClaudeForge Community",
"url": "https://github.com/claudeforge/marketplace"
},
"agents": [
"./agents/task-coordinator.md",
"./agents/performance-analyzer.md"
],
"commands": [
"./commands/orchestrate-task.md",
"./commands/monitor-performance.md",
"./commands/optimize-workflow.md"
],
"hooks": {
"PreToolUse": [
{
"matcher": ".*",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/task-logger.sh"
}
]
}
]
},
"mcp": {
"orchestrator-state": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/servers/orchestrator-server.js"
]
}
}
}