{
  "schemaVersion": "1.0",
  "item": {
    "slug": "project-orchestrator",
    "name": "Project Orchestrator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/reversTeam/project-orchestrator",
    "canonicalUrl": "https://clawhub.ai/reversTeam/project-orchestrator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/project-orchestrator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-orchestrator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AGENTS.md",
      "CLAUDE.md",
      "CONTRIBUTING.md",
      "Cargo.toml",
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/project-orchestrator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/project-orchestrator",
    "agentPageUrl": "https://openagent3.xyz/skills/project-orchestrator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-orchestrator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-orchestrator/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Project Orchestrator",
        "body": "Coordinate multiple AI coding agents with a shared knowledge base."
      },
      {
        "title": "Features",
        "body": "Multi-Project Support: Manage multiple codebases with isolated data\nNeo4j Knowledge Graph: Code structure, relationships, plans, decisions\nMeilisearch: Fast semantic search across code and decisions\nTree-sitter: Precise code parsing for 12 languages\nPlan Management: Structured tasks with dependencies and constraints\nMCP Integration: 62 tools for Claude Code, OpenAI Agents, and Cursor"
      },
      {
        "title": "Documentation",
        "body": "Installation Guide\nGetting Started Tutorial\nAPI Reference\nMCP Tools Reference\nIntegration Guides: Claude Code | OpenAI | Cursor"
      },
      {
        "title": "1. Start the backends",
        "body": "cd {baseDir}\ndocker compose up -d neo4j meilisearch"
      },
      {
        "title": "2. Build and run the orchestrator",
        "body": "cargo build --release\n./target/release/orchestrator serve\n\nOr with Docker:\n\ndocker compose up -d"
      },
      {
        "title": "3. Sync your codebase",
        "body": "# Via CLI\n./target/release/orch sync --path /path/to/project\n\n# Via API\ncurl -X POST http://localhost:8080/api/sync \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\": \"/path/to/project\"}'"
      },
      {
        "title": "Create a project",
        "body": "# Create a new project\ncurl -X POST http://localhost:8080/api/projects \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"Embryon\",\n    \"root_path\": \"/Users/triviere/projects/embryon\",\n    \"description\": \"Neural network composition framework\"\n  }'\n\n# List all projects\ncurl http://localhost:8080/api/projects\n\n# Sync a project\ncurl -X POST http://localhost:8080/api/projects/embryon/sync\n\n# Search code within a project\ncurl \"http://localhost:8080/api/projects/embryon/code/search?q=tensor&limit=10\""
      },
      {
        "title": "Create a plan",
        "body": "orch plan create \\\n  --title \"Implement GPU Backend\" \\\n  --desc \"Add Metal GPU support for neural network operations\" \\\n  --priority 10"
      },
      {
        "title": "Add tasks to the plan",
        "body": "orch task add \\\n  --plan <plan-id> \\\n  --desc \"Implement MatMul Metal shader\"\n\norch task add \\\n  --plan <plan-id> \\\n  --desc \"Add attention layer GPU support\" \\\n  --depends <task-1-id>"
      },
      {
        "title": "Get context for an agent",
        "body": "# JSON context\norch context --plan <plan-id> --task <task-id>\n\n# Ready-to-use prompt\norch context --plan <plan-id> --task <task-id> --prompt"
      },
      {
        "title": "Record decisions",
        "body": "orch decision add \\\n  --task <task-id> \\\n  --desc \"Use shared memory for tile-based MatMul\" \\\n  --rationale \"Better cache locality, 2x performance improvement\""
      },
      {
        "title": "Search past decisions",
        "body": "orch decision search \"memory management GPU\""
      },
      {
        "title": "Projects (Multi-Project Support)",
        "body": "MethodPathDescriptionGET/api/projectsList all projectsPOST/api/projectsCreate a new projectGET/api/projects/{slug}Get project by slugDELETE/api/projects/{slug}Delete a projectPOST/api/projects/{slug}/syncSync project's codebaseGET/api/projects/{slug}/plansList project's plansGET/api/projects/{slug}/code/searchSearch code in project"
      },
      {
        "title": "Plans & Tasks",
        "body": "MethodPathDescriptionGET/healthHealth checkGET/api/plansList active plansPOST/api/plansCreate planGET/api/plans/{id}Get plan detailsPATCH/api/plans/{id}Update plan statusGET/api/plans/{id}/next-taskGet next available taskPOST/api/plans/{id}/tasksAdd task to planGET/api/tasks/{id}Get task detailsPATCH/api/tasks/{id}Update taskGET/api/plans/{plan}/tasks/{task}/contextGet task contextGET/api/plans/{plan}/tasks/{task}/promptGet generated promptPOST/api/tasks/{id}/decisionsAdd decisionGET/api/decisions/search?q=...Search decisions"
      },
      {
        "title": "Sync & Watch",
        "body": "MethodPathDescriptionPOST/api/syncSync directory to knowledge baseGET/api/watchGet file watcher statusPOST/api/watchStart watching a directoryDELETE/api/watchStop file watcherPOST/api/wakeAgent completion webhook"
      },
      {
        "title": "Code Exploration (Graph + Search)",
        "body": "MethodPathDescriptionGET/api/code/search?q=...Semantic code searchGET/api/code/symbols/{path}Get symbols in a fileGET/api/code/references?symbol=...Find all references to a symbolGET/api/code/dependencies/{path}Get file import/dependent graphGET/api/code/callgraph?function=...Get function call graphGET/api/code/impact?target=...Analyze change impactGET/api/code/architectureGet codebase overviewPOST/api/code/similarFind similar code snippetsGET/api/code/trait-impls?trait_name=...Find types implementing a traitGET/api/code/type-traits?type_name=...Find traits implemented by a typeGET/api/code/impl-blocks?type_name=...Get all impl blocks for a type"
      },
      {
        "title": "Auto-Sync with File Watcher",
        "body": "Keep the knowledge base updated automatically while coding:\n\n# Start watching a project directory\ncurl -X POST http://localhost:8080/api/watch \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\": \"/path/to/project\"}'\n\n# Check watcher status\ncurl http://localhost:8080/api/watch\n\n# Stop watching\ncurl -X DELETE http://localhost:8080/api/watch\n\nThe watcher automatically syncs .rs, .ts, .tsx, .js, .jsx, .py, .go files when modified.\nIt ignores node_modules/, target/, .git/, __pycache__/, dist/, build/."
      },
      {
        "title": "Code Exploration",
        "body": "Query the code graph instead of reading files directly:\n\n# Semantic search across code\ncurl \"http://localhost:8080/api/code/search?q=error+handling&language=rust&limit=10\"\n\n# Get symbols in a file (functions, structs, etc.)\ncurl \"http://localhost:8080/api/code/symbols/src%2Flib.rs\"\n\n# Find all references to a symbol\ncurl \"http://localhost:8080/api/code/references?symbol=AppState&limit=20\"\n\n# Get file dependencies (imports and dependents)\ncurl \"http://localhost:8080/api/code/dependencies/src%2Fneo4j%2Fclient.rs\"\n\n# Get call graph for a function\ncurl \"http://localhost:8080/api/code/callgraph?function=handle_request&depth=2&direction=both\"\n\n# Analyze impact before changing a file\ncurl \"http://localhost:8080/api/code/impact?target=src/lib.rs&target_type=file\"\n\n# Get architecture overview\ncurl \"http://localhost:8080/api/code/architecture\"\n\n# Find similar code patterns\ncurl -X POST http://localhost:8080/api/code/similar \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"snippet\": \"async fn handle_error\", \"limit\": 5}'\n\n# Find all types implementing a trait\ncurl \"http://localhost:8080/api/code/trait-impls?trait_name=Module\"\n\n# Find all traits implemented by a type\ncurl \"http://localhost:8080/api/code/type-traits?type_name=Orchestrator\"\n\n# Get all impl blocks for a type\ncurl \"http://localhost:8080/api/code/impl-blocks?type_name=Neo4jClient\""
      },
      {
        "title": "Getting context before starting work",
        "body": "# Fetch your task context\ncurl http://localhost:8080/api/plans/$PLAN_ID/tasks/$TASK_ID/prompt"
      },
      {
        "title": "Recording decisions while working",
        "body": "curl -X POST http://localhost:8080/api/tasks/$TASK_ID/decisions \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Chose X over Y\",\n    \"rationale\": \"Because...\"\n  }'"
      },
      {
        "title": "Notifying completion",
        "body": "curl -X POST http://localhost:8080/api/wake \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"task_id\": \"'$TASK_ID'\",\n    \"success\": true,\n    \"summary\": \"Implemented feature X\",\n    \"files_modified\": [\"src/foo.rs\", \"src/bar.rs\"]\n  }'"
      },
      {
        "title": "Configuration",
        "body": "Environment variables:\n\nVariableDefaultDescriptionNEO4J_URIbolt://localhost:7687Neo4j connection URINEO4J_USERneo4jNeo4j usernameNEO4J_PASSWORDorchestrator123Neo4j passwordMEILISEARCH_URLhttp://localhost:7700Meilisearch URLMEILISEARCH_KEYorchestrator-meili-key-change-meMeilisearch API keyWORKSPACE_PATH.Default workspace pathSERVER_PORT8080Server portRUST_LOGinfoLog level"
      },
      {
        "title": "Architecture",
        "body": "┌─────────────────────────────────────────────────────────────┐\n│                    ORCHESTRATOR API                          │\n│                    (localhost:8080)                          │\n└─────────────────────────────┬───────────────────────────────┘\n                              │\n        ┌─────────────────────┼─────────────────────┐\n        ▼                     ▼                     ▼\n┌───────────────┐     ┌───────────────┐     ┌───────────────┐\n│    NEO4J      │     │  MEILISEARCH  │     │  TREE-SITTER  │\n│   (7687)      │     │    (7700)     │     │   (in-proc)   │\n│               │     │               │     │               │\n│ • Code graph  │     │ • Code search │     │ • AST parsing │\n│ • Plans       │     │ • Decisions   │     │ • Symbols     │\n│ • Decisions   │     │ • Logs        │     │ • Complexity  │\n│ • Relations   │     │               │     │               │\n└───────────────┘     └───────────────┘     └───────────────┘"
      },
      {
        "title": "Development",
        "body": "# Run tests\ncargo test\n\n# Run with debug logging\nRUST_LOG=debug cargo run -- serve\n\n# Format code\ncargo fmt\n\n# Lint\ncargo clippy"
      }
    ],
    "body": "Project Orchestrator\n\nCoordinate multiple AI coding agents with a shared knowledge base.\n\nFeatures\nMulti-Project Support: Manage multiple codebases with isolated data\nNeo4j Knowledge Graph: Code structure, relationships, plans, decisions\nMeilisearch: Fast semantic search across code and decisions\nTree-sitter: Precise code parsing for 12 languages\nPlan Management: Structured tasks with dependencies and constraints\nMCP Integration: 62 tools for Claude Code, OpenAI Agents, and Cursor\nDocumentation\nInstallation Guide\nGetting Started Tutorial\nAPI Reference\nMCP Tools Reference\nIntegration Guides: Claude Code | OpenAI | Cursor\nQuick Start\n1. Start the backends\ncd {baseDir}\ndocker compose up -d neo4j meilisearch\n\n2. Build and run the orchestrator\ncargo build --release\n./target/release/orchestrator serve\n\n\nOr with Docker:\n\ndocker compose up -d\n\n3. Sync your codebase\n# Via CLI\n./target/release/orch sync --path /path/to/project\n\n# Via API\ncurl -X POST http://localhost:8080/api/sync \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\": \"/path/to/project\"}'\n\nUsage\nCreate a project\n# Create a new project\ncurl -X POST http://localhost:8080/api/projects \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"Embryon\",\n    \"root_path\": \"/Users/triviere/projects/embryon\",\n    \"description\": \"Neural network composition framework\"\n  }'\n\n# List all projects\ncurl http://localhost:8080/api/projects\n\n# Sync a project\ncurl -X POST http://localhost:8080/api/projects/embryon/sync\n\n# Search code within a project\ncurl \"http://localhost:8080/api/projects/embryon/code/search?q=tensor&limit=10\"\n\nCreate a plan\norch plan create \\\n  --title \"Implement GPU Backend\" \\\n  --desc \"Add Metal GPU support for neural network operations\" \\\n  --priority 10\n\nAdd tasks to the plan\norch task add \\\n  --plan <plan-id> \\\n  --desc \"Implement MatMul Metal shader\"\n\norch task add \\\n  --plan <plan-id> \\\n  --desc \"Add attention layer GPU support\" \\\n  --depends <task-1-id>\n\nGet context for an agent\n# JSON context\norch context --plan <plan-id> --task <task-id>\n\n# Ready-to-use prompt\norch context --plan <plan-id> --task <task-id> --prompt\n\nRecord decisions\norch decision add \\\n  --task <task-id> \\\n  --desc \"Use shared memory for tile-based MatMul\" \\\n  --rationale \"Better cache locality, 2x performance improvement\"\n\nSearch past decisions\norch decision search \"memory management GPU\"\n\nAPI Endpoints\nProjects (Multi-Project Support)\nMethod\tPath\tDescription\nGET\t/api/projects\tList all projects\nPOST\t/api/projects\tCreate a new project\nGET\t/api/projects/{slug}\tGet project by slug\nDELETE\t/api/projects/{slug}\tDelete a project\nPOST\t/api/projects/{slug}/sync\tSync project's codebase\nGET\t/api/projects/{slug}/plans\tList project's plans\nGET\t/api/projects/{slug}/code/search\tSearch code in project\nPlans & Tasks\nMethod\tPath\tDescription\nGET\t/health\tHealth check\nGET\t/api/plans\tList active plans\nPOST\t/api/plans\tCreate plan\nGET\t/api/plans/{id}\tGet plan details\nPATCH\t/api/plans/{id}\tUpdate plan status\nGET\t/api/plans/{id}/next-task\tGet next available task\nPOST\t/api/plans/{id}/tasks\tAdd task to plan\nGET\t/api/tasks/{id}\tGet task details\nPATCH\t/api/tasks/{id}\tUpdate task\nGET\t/api/plans/{plan}/tasks/{task}/context\tGet task context\nGET\t/api/plans/{plan}/tasks/{task}/prompt\tGet generated prompt\nPOST\t/api/tasks/{id}/decisions\tAdd decision\nGET\t/api/decisions/search?q=...\tSearch decisions\nSync & Watch\nMethod\tPath\tDescription\nPOST\t/api/sync\tSync directory to knowledge base\nGET\t/api/watch\tGet file watcher status\nPOST\t/api/watch\tStart watching a directory\nDELETE\t/api/watch\tStop file watcher\nPOST\t/api/wake\tAgent completion webhook\nCode Exploration (Graph + Search)\nMethod\tPath\tDescription\nGET\t/api/code/search?q=...\tSemantic code search\nGET\t/api/code/symbols/{path}\tGet symbols in a file\nGET\t/api/code/references?symbol=...\tFind all references to a symbol\nGET\t/api/code/dependencies/{path}\tGet file import/dependent graph\nGET\t/api/code/callgraph?function=...\tGet function call graph\nGET\t/api/code/impact?target=...\tAnalyze change impact\nGET\t/api/code/architecture\tGet codebase overview\nPOST\t/api/code/similar\tFind similar code snippets\nGET\t/api/code/trait-impls?trait_name=...\tFind types implementing a trait\nGET\t/api/code/type-traits?type_name=...\tFind traits implemented by a type\nGET\t/api/code/impl-blocks?type_name=...\tGet all impl blocks for a type\nAuto-Sync with File Watcher\n\nKeep the knowledge base updated automatically while coding:\n\n# Start watching a project directory\ncurl -X POST http://localhost:8080/api/watch \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\": \"/path/to/project\"}'\n\n# Check watcher status\ncurl http://localhost:8080/api/watch\n\n# Stop watching\ncurl -X DELETE http://localhost:8080/api/watch\n\n\nThe watcher automatically syncs .rs, .ts, .tsx, .js, .jsx, .py, .go files when modified. It ignores node_modules/, target/, .git/, __pycache__/, dist/, build/.\n\nCode Exploration\n\nQuery the code graph instead of reading files directly:\n\n# Semantic search across code\ncurl \"http://localhost:8080/api/code/search?q=error+handling&language=rust&limit=10\"\n\n# Get symbols in a file (functions, structs, etc.)\ncurl \"http://localhost:8080/api/code/symbols/src%2Flib.rs\"\n\n# Find all references to a symbol\ncurl \"http://localhost:8080/api/code/references?symbol=AppState&limit=20\"\n\n# Get file dependencies (imports and dependents)\ncurl \"http://localhost:8080/api/code/dependencies/src%2Fneo4j%2Fclient.rs\"\n\n# Get call graph for a function\ncurl \"http://localhost:8080/api/code/callgraph?function=handle_request&depth=2&direction=both\"\n\n# Analyze impact before changing a file\ncurl \"http://localhost:8080/api/code/impact?target=src/lib.rs&target_type=file\"\n\n# Get architecture overview\ncurl \"http://localhost:8080/api/code/architecture\"\n\n# Find similar code patterns\ncurl -X POST http://localhost:8080/api/code/similar \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"snippet\": \"async fn handle_error\", \"limit\": 5}'\n\n# Find all types implementing a trait\ncurl \"http://localhost:8080/api/code/trait-impls?trait_name=Module\"\n\n# Find all traits implemented by a type\ncurl \"http://localhost:8080/api/code/type-traits?type_name=Orchestrator\"\n\n# Get all impl blocks for a type\ncurl \"http://localhost:8080/api/code/impl-blocks?type_name=Neo4jClient\"\n\nFor Agents\nGetting context before starting work\n# Fetch your task context\ncurl http://localhost:8080/api/plans/$PLAN_ID/tasks/$TASK_ID/prompt\n\nRecording decisions while working\ncurl -X POST http://localhost:8080/api/tasks/$TASK_ID/decisions \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"description\": \"Chose X over Y\",\n    \"rationale\": \"Because...\"\n  }'\n\nNotifying completion\ncurl -X POST http://localhost:8080/api/wake \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"task_id\": \"'$TASK_ID'\",\n    \"success\": true,\n    \"summary\": \"Implemented feature X\",\n    \"files_modified\": [\"src/foo.rs\", \"src/bar.rs\"]\n  }'\n\nConfiguration\n\nEnvironment variables:\n\nVariable\tDefault\tDescription\nNEO4J_URI\tbolt://localhost:7687\tNeo4j connection URI\nNEO4J_USER\tneo4j\tNeo4j username\nNEO4J_PASSWORD\torchestrator123\tNeo4j password\nMEILISEARCH_URL\thttp://localhost:7700\tMeilisearch URL\nMEILISEARCH_KEY\torchestrator-meili-key-change-me\tMeilisearch API key\nWORKSPACE_PATH\t.\tDefault workspace path\nSERVER_PORT\t8080\tServer port\nRUST_LOG\tinfo\tLog level\nArchitecture\n┌─────────────────────────────────────────────────────────────┐\n│                    ORCHESTRATOR API                          │\n│                    (localhost:8080)                          │\n└─────────────────────────────┬───────────────────────────────┘\n                              │\n        ┌─────────────────────┼─────────────────────┐\n        ▼                     ▼                     ▼\n┌───────────────┐     ┌───────────────┐     ┌───────────────┐\n│    NEO4J      │     │  MEILISEARCH  │     │  TREE-SITTER  │\n│   (7687)      │     │    (7700)     │     │   (in-proc)   │\n│               │     │               │     │               │\n│ • Code graph  │     │ • Code search │     │ • AST parsing │\n│ • Plans       │     │ • Decisions   │     │ • Symbols     │\n│ • Decisions   │     │ • Logs        │     │ • Complexity  │\n│ • Relations   │     │               │     │               │\n└───────────────┘     └───────────────┘     └───────────────┘\n\nDevelopment\n# Run tests\ncargo test\n\n# Run with debug logging\nRUST_LOG=debug cargo run -- serve\n\n# Format code\ncargo fmt\n\n# Lint\ncargo clippy"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/reversTeam/project-orchestrator",
    "publisherUrl": "https://clawhub.ai/reversTeam/project-orchestrator",
    "owner": "reversTeam",
    "version": "0.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/project-orchestrator",
    "downloadUrl": "https://openagent3.xyz/downloads/project-orchestrator",
    "agentUrl": "https://openagent3.xyz/skills/project-orchestrator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-orchestrator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-orchestrator/agent.md"
  }
}