aios-team-status

Reads live team workload, task queues, and performance metrics from the AIOS platform API.

1|Updated Jul 8, 2026
One-click install
npx skills add https://github.com/codesofadan/danyals-aios --skill aios-team-status-codesofadan
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: aios-team-status
Source: https://github.com/codesofadan/danyals-aios/tree/main/.claude/skills/aios-team-status
Command: npx skills add https://github.com/codesofadan/danyals-aios --skill aios-team-status-codesofadan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Operators need a quick, accurate view of who is working on what without digging through dashboards. This Skill reads the live team workload from the AIOS platform - the caller's own performance metrics, any member's task queue, and the Command Center team feed - and renders a single pinned status report. ## Core Features & Use Cases - Personal metrics: Reads the caller's record via GET /me, including active tasks, completed count, on-time rate, utilization, and quality computed server-side from real ledgers. - Task queue scoping: Reads the queue for the caller (mine=true) or a named member (assignee=<id>), ordered by priority and status, with review-gate tasks flagged for lead sign-off. - Team-wide view: Pulls the Command Center feed to show per-member job counts across the whole team. - Use Case: An operator asks "who is working on what?" and gets a formatted report showing their metrics, each member's queue with J-#### task codes, and the team load - all read-only, with assignment routed to /aios-assign-task. ## Quick Start Ask the assistant to show the team status or your task queue, optionally naming a member to scope the report to their workload.

Frequently Asked Questions about aios-team-status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check my team's current workload and task queue?▼

Ask for the team status and the Skill reads GET /me for your metrics, GET /tasks for the queue, and GET /command-center for the team feed. It renders one report ordered by priority and status, with review-gate tasks flagged.

How do I see a specific team member's tasks?▼

Pass the member's id as the argument and the Skill queries GET /tasks with assignee=<id> instead of mine=true. You see their queue and job count, but their full performance metrics are only available to that member via their own GET /me.

Can I assign or reassign tasks from the team status view?▼

No, this Skill is strictly read-only and assigns nothing. To assign, reassign, or route work, use the separate /aios-assign-task skill, which the status report points to as the next step.

What permissions are required to read team status?▼

Any provisioned staff member holding the view_reports permission can run it, using an EdDSA bearer token against the AIOS API. Portal clients receive a 403 on this namespace.

Why does a new team member show zero metrics?▼

A fresh member has no task history yet, so onTime, utilization, and quality legitimately read zero. The Skill reports these zeros honestly rather than inventing values, since all metrics are computed server-side from real ledgers.