con un clic
run
Run or list HQ workers, preferring isolated Codex subagents when available.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run or list HQ workers, preferring isolated Codex subagents when available.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Deploy or share generated HQ artifacts through hq-deploy.
Mark a company as HQ Pro cloud-backed and sync its team setup.
Send HQ Sync direct messages, prompts, details, or scheduled notes to teammates.
Run a full bidirectional sync for cloud-backed HQ companies.
Scaffold a new HQ company AND optionally take it all the way to operational — business-discovery interview, seeded knowledge/workers/skills/projects, brand design packs (generated from website/PDF/Drive and bound to deploys via policy), connected integrations, org groups + ACL rules, teammate invites, and optional cloud agents.
Resolve HQ Sync conflicts by choosing local, cloud, or discard.
| name | run |
| description | Run or list HQ workers, preferring isolated Codex subagents when available. |
| allowed-tools | Read, Grep, Bash(qmd:*), Bash(grep:*), Bash(ls:*), Bash(git:*), Bash(cat:*), Bash(which:*), Bash(wc:*), Bash(core/scripts/work-mesh.sh:*), Edit, Write, Task, Glob, Bash, WebSearch, WebFetch, AskUserQuestion |
Unified interface to run workers and their skills in Codex sessions.
Codex Delegation Note
In Codex,
/runshould prefer an isolated worker sub-agent when the runtime exposes sub-agent delegation. Worker instructions, knowledge, and policies live in that sub-agent context and return as a compact handoff.The parent session stays responsible for user communication, integration, verification, commits, and durable memory. If delegation is unavailable, execute inline and write the same memory files.
Usage:
run # List available workers
run {worker-id} # Show worker skills
run {worker-id} {skill} # Run specific skill
run {worker-id} {skill} arg # Run with argument
User's input: $ARGUMENTS
Extract from $ARGUMENTS:
worker_id — first tokenskill — second token (optional)args — remaining tokens (optional, passed to skill as $ARGUMENTS)Read core/workers/registry.yaml and display all workers:
Available Workers:
x-{your-handle} X/Twitter posting for {your-name}
cfo-{product} Financial reporting
{product}-analyst LR/{PRODUCT} data analysis
...
Usage: run {worker-id} [skill] [args]
Stop here.
core/workers/registry.yaml{worker_id}{worker_path}/worker.yamlskills: sectionWorker: x-{your-handle}
Description: X/Twitter posting for {your-name}
Skills:
contentidea Build out a content idea into posts
suggestposts Research and suggest posts
scheduleposts Choose what to post now
Usage: run x-{your-handle} {skill}
Stop here.
Proceed to the full execution pipeline below.
Use the Read tool to read core/workers/registry.yaml — an auto-generated, read-only index (regenerated from worker.yaml files by reindex). It stores workers as a YAML list under the workers: key, with each entry shaped like:
workers:
- id: x-user
path: companies/_template/workers/x-user/
description: "..."
Scan the list for the entry where id: matches {worker_id} and extract its path: field. If needed, use Grep with the correct pattern to find the path:
grep -A 4 " - id: {worker_id}$" core/workers/registry.yaml | grep "path:"
Extract the path: value (strip the path: prefix). If no matching entry found, display:
Error: Worker '{worker_id}' not found in registry.
Run 'run' (no args) to list available workers.
Stop.
Read {worker_path}/worker.yaml in full. This contains:
instructions: — the worker's accumulated knowledge and learningstools: — permitted tools (respect these during execution)knowledge: — paths to knowledge files (load relevant ones)company: — company scope (used for policy loading)skills: — available skill definitionsSkill definitions are in {worker_path}/skills/{skill}.md.
If the skill file does not exist, check worker.yaml skills: section for an inline definition. If still not found:
Error: Skill '{skill}' not found for worker '{worker_id}'.
Run 'run {worker_id}' to see available skills.
Stop.
Determine the company scope from:
worker.yaml company: fieldcompanies/{co}/workers/ → company is {co}If company determined, read policies:
ls companies/{co}/policies/ 2>/dev/null
Read each policy file (skip example-policy.md). Note:
If worker targets a specific repo (from worker.yaml repo: field), also read:
ls {repoPath}/.claude/policies/ 2>/dev/null
From worker.yaml knowledge: section, load relevant knowledge files referenced. Prioritize files related to the requested skill. Use:
which qmd 2>/dev/null && qmd search "{worker_id} {skill}" --json -n 5
Or read knowledge files directly via Read tool if paths are specified in worker.yaml.
If the worker execution is tied to a resolved company project, first run:
bash core/scripts/work-mesh.sh check --company {co} --project {project}
If active mesh work is reported, surface it before dispatching so the user can
avoid duplicate effort or coordinate ownership. If a live local watcher/daemon
is needed, bash core/scripts/work-mesh.sh watch subscribes to the authorized
MQTT topics and maintains workspace/work-mesh/live-cache.json; do not publish
thread events directly to MQTT. Then report this worker run:
bash core/scripts/work-mesh.sh progress --company {co} --project {project} --summary "Running {worker_id}/{skill}"
On completion, append progress or blocked with the worker outcome. These
calls are best-effort and must not block local/offline work.
When sub-agents are available, spawn a bounded worker agent:
role: worker
model: omit to inherit parent for implementation; use "gpt-5.3-codex-spark" for read-only/simple work
ownership: files or directories this worker may change
prompt:
- worker.yaml instructions
- selected skill file
- task args
- applicable policies
- minimal memory files from workspace/orchestrator/{project}/memory/
- output JSON return contract
Tell the worker it is not alone in the codebase. It must not revert edits made by others and must adapt to existing concurrent changes. For code edits, assign a clear write scope and require the worker to list changed paths.
Model note: worker configs may contain legacy labels such as opus or sonnet. Do not pass those as Codex sub-agent model ids. For implementation agents, omit the model override unless the task or worker provides a real Codex model id. For bounded sidecars, use gpt-5.3-codex-spark.
If sub-agents are unavailable, execute in the parent session:
{skill}.md instructionsworker.yaml tools: section$ARGUMENTS in the skill file refers to args after {worker_id} {skill}After either path, write the compact handoff to:
workspace/orchestrator/{project-or-session}/memory/agents/{timestamp}-{worker_id}-{skill}.json
After skill completion, write a thread checkpoint file:
{
"thread_id": "T-{YYYYMMDD}-{HHMMSS}-{worker_id}-{skill}",
"version": 1,
"type": "auto-checkpoint",
"created_at": "{ISO8601}",
"updated_at": "{ISO8601}",
"workspace_root": "/Users/{your-name}/Documents/HQ",
"cwd": "{current working directory}",
"git": {
"branch": "{current branch from git branch --show-current}",
"current_commit": "{short hash from git rev-parse --short HEAD}",
"dirty": "{true if git status --short output is non-empty, false otherwise}"
},
"conversation_summary": "Ran {worker_id}/{skill}: {1-sentence description of what was accomplished}",
"files_touched": ["{list of files created or modified}"],
"metadata": {
"title": "Auto: {worker_id} {skill}",
"tags": ["auto-checkpoint", "{worker_id}", "{skill}"],
"trigger": "worker-completion"
}
}
Write to: workspace/threads/{thread_id}.json
Get git state with:
git rev-parse --short HEAD 2>/dev/null
git branch --show-current 2>/dev/null
git status --short 2>/dev/null
Set dirty: true if git status --short output is non-empty; false if empty.
run # See all workers
run x-user # See x-user skills
run x-user contentidea # Run contentidea skill
run x-user contentidea "AI workforce" # Run with topic arg
run cfo-{product} mrr # Run MRR report
run {product}-analyst weekly # Run weekly analysis