一键导入
human-management
Use when managing human users — creating accounts, setting permissions, managing access to teams and workers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when managing human users — creating accounts, setting permissions, managing access to teams and workers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when you need to interact with the AgentHub Controller — create tasks, create workers, check status, send heartbeat.
Use when inspecting, registering, summarizing, or handing off task artifacts.
Use when deciding whether existing Workers can handle a goal or whether a new Worker/team should be proposed.
Use when you need to manage Matrix rooms, send messages, or handle room participants.
Use when a Worker, RuntimeLease, Matrix binding, task, or artifact pipeline is stale, failed, or blocked.
Use when managing shared task files and artifact storage. Coordinate file handoffs between workers via shared storage.
| name | human-management |
| description | Use when managing human users — creating accounts, setting permissions, managing access to teams and workers. |
Manage human user accounts and their access to the AgentHub platform.
# Read the current Controller operation schema before changing human access.
agenthub schema
# Create a human user
agenthub human create --name <username> --display-name "John Doe" --email john@example.com --permission-level 1
# Apply a declarative Human manifest
agenthub apply -f human.yaml
# Request approval in the current Matrix room before applying sensitive manifests
agenthub apply -f human.yaml --approval-mode request --room <room-id> --reason "Human permission change"
# Confirm or deny a Controller approval request after the human answered in the room
agenthub approval confirm --event <approval-timeline-event-id> --approved-by <human-id> --reason "Human approved in room"
agenthub approval deny --event <approval-timeline-event-id> --denied-by <human-id> --reason "Human denied in room"
# List all human users
agenthub human list
# Delete a human user
agenthub human delete --name <username>
kind: Human
metadata:
name: admin-user
spec:
displayName: Admin User
email: admin@example.test
permissionLevel: 1
agenthub schema to inspect humans.create and approval metadata.agenthub apply -f <manifest> --approval-mode request --room <room-id> instead of applying immediately.agenthub approval confirm or agenthub approval deny.