AgentStack
SKILL verified MIT Self-run

Work On Next Task

skill-etr-groundwork-work-on-next-task · by etr

Execute next uncompleted task with full project context (PRD, architecture, tasks). Usage /groundwork:work-on-next-task

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-etr-groundwork-work-on-next-task

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-etr-groundwork-work-on-next-task)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Work On Next Task? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Next Task Skill

Finds the next uncompleted task from {{specs_dir}}/tasks/ (or {{specs_dir}}/tasks.md) and delegates execution to the work-on skill.

Pre-flight: Model Recommendation

Your current effort level is {{effort_level}}.

Skip this step silently if effort is high, xhigh, or max (the scale is low "You're working from ` (inside **[cwd-project]**), but the selected Groundwork project is **[selected-project]** ([selected-project-path]/). What would you like to do?" > - "Switch to [cwd-project]" > - "Stay with [selected-project]" If the user switches, invoke Skill(skill="groundwork:select-project")`.

  • If CWD doesn't match any project → proceed without warning (shared directory).
  1. Proceed with the resolved project context. All {{specs_dir}}/ paths will resolve to the correct location.

Step 1: Load Task Index

Read only the task index to find available tasks — do NOT read individual task files:

  • Directory mode: {{specs_dir}}/tasks/_index.md (preferred — contains status table)
  • Single file fallback: {{specs_dir}}/tasks.md

Detection: Check for {{specs_dir}}/tasks/_index.md first, then {{specs_dir}}/tasks.md. Do NOT aggregate all task files — the index contains the status table with all the information needed to find the next task.

Step 2: Find Next Task

Parse the status table in _index.md to find the next task:

| # | Task | Milestone | Status | Blocked by |
|---|------|-----------|--------|------------|
| TASK-001 | Auth setup | M1 | Complete | None |
| TASK-002 | Login UI | M1 | In Progress | TASK-001 |
| TASK-003 | Dashboard | M2 | Not Started | TASK-002 |
  1. Look for all rows with Status = Not Started
  2. Check dependencies — filter to unblocked tasks (all tasks in Blocked by column are Complete)
  3. Detect ambiguity:
  • Let candidates = unblocked not-started tasks
  • Let next_sequential = lowest numbered candidate (e.g., TASK-004)
  • Let completed_after = any complete task with number > next_sequential
  1. If ambiguous (completed tasks exist after candidates):

Present options to user with context about the gap:

> "Multiple tasks are available. Tasks 1,2,3,5 are complete. > - TASK-004: [Title] - Earlier in sequence, may have been skipped intentionally > - TASK-006: [Title] - Next sequential after completed work > > Which would you like to work on? (or use /groundwork:work-on N to select a specific task)"

Wait for user selection before proceeding.

  1. If unambiguous: Select the first unblocked, not-started task

Dependency check: A task is blocked if its Blocked by column lists any task that is not Complete in the status table.

Fallback: If _index.md has no status table, read individual task files to find statuses (legacy single-file format).

Tip: For direct task selection, use /groundwork:work-on N to work on a specific task by number.

Step 3: Handle Edge Cases

| Situation | Response | |-----------|----------| | No specs/ directory | "No specs directory found. Run /groundwork:design-product to start defining your project." | | Missing tasks file | "Tasks file not found. Run /groundwork:create-tasks to generate tasks from your PRD and architecture." | | No tasks found | "No tasks found in {{specs_dir}}/tasks/. The directory may need to be regenerated with /groundwork:create-tasks." | | All tasks complete | "All tasks complete! Consider running /groundwork:source-product-specs-from-code to update documentation or plan the next phase." | | Only blocked tasks | "All remaining tasks are blocked. Blocked tasks: [list]. Would you like to override and work on one anyway?" | | Parse error | "Could not parse tasks.md. Expected format: ### TASK-NNN: Title with **Status:** field." |

Step 4: Delegate to Execute Task

You MUST call the Skill tool now: Skill(skill="groundwork:work-on", args="")

Replace ` with the identified task identifier (e.g., TASK-004`).

Do NOT load project context, explore the codebase, present summaries, or begin task execution yourself. The work-on skill handles the complete workflow including worktree setup, TDD, and validation.

Source & license

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

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

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.