원클릭으로
resolving-identity
Internal shared skill to resolve current user identity and org members. Not intended for direct user invocation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Internal shared skill to resolve current user identity and org members. Not intended for direct user invocation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Unified daily routine: ingests messages into tasks, then guides user through task refinement and dispatch. Works in both Claude Code and Cowork. Triggers on: "daily tasks", "daily routine", "run daily tasks", "デイリータスク", "日次ルーティン"
Generates or refines Acceptance Criteria and Execution Plans for tasks. Single task or batch mode. Ensures tasks are executable at agent-autonomous quality. Uses multi-round brainstorming to extract quality information from users. Triggers: "plan task", "refine task", "generate AC", "write execution plan", "plan all tasks", "auto-plan", "タスク計画", "AC作成", "実行計画作成", "タスクを計画して"
Delegates a task to another organization member by updating Assignees, resetting executor fields, and recording delegation history in Context. Triggers on: "delegate task", "assign to", "transfer task", "reassign", "タスク委任", "タスク移管", "割り当て変更"
Orchestrates autonomous task execution via current session, tmux parallel, or Cowork scheduled tasks. Fetches ready tasks, validates working directories, and dispatches to the chosen execution mode. Triggers on: "do the next task", "process tasks", "execute tasks", "ready tasks", "タスク実行", "次のタスクを実行", "タスク処理".
Performs a health check on tasks. Analyzes task age (stagnation), field completeness by status, blocked tasks (including other assignees' blockers), and executor ratio (human vs AI delegation). Supports 3 modes: specific assignee (by name), all tasks (team-wide overview), or defaults to current user when no target is specified. Use this skill whenever the user wants to monitor task health, check stagnation, audit task quality, or review AI delegation metrics — even if they don't say "monitor" explicitly. Triggers on: "monitor tasks", "task health check", "task analysis", "stagnation report", "task monitoring", "task report"
Reads incoming messages (Slack, Teams, Discord) addressed to the current user and auto-converts them into categorized Notion tasks (hearing-needed, self-action, or delegate). Designed for daily scheduled execution. Triggers on: "message intake", "intake", "process messages", "メッセージ取り込み", "メッセージ処理"
| name | resolving-identity |
| description | Internal shared skill to resolve current user identity and org members. Not intended for direct user invocation. |
| user-invocable | false |
Resolve the current user's identity from the active provider.
Skip if current_user is already set in this conversation.
active_provider must already be determined (caller must run detecting-provider first).
If active_provider is not set, stop and return an error to the caller.
If current_user is already set in this session, skip to Step 2.
Load ${CLAUDE_PLUGIN_ROOT}/skills/providers/{active_provider}/SKILL.md and follow the
Identity: Resolve Current User section.
Result: set session variable current_user: { id, name, email }.
current_user: { id: "local", name: $USER env var or "local", email: null }.current_user value — never fail the caller due to identity resolution.Skip if current_user.teams is already set in this session.
If teamsDatabaseId exists in headless_config:
${CLAUDE_PLUGIN_ROOT}/skills/providers/{active_provider}/SKILL.md and follow the
Identity: Resolve Team Membership section.current_user.teams: [{ id, name, members: [{ id, name }] }] and current_team.
current_team.current_team: null.If teamsDatabaseId is not in config, skip this step (current_team: null).
Only execute if the caller explicitly requests member lookup (i.e., org_members is needed).
Skip if org_members is already set in this session.
Load ${CLAUDE_PLUGIN_ROOT}/skills/providers/{active_provider}/SKILL.md and follow the
Identity: List Org Members section.
Result: set session variable org_members: OrgMember[] where each member has { id, name, email }.
org_members: [].