Source profileQuality 91/100Review permissions

Yeachan-Heo/gajae-code/packages/coding-agent/src/defaults/gjc/skills/team/SKILL.md

team

Multi-worker GJC tmux team orchestration

Source repository stars
2,364
Declared platforms
0
Static risk flags
2
Last source update
2026-08-05
Source checked
2026-08-05

Decision brief

What it does—and where it fits

Multi-worker GJC tmux team orchestration

Best for

    Not for

    • Worktree provisioning requires a git repository and can fail on branch/path collisions
    • send-keys interactions can be timing-sensitive under load

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/Yeachan-Heo/gajae-code --skill "packages/coding-agent/src/defaults/gjc/skills/team"
    Safe inspection promptEditorial

    Inspect the Agent Skill "team" from https://github.com/Yeachan-Heo/gajae-code/blob/38e026c785968e722e5b3a1b8025cadfc54c8c84/packages/coding-agent/src/defaults/gjc/skills/team/SKILL.md at commit 38e026c785968e722e5b3a1b8025cadfc54c8c84. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Purpose & Principles

      $team is the tmux-based multi-worker execution mode for GJC. It starts real GJC worker CLI sessions by splitting the current tmux leader window and coordinates them through .gjc/session-{sessionid}/state/team/... files plus CLI team interop (gjc team api ...) and state files.

      Use GJC native subagents for bounded, in-session parallelism where one leader thread can fan out a few independent subtasks and wait for them directly.Use gjc team when you need durable visible tmux workers, shared task state, worker mailbox files, worktrees, explicit lifecycle control, or long-running execution that must survive beyond one local reasoning burst.Native subagents can complement team execution, but they do not replace the tmux team runtime's stateful coordination contract.
    2. 02

      Corrupt current-session state recovery

      When team detects its own current-session state is corrupt, tampered, unreadable, or stale on resume, run gjc state clear --force --mode team before reseeding or restarting. Scope the clear to the current session via --session-id, the command payload, or GJCSESSIONID; it clears…

      When team detects its own current-session state is corrupt, tampered, unreadable, or stale on resume, run gjc state clear --force --mode team before reseeding or restarting. Scope the clear to the current session via --…
    3. 03

      What This Skill Must Do

      When user triggers $team, the agent must:

      Invoke GJC runtime directly with gjc team ...Avoid replacing the flow with in-process spawnagent fanoutVerify startup and surface concrete state/pane evidence
    4. 04

      Invocation Contract

      gjc team ... is now the canonical launch path for coordinated execution. Team mode should carry visible worker delivery/verification lanes without requiring a separate linked execution loop up front. GJC team supports current-window multi-worker mode; explicit N:agent-type value…

      Canonical launch: use plain gjc team ... / $team ... for the coordinated worker.Verification ownership: keep one lane focused on tests, regression coverage, and evidence before shutdown.Typed lanes: model delivery, verification, architecture, or specialist work as task lane metadata plus requiredrole / allowedroles; claiming enforces owner, role, dependency, and lease order.
    5. 05

      Team-first launch contract

      gjc team ... is now the canonical launch path for coordinated execution. Team mode should carry visible worker delivery/verification lanes without requiring a separate linked execution loop up front. GJC team supports current-window multi-worker mode; explicit N:agent-type value…

      Canonical launch: use plain gjc team ... / $team ... for the coordinated worker.Verification ownership: keep one lane focused on tests, regression coverage, and evidence before shutdown.Typed lanes: model delivery, verification, architecture, or specialist work as task lane metadata plus requiredrole / allowedroles; claiming enforces owner, role, dependency, and lease order.

    Permission review

    Static risk signals and limitations

    Network access

    medium · line 292

    The documentation includes network, browsing, or remote request actions.

    GJC-team interop operations are also available for mailbox, native notification, worker heartbeat/status, stale-claim recovery, startup ACK, events, monitor snapshots, approvals, and shutdown request/ack flows; run `gjc team api --help` for

    Runs scripts

    medium · line 407

    The documentation asks the agent to run terminal commands or scripts.

    shutdown outcome (`phase=complete`, worker status `stopped`) when the run is terminal; incomplete shutdowns must report `phase=cancelled`/`failed`, and integration-blocked shutdowns must report `phase=awaiting_integration`

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars2,364SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    Yeachan-Heo/gajae-code
    Skill path
    packages/coding-agent/src/defaults/gjc/skills/team/SKILL.md
    Commit
    38e026c785968e722e5b3a1b8025cadfc54c8c84
    License
    MIT
    Collected
    2026-08-05
    Default branch
    main
    View the original SKILL.md

    Team Skill

    Purpose & Principles

    $team is the tmux-based multi-worker execution mode for GJC. It starts real GJC worker CLI sessions by splitting the current tmux leader window and coordinates them through .gjc/_session-{sessionid}/state/team/... files plus CLI team interop (gjc team api ...) and state files.

    This skill is operationally sensitive. Treat it as an operator workflow, not a generic prompt pattern. In GJC App or plain outside-tmux sessions, do not present $team / gjc team as directly available; launch GJC CLI from shell first, or stay on the nearest app-safe surface until the user explicitly wants the tmux runtime.

    • Use GJC native subagents for bounded, in-session parallelism where one leader thread can fan out a few independent subtasks and wait for them directly.
    • Use gjc team when you need durable visible tmux workers, shared task state, worker mailbox files, worktrees, explicit lifecycle control, or long-running execution that must survive beyond one local reasoning burst.
    • Native subagents can complement team execution, but they do not replace the tmux team runtime's stateful coordination contract.

    Use the shared workflow guidance pattern: outcome-first framing, concise visible updates for multi-step work, local overrides for the active workflow branch, validation proportional to risk, explicit stop rules, and automatic continuation for safe reversible steps. Ask only for material, destructive, credentialed, external-production, or preference-dependent branches.

    Corrupt current-session state recovery

    When team detects its own current-session state is corrupt, tampered, unreadable, or stale on resume, run gjc state clear --force --mode team before reseeding or restarting. Scope the clear to the current session via --session-id, the command payload, or GJC_SESSION_ID; it clears only team state for that session and never clears other skills or sessions.

    What This Skill Must Do

    When user triggers $team, the agent must:

    1. Invoke GJC runtime directly with gjc team ...
    2. Avoid replacing the flow with in-process spawn_agent fanout
    3. Verify startup and surface concrete state/pane evidence
    4. If active team mode state is missing, initialize/sync it from canonical team runtime state before proceeding
    5. Keep team state alive until the worker is terminal (unless explicit abort)
    6. Handle cleanup and stale-pane recovery when needed

    If gjc team is unavailable, stop with a hard error.

    Invocation Contract

    gjc team [N:agent-type] "<task description>"
    

    Examples:

    gjc team 3:executor "analyze feature X and report flaws"
    gjc team "debug flaky integration tests"
    gjc team "ship end-to-end fix with verification"
    

    Team-first launch contract

    gjc team ... is now the canonical launch path for coordinated execution. Team mode should carry visible worker delivery/verification lanes without requiring a separate linked execution loop up front. GJC team supports current-window multi-worker mode; explicit N:agent-type values select worker count and shared role.

    • Canonical launch: use plain gjc team ... / $team ... for the coordinated worker.
    • Verification ownership: keep one lane focused on tests, regression coverage, and evidence before shutdown.
    • Typed lanes: model delivery, verification, architecture, or specialist work as task lane metadata plus required_role / allowed_roles; claiming enforces owner, role, dependency, and lease order.
    • Escalation: use a new explicit follow-up task only when later manual work still needs a persistent single-owner fix/verification loop.
    • Deprecation: nested team execution commands have been removed. Use plain gjc team ... for coordinated execution.

    Team + Ultragoal bridge

    Use $ultragoal for durable leader-owned goal/ledger tracking and $team for parallel visible tmux execution lanes. When Team is launched with an active .gjc/_session-{sessionid}/ultragoal/goals.json, worker task/status context may include leader-owned Ultragoal context: .gjc/_session-{sessionid}/ultragoal/goals.json, .gjc/_session-{sessionid}/ultragoal/ledger.jsonl, the active goal id, GJC goal mode, and the fresh_leader_goal_get_required checkpoint policy.

    Workers provide task status and verification evidence only. They do not own Ultragoal goal state, create worker ledgers, mutate .gjc/_session-{sessionid}/ultragoal, auto-launch Team from Ultragoal, or perform hidden GJC goal mutation. Workers must not run gjc ultragoal checkpoint; checkpoint authority stays with the leader after worker tasks are terminal. Ultragoal does not auto-launch Team and performs no hidden goal mutation. The leader uses terminal Team evidence plus the current-session active GJC goal snapshot and strict quality gate to run gjc ultragoal checkpoint --goal-id <id> --status complete --evidence "<team evidence mentioning .gjc/_session-{sessionid}/ultragoal and <id>>" --quality-gate-json <quality-gate-json-or-path>.

    Worker command override

    Important: N:agent-type (for example 3:executor) selects the worker count and role prompt. Plain gjc team "task" defaults to 3 executor workers; gjc team 1:executor "task" is the explicit single-worker form.

    To launch the worker with a specific GJC-compatible command, use GJC_TEAM_WORKER_COMMAND:

    GJC_TEAM_WORKER_COMMAND="bun packages/coding-agent/src/cli.ts" gjc team executor "update docs and report"
    

    Preconditions

    Before running $team, confirm:

    1. tmux installed (tmux -V)
    2. Current leader session is inside tmux ($TMUX is set)
    3. gjc command resolves to the intended install/build
    4. If running repo-local node bin/gjc.js ..., run npm run build after src changes
    5. Check HUD pane count in the leader window and avoid duplicate hud --watch panes before split

    Suggested preflight:

    tmux list-panes -F '#{pane_id}\t#{pane_start_command}' | rg 'hud --watch' || true
    

    If duplicates exist, remove extras before gjc team to prevent HUD ending up in worker stack.

    Pre-context Intake Gate

    Before launching gjc team, require a grounded context snapshot:

    1. Derive a task slug from the request.
    2. Reuse the latest relevant snapshot in .gjc/context/{slug}-*.md when available.
    3. If none exists, create .gjc/context/{slug}-{timestamp}.md (UTC YYYYMMDDTHHMMSSZ) with:
      • task statement
      • desired outcome
      • known facts/evidence
      • constraints
      • unknowns/open questions
      • likely codebase touchpoints
    4. If ambiguity remains high, gather brownfield facts with focused repo inspection or a canonical read-only role agent first, then run $deep-interview --quick <task> before team launch.
    5. If current correctness depends on official docs, version-aware framework guidance, best practices, or external dependency behavior, gather evidence before or alongside worker launch using supported surfaces only: focused repo inspection for local facts, planner for broad context mapping/sequencing, architect for architecture or external-doc-risk assessment, and direct web/search tools when configured.

    Do not start the worker pane until this gate is satisfied; if forced to proceed quickly, state explicit scope/risk limitations in the launch report.

    For simple read-only brownfield lookups during intake, use narrow repo inspection first; for broader mapping, delegate to planner or architect with a concrete fact-finding assignment.

    Follow-up Staffing Contract

    When $team is used as a follow-up mode from ralplan, carry forward the approved plan's explicit available-agent-types roster and convert it into concrete staffing guidance before launch:

    • keep worker-role choices inside the known roster
    • state that GJC team launches the requested worker count and role allocation
    • state the suggested reasoning level for each lane when available
    • explain why each lane exists (delivery, verification, specialist support)
    • include an explicit launch hint (gjc team "<task>" / $team "<task>") for the coordinated worker run; mention $ultragoal as the default durable follow-up/ledger path; mention a later separate Single-owner execution follow-up only when explicitly requested or genuinely needed as a fallback
    • if the ideal role is unavailable, choose the closest role from the roster and say so
    • For multi-worker follow-up execution, do not pass an inline "Split lanes: A..., B..." sentence as the whole team task. gjc team rejects ambiguous inline lane splits because they previously caused every worker to receive the same broad task. Use explicit markdown lane sections instead:
      ### Lane A — Delivery
      Implement delivery-only changes and evidence.
      
      ### Lane B — Verification
      Add focused tests and smoke evidence.
      
      Explicit ### Lane <id> — <title> sections are converted into distinct worker-owned initial tasks.

    Current Runtime Behavior (As Implemented)

    gjc team currently performs:

    1. Parse args (N, agent-type, task), default to 3 workers, and cap workers at 20.
    2. Non-dry-run: detect the current tmux leader context with display-message -p "#S:#I #{pane_id}" before creating state or worktrees.
    3. Initialize team state:
      • .gjc/_session-{sessionid}/state/team/<team>/config.json
      • .gjc/_session-{sessionid}/state/team/<team>/manifest.v2.json
      • .gjc/_session-{sessionid}/state/team/<team>/tasks/task-*.json (one per explicit lane section, otherwise one worker-owned compatibility task per worker)
      • .gjc/_session-{sessionid}/state/team/<team>/mailbox/worker-1.json
      • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/status.json
      • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/lifecycle.json
      • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/heartbeat.json
    4. Resolve the worker command from GJC_TEAM_WORKER_COMMAND or the active gjc entrypoint.
    5. Split the current tmux window like GJC team: worker 1 is split horizontally to the right of the leader, workers 2..N are vertically stacked in the right column, then select-layout main-vertical and main-pane-width keep leader-left/worker-right at roughly 50/50.
    6. Launch the worker with:
      • GJC_TEAM_NAME=<team>
      • GJC_TEAM_WORKER_ID=worker-1
      • GJC_TEAM_STATE_ROOT=<leader-cwd>/.gjc/_session-{sessionid}/state/team
      • optional GJC_TEAM_WORKTREE_PATH=<path> when worktree mode is active
    7. Automatically integrate worker worktree commits during leader monitoring:
      • dirty worker worktrees are auto-checkpointed before integration
      • clean-ahead worker history is merged into the leader with a runtime merge commit
      • diverged worker history is cherry-picked into the leader
      • idle/done/failed worker worktrees are cross-rebased onto the updated leader after integration; working workers are skipped
      • conflicts are aborted, recorded, and reported to the leader mailbox without falsely advancing last_integrated_head
    8. Store pane/target/integration/lifecycle evidence in config/manifest/snapshot: tmux_session, tmux_session_name, tmux_target, leader pane id, worker pane ids, worker_lifecycle_by_id, and integration_by_worker.
    9. Return control to the leader; follow-up uses status, resume, shutdown, and gjc team api.

    Important:

    • Leader remains in the existing left pane.
    • Worker panes are independent full GJC worker CLI sessions on the right side of a leader-left/worker-right split.
    • Worker CLI selection is teammate-only: GJC_TEAM_WORKER_CLI and GJC_TEAM_WORKER_CLI_MAP accept only auto or gjc; legacy/provider values such as codex, claude, or gemini are rejected before launch.
    • The worker may run in a dedicated git worktree (gjc team --worktree[=<name>]) while sharing the team state root.
    • shutdown kills only the recorded worker pane after confirming it still belongs to the stored tmux target and is not the leader pane. It never kills the tmux session.

    Required Lifecycle (Operator Contract)

    Follow this exact lifecycle when running $team:

    1. Start team and verify startup evidence (team line, tmux target, worker pane id, state dir, worker_lifecycle_by_id.<worker>.lifecycle_state=ready after startup ACK).
    2. Monitor task progress with runtime/state tools first (gjc team status <team>, gjc team resume <team>, task files).
    3. Wait for terminal task state and integration settlement before shutdown:
      • pending=0
      • in_progress=0
      • failed=0 (or explicitly acknowledged failure path)
      • no pending integration request/conflict (status / resume must not report phase=awaiting_integration)
    4. Only then run gjc team shutdown <team>.
    5. Verify shutdown evidence and preserved state (phase=complete, worker runtime status stopped, lifecycle stopped with a matching graceful shutdown request id). If shutdown is forced before evidence-backed task completion, expect phase=cancelled or phase=failed; if tasks are complete but integration is still pending or conflicted, expect phase=awaiting_integration, not complete.

    Do not run shutdown while the worker is actively writing updates unless user explicitly requested abort/cancel. Do not treat ad-hoc pane typing as primary control flow when runtime/state evidence is available.

    Active leader monitoring rule

    While a team is running, keep checking live team state until terminal completion.

    Minimum acceptable loop:

    sleep 30 && gjc team monitor <team-name>
    

    The mutating monitor path also performs bounded liveness recovery: expired task claims, stale heartbeat claims, and missing recorded worker panes are requeued instead of leaving work permanently in_progress.

    A GJC worker session publishes its own heartbeat while an agent turn or owned background job is active, at a third of the stale window, so a long build or test run is no longer reported stale. A worker that publishes nothing — for example one wedged before it could report — is still recovered on the normal window.

    Opt-in stalled-worker continuation

    GJC_TEAM_AUTO_CONTINUE_STALLED_WORKERS=1 enables a separate, default-off monitor-only nudge for a stalled live worker. It is considered only when the team is running (not dry-run), the worker heartbeat is stale (using GJC_TEAM_HEARTBEAT_STALE_MS, default 120000 ms), and all of these checks pass:

    • The recorded pane id is a non-leader %<number> pane that tmux currently reports in the recorded tmux_target as that same pane id; no other pane is targeted.
    • Shutdown authority is proven absent; valid-present and invalid/unreadable records veto continuation without suppressing normal stale-claim recovery.
    • Lifecycle is ready or working, and worker status is a structurally valid non-terminal state (not draining, failed, or unknown).
    • One current non-terminal task is in_progress, assigned to and claimed by that worker; the stored claim record exactly matches its owner, token, and lease.
    • The lease remains valid through the entire next hold interval.

    The policy has at most two attempts per immutable incident: attempt 1 reserves a 30-second hold, then attempt 2 reserves a 120-second hold only after attempt 1 was recorded as sent and its hold elapsed. A retry still requires the heartbeat to be stale and every fence above to pass. Reservations and outcomes are create-without-clobber journal records keyed to the incident identity; a pre-existing reservation, an unknown/missing/non-sent outcome after restart, or a second-attempt record fails closed rather than sending again.

    Each eligible attempt sends only the fixed continuation prompt to that verified recorded worker pane, followed by Enter. It does not replay provider output or a prior prompt, inspect or inject dynamic pane content, cross pane boundaries, kill or relaunch workers, create/split panes, or extend/rewrite claims. This bounded nudge is not automatic recovery for a dead, shutdown, reassigned, terminal, or lease-expired worker. When it cannot act, use gjc team status <team-name> / gjc team monitor <team-name> and the documented state evidence; manual pane intervention remains the last-resort fallback.

    Continuation input is unsupported on psmux and native Windows send-keys fallback transports: the fixed prompt is not dispatched there because equivalent literal-input semantics are not proven. Startup's existing empty-pane worker command fallback is separate and unchanged.

    Operational Commands

    gjc team status <team-name>
    gjc team monitor <team-name>
    gjc team resume <team-name>
    gjc team shutdown <team-name>
    

    Semantics:

    • status: read-only snapshot path; it does not recover claims, replay notifications, integrate worker commits, or sync HUD state.
    • monitor: mutating monitor path; reads team snapshot, recovers expired/stale worker claims, applies pending worker worktree integration, replays notifications, syncs HUD state, and returns task counts, worker state, tmux target/pane evidence, worker_lifecycle_by_id, and integration_by_worker.
    • resume: mutating monitor path; performs the same liveness-recovery and integration-aware live snapshot for reconnect/inspection flows.
    • list: pure read path; lists known teams without integrating worker commits.
    • API/read-only snapshot operations are pure unless explicitly documented as a monitor path.
    • claim-task: mutating task path; before granting a new claim, it recovers expired claims and rejects claims from workers already classified as not live.
    • shutdown: writes per-worker graceful shutdown-request.json, moves lifecycle through draining to stopped, kills the recorded worker pane when it still belongs to the stored tmux target, removes clean created worktrees, marks worker runtime status stopped, and sets phase from task, lifecycle, and integration state: complete only when all tasks have verified completion_evidence, every worker has matching graceful shutdown lifecycle evidence, and no integration request/conflict is pending; awaiting_integration when tasks and lifecycle are complete but leader integration still requires action; failed when tasks failed/blocked or completed tasks lack valid evidence; and cancelled when work remains pending or in progress. It preserves .gjc/_session-{sessionid}/state/team/<team> as evidence.

    Data Plane and Control Plane

    Control Plane

    • Current tmux leader window and one or more worker panes.
    • gjc team lifecycle commands.
    • gjc team api claim-task and gjc team api transition-task-status.

    Data Plane

    • .gjc/_session-{sessionid}/state/team/<team>/config.json
    • .gjc/_session-{sessionid}/state/team/<team>/manifest.v2.json
    • .gjc/_session-{sessionid}/state/team/<team>/phase.json
    • .gjc/_session-{sessionid}/state/team/<team>/events.jsonl
    • .gjc/_session-{sessionid}/state/team/<team>/trace.jsonl
    • .gjc/_session-{sessionid}/state/team/<team>/trace-errors.jsonl
    • .gjc/_session-{sessionid}/state/team/<team>/telemetry.jsonl
    • .gjc/_session-{sessionid}/state/team/<team>/monitor-snapshot.json
    • .gjc/_session-{sessionid}/state/team/<team>/integration-report.md
    • .gjc/_session-{sessionid}/state/team/<team>/tasks/task-1.json (includes structured completion_evidence after completed transitions)
    • .gjc/_session-{sessionid}/state/team/<team>/mailbox/worker-1/<message-id>.json
    • .gjc/_session-{sessionid}/state/team/<team>/mailbox/worker-1.json (legacy compatibility view)
    • .gjc/_session-{sessionid}/state/team/<team>/notifications/<notification-id>.json
    • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/startup-ack.json
    • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/status.json
    • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/lifecycle.json
    • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/heartbeat.json
    • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/shutdown-request.json
    • .gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/nudges/<fingerprint>.json
    • .gjc/_session-{sessionid}/reports/team-commit-hygiene/<team>.ledger.json

    Team Mutation Interop (CLI-first)

    Use gjc team api for machine-readable task lifecycle operations.

    gjc team api worker-startup-ack --input '{"team_name":"my-team","worker_id":"worker-1","protocol_version":"1"}' --json
    gjc team api claim-task --input '{"team_name":"my-team","worker_id":"worker-1"}' --json
    gjc team api transition-task-status --input '{"team_name":"my-team","task_id":"task-1","to":"completed","worker_id":"worker-1","claim_token":"<claim-token>","completion_evidence":{"summary":"Completed requested work and verified it locally.","items":[{"kind":"command","status":"passed","summary":"Focused test passed","command":"bun test packages/coding-agent/test/gjc-runtime/team-runtime.test.ts"}],"files":["packages/coding-agent/test/gjc-runtime/team-runtime.test.ts"],"notes":"Include at least one passed command or verified inspection/artifact item."}}' --json
    gjc team api update-worker-status --input '{"team_name":"my-team","worker_id":"worker-1","status":"working","current_task_id":"task-1"}' --json
    gjc team api recover-stale-claims --input '{"team_name":"my-team"}' --json
    gjc team api read-traces --input '{"team_name":"my-team"}' --json
    gjc team api create-task --input '{"team_name":"my-team","subject":"Verify delivery","description":"Run verification","owner":"worker-1","lane":"verification","required_role":"executor","depends_on":["task-1"]}' --json
    

    Canonical worker lifecycle operations:

    • worker-startup-ack before task work; this records startup ACK and moves workers/<worker>/lifecycle.json to ready
    • claim-task
    • update-worker-status when the worker starts/stops a task-local activity; this updates worker-reported status.json without replacing the runtime lifecycle source of truth
    • recover-stale-claims is leader/runtime-owned; it clears expired claim files, requeues in-progress tasks claimed by stale workers, and records task_claim_recovered events without modifying terminal task records or completion evidence
    • transition-task-status with the claim token, worker id, and structured completion_evidence object
    • release-task-claim Claim eligibility is ordered and must not be bypassed: explicit task id selection, task status/terminal checks, owner/assignee checks, lane/role checks, dependency/blocked checks, then active lease creation. lane is descriptive metadata; required_role and allowed_roles are the enforced worker role gates.

    Completion evidence is stored inline on the task record as completion_evidence. It must include a non-empty summary, an items array, and at least one item with status: "passed" or status: "verified". Valid item kinds are command, inspection, and artifact; command items require command. The camel-case alias completionEvidence is accepted by the API input, but legacy string evidence and separate evidence files are not part of the public completion contract.

    GJC-team interop operations are also available for mailbox, native notification, worker heartbeat/status, stale-claim recovery, startup ACK, events, monitor snapshots, approvals, and shutdown request/ack flows; run gjc team api --help for the full operation list.

    Structured trace records in trace.jsonl are append-only schema version 1 entries. Each trace references the legacy events.jsonl source via source_event_id, keeps event_type, worker/task ids, and includes evidence_refs for completion evidence or claim recovery when available. Trace append failures are isolated in trace-errors.jsonl and do not break events.jsonl compatibility.

    GJC-native concept parity

    GJC ports team-mode concepts from ../../oh-my-codex, not code or OMX/Codex-specific assumptions:

    ConceptGJC-native equivalent
    Worker identity/inbox/mailbox paths.gjc/_session-{sessionid}/state/team/<team>/workers/<worker>/identity.json, inbox.md, and per-message mailbox records under .gjc/_session-{sessionid}/state/team/<team>/mailbox/<worker>/.
    Startup ACKgjc team api worker-startup-ack, persisted as workers/<worker>/startup-ack.json.
    Claim-safe lifecycle APIsclaim-task, transition-task-status, and release-task-claim with worker ownership and claim-token guards.
    Delivery states and deferred pane attemptsNative notification records under .gjc/_session-{sessionid}/state/team/<team>/notifications/ with pending, sent, queued, deferred, failed, delivered, and acknowledged states.
    Opt-in memory-guard relaunchLifecycle nudges remain non-destructive by default. On Linux only, a worker whose durable memory-guard.json explicitly enables automatic action may be checkpointed and relaunched after sustained pressure, bounded retries, current claim validation, and a continuation-safe handoff; unsupported platforms and missing authority remain advisory-only.

    Forbidden assumptions: do not copy OMX paths, Codex notify payload formats, OMX process names, or source code directly. Keep tmux as the current runtime; native split-worker TUI remains roadmap-only.

    Worker protocol:

    • Send startup ACK with worker-startup-ack before task work.
    • Report worker activity with update-worker-status; this is the worker-reported status plane, not the runtime lifecycle state.
    • Claim pending work with claim-task.
    • Transition the task to completed, failed, or blocked with transition-task-status, including claim token and evidence for completion.
    • Commit or leave worktree changes in the worker worktree; the leader monitor/resume path will auto-checkpoint dirty worktrees and integrate committed history where possible.
    • Record implementation/verification evidence in normal task output and state files; leader integration/conflict notifications are delivered through .gjc/_session-{sessionid}/state/team/<team>/mailbox/leader-fixed.json.

    Environment Knobs

    Useful runtime env vars:

    • GJC_TMUX_COMMAND / GJC_TEAM_TMUX_COMMAND
      • tmux executable override (default tmux on POSIX; psmux / pmux / tmux resolution on native Windows). GJC_TMUX_COMMAND applies to every GJC tmux flow; GJC_TEAM_TMUX_COMMAND is honored as a team-path alias. Values are executable paths/names, not shell command lines.
      • Native Windows psmux boundary: a generic-banner tmux.exe alias is classified by matching its executable identity with resolved psmux.exe / pmux.exe companions. Unresolved or conflicting identity evidence fails closed with gjc_tmux_provider_ambiguous; GJC_PSMUX_COMMAND must resolve to the same executable identity as the selected alias.
      • Managed psmux session creation, attachment, lifecycle mutation, and team startup remain unsupported because psmux cannot provide the immutable native session identity required by the owner-isolation contract. Use WSL or verified native tmux for live team workers.
      • Windows psmux namespace boundary: psmux uses the tmux-compatible global -L <namespace> flag for server isolation, but GJC does not accept flags in GJC_TMUX_COMMAND or expose structured runtime -L support.
    • GJC_TEAM_WORKER_COMMAND
      • worker command override (default resolves to active GJC entrypoint or gjc)
    • GJC_TEAM_STATE_ROOT
      • team state root override (default <cwd>/.gjc/_session-{sessionid}/state/team)

    Failure Modes and Diagnosis

    Operator note (important for GJC panes):

    • Manual Enter injection (tmux send-keys ... C-m) can appear to "do nothing" when a worker is actively processing; Enter may be queued by the pane/task flow.
    • This is not necessarily a runtime bug. Confirm worker/team state before diagnosing worker failure.
    • Avoid repeated blind Enter spam; it can create noisy duplicate submits once the pane becomes idle.

    Common failures

    • Outside tmux: non-dry-run launch fails before team state or worktrees are created. Start gjc team from an attached tmux leader pane.
    • Split failure: startup records a failed phase if state was already initialized, rolls back created worktrees, and never kills the leader tmux session.
    • Worker API ENOENT: team state is missing or GJC_TEAM_STATE_ROOT points somewhere else. Check .gjc/_session-{sessionid}/state/team/<team>/ before assuming worker failure.
    • Stale pane on shutdown: shutdown only kills a recorded worker pane when it still belongs to the stored tmux_target and is not the leader pane. Stale panes outside that target require manual inspection.
    • Integration conflict: gjc team monitor <team> / resume aborts the failing merge, cherry-pick, or worker rebase; gjc team status <team> is read-only inspection. Inspect .gjc/_session-{sessionid}/state/team/<team>/integration-report.md, .gjc/_session-{sessionid}/state/team/<team>/events.jsonl, .gjc/_session-{sessionid}/state/team/<team>/mailbox/leader-fixed.json, and .gjc/_session-{sessionid}/reports/team-commit-hygiene/<team>.ledger.json.

    Safe Manual Intervention (last resort)

    Use only after checking gjc team status <team> and state evidence:

    1. Inspect team files:
      • .gjc/_session-{sessionid}/state/team/<team>/config.json
      • .gjc/_session-{sessionid}/state/team/<team>/tasks/task-1.json
      • .gjc/_session-{sessionid}/state/team/<team>/mailbox/worker-1.json
    2. Use supported team surfaces before manual pane intervention:
      • gjc team status <team> for current recorded state
      • gjc team monitor <team> when a live monitor/update loop is needed
      • gjc team api <team> only for documented programmatic operations
    3. If the recorded worker pane is stuck in an interactive state, safely return to idle prompt first:
      • optional interrupt C-c or escape flow (CLI-specific) once, then re-check gjc team status <team> and relevant state files
    4. Send one concise trigger only when runtime/state checks show manual prompt input is needed:
      • tmux send-keys -t %<worker-pane> "continue current task; report status" C-m
    5. Re-check task state, worker mailbox, and gjc team status <team>.

    Shutdown reports success but stale worker panes remain

    Cause:

    • The stale pane was not the recorded worker pane, no longer belonged to the stored tmux_target, or came from a previous failed run.

    Fix:

    • Manually inspect panes before cleanup and kill only verified stale worker panes.

    Clean-Slate Recovery

    Run from leader pane:

    # 1) Inspect panes
    tmux list-panes -F '#{pane_id}	#{pane_current_command}	#{pane_start_command}'
    
    # 2) Kill verified stale worker panes only (examples)
    tmux kill-pane -t %450
    tmux kill-pane -t %451
    
    # 3) Shut down recorded team state/workers through the supported team runtime
    # Replace <team-name> with the team from `gjc team list` / `gjc team status`.
    gjc team shutdown <team-name>
    
    # 4) Retry
    gjc team executor "fresh retry"
    

    Guidelines:

    • Do not kill the leader pane.
    • Do not kill HUD panes unless intentionally restarting HUD.
    • Prefer gjc team shutdown <team> for recorded active workers; use manual pane cleanup only for verified stale panes.

    Required Reporting During Execution

    When operating this skill, provide concrete progress evidence:

    1. Team started line (Team started: <name>)
    2. tmux target and worker pane id
    3. task state from read-only gjc team status <team>, mutating gjc team monitor <team>, or .gjc/_session-{sessionid}/state/team/<team>/tasks/task-1.json
    4. shutdown outcome (phase=complete, worker status stopped) when the run is terminal; incomplete shutdowns must report phase=cancelled/failed, and integration-blocked shutdowns must report phase=awaiting_integration

    Do not claim success without file/pane evidence. Do not claim clean completion if shutdown occurred with in_progress>0. Use gjc team status <team> and gjc team monitor <team> as the supported operator aids for status inspection; keep raw state-file or pane evidence available for manual intervention and proof.

    Programmatic Team Orchestration

    Use the gjc team ... CLI as the supported team-launch surface. For automation, drive the same CLI flow from scripts or supervising agents rather than relying on a separate runtime integration runner.

    Supported current surfaces

    • gjc team ... CLI — Primary method for interactive or automated team orchestration. Use this when you want direct tmux-pane visibility or a scriptable launch path.
    • gjc team status <team> — Read current team/task/worker state.
    • gjc team monitor <team> — Follow live progress through the supported runtime surface.
    • gjc team shutdown <team> — Stop recorded active workers and move the team toward terminal state.
    • gjc team api <team> — Use only for documented programmatic operations exposed by the team runtime.
    • Team state files — Inspect .gjc/_session-{sessionid}/state/team/<team>/ when you need status, task, or mailbox evidence after launch.

    Cleanup distinction

    Use gjc team shutdown <team> for recorded active workers. After shutdown reports a terminal state and required evidence is preserved, use supported gjc state ... session/mode cleanup commands only when you are intentionally clearing state; do not delete team state by hand during an active run. Use manual tmux/session cleanup only for verified stale panes that are not handled by the documented shutdown flow.

    Automation example

    1. gjc team executor "fix bugs"
    2. gjc team status <team-name>
    3. gjc team shutdown <team-name>
    4. Clean up the finished team state for <team-name>
    

    Limitations

    • Worktree provisioning requires a git repository and can fail on branch/path collisions
    • send-keys interactions can be timing-sensitive under load
    • stale panes from prior runs can interfere until manually cleaned

    Scenario Examples

    Good: The user says continue after the workflow already has a clear next step. Continue the current branch of work instead of restarting or re-asking the same question.

    Good: The user changes only the output shape or downstream delivery step (for example make a PR). Preserve earlier non-conflicting workflow constraints and apply the update locally.

    Bad: The user says continue, and the workflow restarts discovery or stops before the missing verification/evidence is gathered.

    Handoff back to planning or persistence

    When the team task-set completes OR the user requests return to planning/persistence, mark team ready for handoff so the skill tool's chain guard permits the transition:

    gjc state team write --input '{"current_phase":"handoff"}' --json
    

    The skill tool then dispatches /skill:ralplan, /skill:deep-interview, or /skill:ultragoal same-turn and runs gjc state team handoff --to <ralplan|deep-interview|ultragoal> --json in-process to atomically demote team, promote the callee, and sync both .gjc/_session-{sessionid}/state/skill-active-state.json files. You do not need to run the handoff verb yourself.

    Alternatives

    Compare before choosing

    Computed 9438,343

    Yeachan-Heo/oh-my-claudecode

    team

    N coordinated agents on shared task list using Claude Code implicit agent teams

    Computed 10023,835

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10014,533

    prowler-cloud/prowler

    postgresql-indexing

    PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance

    Computed 10014,251

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.