ai-coding-agents-tasks
FeaturedDesigns background task systems for coding-agent runtimes. Use when implementing task lists, worker tasks, background execution, cancellation, or teammate task coordination.
AI & Automation 80 stars
17 forks Updated 1 weeks ago MIT
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# AI Coding Agents Tasks
Use this skill to design or review how a coding-agent runtime represents work as tasks: local agent tasks, shell tasks, remote tasks, teammate tasks, background execution, task lists, and task coordination.
This skill is about runtime task systems, not product backlog planning.
## ASCII Flow
```text
work request
|
v
task model
type + owner + status + inputs + blockers + cancellation semantics
|
v
task store
local task list | background task | remote task | teammate task
|
v
scheduling
claim -> run -> progress events -> complete | fail | blocked | release
|
v
UI/session reflection
background badge, task detail, foregrounding, retry, escalation
```
## Quick Reference
| Question | Read | Outcome |
|----------|------|---------|
| What task types should a coding-agent runtime support? | [`references/task-types-and-lifecycle.md`](references/task-types-and-lifecycle.md) | Task families, statuses, background eligibility, and host ownership |
| How should task lists and teammate routing work? | [`references/task-list-coordination-and-teammate-routing.md`](references/task-list-coordination-and-teammate-routing.md) | File-watched task lists, claiming, blockers, teammate routing, and response loops |
| How do Anthropic-hosted routines (schedule / API / GitHub) behave? | [`references/claude-code-routines.md`](references/claude-code-routines.md) | Trigger types, `/fire` endpoint, beta header, cap-drop behaviour, fresh-session model, co...
Details
- Author
- vasilyu1983
- Repository
- vasilyu1983/AI-Agents-public
- Created
- 9 months ago
- Last Updated
- 1 weeks ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
ai-coding-agents-tools
Designs tool runtimes for coding agents. Use when modeling tool registries, deferred loading, permission-aware execution, tool search, or remote tool rendering.
80 Updated 1 weeks ago
vasilyu1983 AI & Automation Featured
ai-coding-agents
Creates coding agents on Claude Code, Codex, and Agent SDK. Use when defining review, test, refactor, or team agents — not building a runtime.
80 Updated 1 weeks ago
vasilyu1983 AI & Automation Featured
ai-coding-agents-terminal-ui
Designs terminal-first coding-agent UX: REPL, prompt input, status lines, keybindings, display modes. Use when shaping TUI rendering, history, or background-task navigation.
80 Updated 1 weeks ago
vasilyu1983