ワンクリックで
async-jobs
Background work discipline — queues, retries, idempotency, delivery semantics. Load for any job, queue, webhook or scheduled work.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Background work discipline — queues, retries, idempotency, delivery semantics. Load for any job, queue, webhook or scheduled work.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Context engineering — memory navigation, textual graph traversal, progressive disclosure, recovery. Load when assembling context for a task or when lost.
Implementation-side security discipline — headers, dependencies, secrets, authz. Load for hardening work (sec-ops domain).
Commit conventions, branching, anchors in messages, and the git safety rules. Load for any git operation beyond status/diff.
Anti-generic-AI design discipline — bans, tells, and the slop test. Load for ANY new UI surface or visual redesign. Inspired by Impeccable (Apache 2.0).
Motion & animation discipline — purpose, performance, reduced-motion. Load when work involves animation, transitions or scroll effects.
Microcopy discipline — buttons, errors, empty/loading/success states, alt text. Voice and tone come from the project's memory, not from this skill.
| name | async-jobs |
| description | Background work discipline — queues, retries, idempotency, delivery semantics. Load for any job, queue, webhook or scheduled work. |
Queue/scheduler tech from memory-long §stack. The failure modes are universal — async work fails in ways sync code never does, and it fails silently.
Assume unordered unless the infrastructure explicitly guarantees it AND you've read the fine print (partition/group scope). Design for commutativity where possible; sequence numbers where not.
Test the failure paths, not just success: duplicate delivery, mid-job crash + retry, poison message → DLQ. Queue depth/age metrics visible (see observability) before the feature ships, not after the first incident.