원클릭으로
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.