Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

pa-statusPA 状态

Agent Skill

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

总安装

3,575

周安装

152

GitHub Stars

公开资料未说明

下载量

1,252
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pa-status

简介

PA 网络健康仪表板,监控活跃状态、计费与日历连接情况。

  • 适用于管理员全局查看代理运行状况与资源消耗。
  • 可生成运维报告与异常告警摘要。pa-status 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 数据刷新存在分钟级延迟,非实时监控系统。
  • 高级功能需订阅企业版方可解锁。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
pa-status
description
PA network health dashboard. Use when: checking if all PAs in the network are active, checking billing status, verifying calendar connections, or generating a network status report. Reads from data/pa-directory.json.

PA Status Skill

Minimum Model

Any model. Status checks are data-driven and rule-based.


When to Run

  • Daily at 09:00: Full network report to admin.
  • Immediately on billing error: Send a partial report for the affected PA.
  • On demand: If admin asks "what's the status?" → generate the report now.

Status Checks

For each PA in data/pa-directory.json, check:

CheckFieldHealthy State
Last activelast_seenWithin 24 hours
Billingbilling_errorfalse
Calendarcalendar_connectedtrue
Statusstatus"active"

Automated Report Script

#!/usr/bin/env python3
import json
import datetime

# Load PA directory
try:
    with open('data/pa-directory.json') as f:
        d = json.load(f)
except FileNotFoundError:
    print("ERROR: data/pa-directory.json not found")
    exit(1)

today = datetime.date.today().isoformat()
online = []
issues = []
offline = []

for pa in d.get('pas', []):
    name = pa['name']
    owner = pa['owner']
    status = pa.get('status', 'unknown')
    model = pa.get('model', 'unknown')

    # Format calendar and billing indicators
    calendar = "✅" if pa.get('calendar_connected') else "❌"
    billing_ok = not pa.get('billing_error', False)
    billing = "✅" if billing_ok else "⚠️ billing error"

    # Classify each PA into online / issues / offline
    if status == 'active' and billing_ok:
        online.append(f"• {name} ({owner}) — {model}, cal {calendar}")
    elif status == 'inactive':
        offline.append(f"• {name} ({owner})")
    else:
        issues.append(f"• {name} ({owner}) — {billing}")

# Print the report
total = len(d.get('pas', []))
print(f"📊 PA Network Status — {today}\
")
print(f"✅ ONLINE ({len(online)}/{total})")
for line in online:
    print(line)

if issues:
    print("\
⚠️ ISSUES")
    for line in issues:
        print(line)

if offline:
    print("\
❌ OFFLINE")
    for line in offline:
        print(line)

if not issues and not offline:
    print("\
All PAs are healthy 🎉")

Directory Schema (With Status Fields)

Add these fields to each PA entry in pa-directory.json:

{
  "name": "Aria",
  "phone": "+1XXXXXXXXXX",
  "owner": "Owner Name",
  "owner_email": "owner@company.com",
  "status": "active",
  "model": "your-llm-model",
  "last_seen": "2026-04-01T10:00:00Z",
  "calendar_connected": true,
  "billing_error": false,
  "billing_error_since": null
}

Replace "your-llm-model" with the actual model ID (e.g. "claude-haiku-20240307", "gpt-4o-mini", "gemini-1.5-flash").


Quick Ping (WhatsApp Reachability)

Use this for real-time check (after the script above):

For each PA in the issues list:
  Send: "ping 🏓"
  Wait up to 5 minutes
  If response received: mark ONLINE
  If no response: mark NO_RESPONSE → check whatsapp-diagnostics and billing-monitor skills

Rule: Only ping PAs that are flagged. Do not ping healthy PAs — it creates noise.


Scheduling

FrequencyAction
Daily at 09:00Full network report to admin
On billing errorImmediate partial report
On demandWhen admin asks "what's the status?"

Cost Tips

  • Very cheap: Reading a JSON file and formatting a report uses minimal tokens.
  • Small model OK: Any model can generate this report.
  • Avoid: Do not ping all PAs at once — send one at a time to avoid rate limits.
  • Batch: Run the full report once daily instead of checking each PA separately.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

94.15%
按下载量换算1,179

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills