AgentSkillsCN

Agent Activity

代理活动

SKILL.md
<!-- CONTENT_HASH: ab80fb27c93feefc9d6f259227b7f6bc7e79917beb06ecd59692663d42e22cb2 -->

Agent Activity Monitor

Skill: agent-activity Version: 0.1.0 Status: Active Required_canon_version: >=2.11.15

Description: Monitors active agents and their current tasks by analyzing the MCP audit log. Usage: skill_run(skill="agent-activity", input={})

Input Schema

json
{
  "limit": 10,           // Number of recent sessions to show
  "active_within": 600   // Only show agents active within last N seconds (default: 600)
}

Output Schema

json
{
  "active_agents": [
    {
      "session_id": "uuid...",
      "last_seen": "iso-timestamp",
      "tool": "tool_name",
      "file": "file_path_if_any",
      "status": "success/error"
    }
  ]
}