async

Solid

Launch and coordinate Codex subagents as deferred tasks. Use when the user wants to start bounded subagent work now, keep the main thread moving without waiting by default, then later join, collect, or redirect that work through a stable task reference.

AI & Automation 36 stars 7 forks Updated today MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
52
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Async Use this skill when the user wants to: - start a Codex subagent task now and continue the main thread - optionally wait for the result when the task becomes blocking - manage subagent work through a user-facing `task_ref` instead of raw `agent_id` - get a strong completion announcement when async work finishes - query, collect, summarize, or redirect a previously launched async task Do not use this skill for: - generic background job systems outside Codex subagents - cross-session durable task storage or reliable wake-up guarantees - external queues, webhooks, cron, or service orchestration unless the runtime explicitly provides them ## Resource Map Read these references only when needed: - Runtime assumptions and fallback behavior: [references/runtime-contract.md](references/runtime-contract.md) - `task_ref` naming and lifecycle rules: [references/task-ref.md](references/task-ref.md) - Completion announcement policy and boxed alert templates: [references/alerts.md](references/alerts.md) ## Core Model Treat each async task as a tracked subagent lifecycle: 1. frame a bounded task 2. launch one subagent 3. assign a stable `task_ref` 4. keep the main thread moving unless waiting is required 5. announce completion strongly when the runtime makes it observable 6. collect, summarize, or inspect the result later Expose `task_ref` to the user. Keep `agent_id` internal unless debugging requires it. ## Defaults - Default execution mode is `launch-and-continue`. - I...

Details

Author
flc1125
Repository
flc1125/skills
Created
7 months ago
Last Updated
today
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category