# Send Project Manager Agent to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "project-manager-agent",
    "name": "Project Manager Agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/RuneweaverStudios/project-manager-agent",
    "canonicalUrl": "https://clawhub.ai/RuneweaverStudios/project-manager-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/project-manager-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-manager-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "config.json",
      "scripts/project_manager.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "project-manager-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T06:33:24.554Z",
      "expiresAt": "2026-05-10T06:33:24.554Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-manager-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-manager-agent",
        "contentDisposition": "attachment; filename=\"project-manager-agent-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "project-manager-agent"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/project-manager-agent"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/project-manager-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/project-manager-agent",
    "agentUrl": "https://openagent3.xyz/skills/project-manager-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-manager-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-manager-agent/agent.md"
  }
}
```
## Documentation

### Description

Monitors active sub-agents, detects stalls, provides status updates, and steers stuck agents via sessions_send.

### Project Manager Agent

This skill provides oversight for your OpenClaw sub-agents. It proactively checks the status of running sub-agents, identifies potential stalls or failures, and can steer stalled sub-agents by sending a continue message via the sessions_send tool.

### Running the monitor

python3 <skill-dir>/scripts/project_manager.py

### Options

--staleness_threshold_minutes <int>: Minutes after which a sub-agent is considered stalled (default from config or 10).
--check_all_sessions: Check all sessions, not just subagents of the current main session.
--json: Print human summary then a JSON line with stalledSessionKeys, steerMessage, and summary for agent steering.
--no_cooldown: Output all stalled keys (ignore 15-minute cooldown).
--record-steered KEY [KEY ...]: Record these session keys as just steered (for cooldown). Run after calling sessions_send.

### Example (Status check, human-only)

python3 /Users/ghost/.openclaw/workspace/skills/project-manager-agent/scripts/project_manager.py --staleness_threshold_minutes 15

### Example (Agent run with steering)

python3 /Users/ghost/.openclaw/workspace/skills/project-manager-agent/scripts/project_manager.py --json --staleness_threshold_minutes 10

Then parse the last line (JSON), call sessions_send for each key in stalledSessionKeys, and optionally run --record-steered <keys>.

### Features

Sub-agent Monitoring: Lists all active sub-agents (file-based; no gateway API in the script).
Stall Detection: Flags sub-agents that haven't updated their status within a configurable time period.
Failure Identification: Reports on sub-agents that have aborted their last run.
Status Reports: Human-readable summaries and optional JSON with stalledSessionKeys for steering.
Automated Steering: When you run the skill with --json, parse the output and call sessions_send for each stalled session (see Agent instructions below).

### Agent instructions (mandatory when running this skill)

When the user or a cron asks you to run the project-manager-agent skill:

Run the script with --json (and existing args as needed):
python3 /Users/ghost/.openclaw/workspace/skills/project-manager-agent/scripts/project_manager.py --json --staleness_threshold_minutes 10


Parse the script stdout: The last line is a single JSON object with stalledSessionKeys, steerMessage, and summary. Parse it (e.g. take the last line that starts with { and ends with }).
If stalledSessionKeys is non-empty:

For each session key in stalledSessionKeys (cap at 5 per run to avoid spam), call sessions_send(sessionKey, steerMessage from JSON or "Please continue working on your task.", 0) (fire-and-forget; timeoutSeconds=0).
Optionally run the script again to record cooldown so the same session is not steered again for 15 minutes:
python3 /Users/ghost/.openclaw/workspace/skills/project-manager-agent/scripts/project_manager.py --record-steered <key1> <key2> ...




Reply to the user/cron with the status summary (the human-readable part of the script output) and, if you steered any, add: "Steered N stalled subagent(s)."

You have access to sessions_list and sessions_send; the script only produces the list of session keys to steer. Steering is done by you in the same turn via the sessions_send tool.

### Config (optional)

See config.json for: staleness_threshold_minutes, steer_cooldown_minutes, steer_message, max_steer_per_run.

### Integration as a Cron Job

This skill is ideal for a cron job, running periodically (e.g., every 5 minutes). The agent runs the script with --json, steers stalled subagents via sessions_send, and announces the status.

Example Cron Job Payload:

{
  "payload": {
    "kind": "agentTurn",
    "message": "Run project-manager-agent skill and report status of all sub-agents.",
    "model": "openrouter/google/gemini-2.5-flash",
    "thinking": "low",
    "timeoutSeconds": 60
  },
  "schedule": {
    "kind": "every",
    "everyMs": 300000
  },
  "delivery": {
    "mode": "announce"
  },
  "sessionTarget": "isolated",
  "name": "Project Manager (Sub-agent Monitor)"
}

version: 0.2.0
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RuneweaverStudios
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T06:33:24.554Z
- Expires at: 2026-05-10T06:33:24.554Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/project-manager-agent)
- [Send to Agent page](https://openagent3.xyz/skills/project-manager-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/project-manager-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/project-manager-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/project-manager-agent)