# Vibe Async Task Queue

> Provides a persistent cross-session task queue for work that should be done but isn't blocking current tasks. Enables background and future-session work tracking.

- **Type:** Skill
- **Install:** `agentstack add skill-ash1794-vibe-engineering-async-task-queue`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ash1794](https://agentstack.voostack.com/s/ash1794)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [ash1794](https://github.com/ash1794)
- **Source:** https://github.com/ash1794/vibe-engineering/tree/master/plugins/vibe-engineering/skills/async-task-queue

## Install

```sh
agentstack add skill-ash1794-vibe-engineering-async-task-queue
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# vibe-async-task-queue

Not everything needs to be done right now. But "I'll do it later" only works if "later" actually happens.

## When to Use This Skill

- You identify work that should be done but isn't blocking the current task
- During code review, you find issues that aren't urgent
- Tests reveal non-critical flakiness
- Documentation needs updating but not right now
- "TODO" comments that should become tracked tasks

## When NOT to Use This Skill

- Blocking work that must be done now
- Tasks already tracked in an issue tracker (GitHub Issues, Jira, etc.)
- One-off tasks in the current session (just do them)

## Queue Format

Tasks are stored in a JSON file at a project-specific location (e.g., `.claude/task-queue.json`):

```json
{
  "tasks": [
    {
      "id": "vibe-001",
      "created": "2026-02-28",
      "priority": "medium",
      "status": "pending",
      "description": "Add error handling to parseConfig edge cases",
      "target_files": ["internal/config/parser.go"],
      "acceptance": "go test ./internal/config/... -run TestParseConfigEdge -v passes",
      "context": "Discovered during fuzz testing session"
    }
  ]
}
```

## Steps

### Adding a Task
1. Identify the work
2. Write a clear description with:
   - What needs to be done
   - Which files are affected
   - How to verify it's done (acceptance command)
   - Why it was deferred (context)
3. Append to queue file

### Processing the Queue
1. Read queue file
2. Pick highest-priority pending task
3. Set status to `in_progress`
4. Do the work
5. Run acceptance test
6. If pass: set status to `completed`, commit
7. If fail: set status to `pending`, add notes about what went wrong

### Reviewing the Queue
List all tasks with status counts. Identify stale tasks (>7 days pending).

## Output Format

### Task Queue Status

**Pending**: X | **In Progress**: Y | **Completed**: Z | **Failed**: W

| ID | Priority | Description | Age | Status |
|----|----------|------------|-----|--------|
| vibe-001 | high | Add auth token refresh | 2d | pending |
| vibe-002 | medium | Fix flaky test in utils | 5d | pending |

### Stale Tasks (>7 days)
- [task IDs that need attention or should be closed]

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ash1794](https://github.com/ash1794)
- **Source:** [ash1794/vibe-engineering](https://github.com/ash1794/vibe-engineering)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-ash1794-vibe-engineering-async-task-queue
- Seller: https://agentstack.voostack.com/s/ash1794
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
