Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

project-manager-agent项目经理 Agent

Agent Skill

project-manager-agent 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,949

周安装

423

GitHub Stars

公开资料未说明

下载量

3,486
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:project-manager-agent(项目经理 Agent)
来源仓库:https://github.com/austindixson/project-manager-agent
安装命令:
openclaw skills install project-manager-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install project-manager-agent

简介

监视活动子代理、检测停顿、提供状态更新并通过 session_send 引导卡住的代理。

SKILL.md

name
project-manager-agent
displayName
Project Manager Agent
description
Monitors active sub-agents, detects stalls, provides status updates, and steers stuck agents via sessions_send.

Project Manager Agent

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.

Usage

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:

  1. 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
  1. 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 }).
  2. 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> ...
  1. 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

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.81%
按下载量换算2,887

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills