AgentStack
SKILL verified MIT Self-run

Build Unplanned

skill-etr-groundwork-build-unplanned · by etr

Build a feature from description with worktree isolation and TDD. Usage /groundwork:build-unplanned "Add user login

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

Install

$ agentstack add skill-etr-groundwork-build-unplanned

✓ 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-build-unplanned)

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 Build Unplanned? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Build Unplanned Feature

Thin orchestrator for ad-hoc feature development without existing task definitions. Delegates to plan-task (blurb mode), implement-task, and validate.

Token Discipline

This skill orchestrates long multi-agent workflows. Every turn re-reads the full context window, so unnecessary turns are expensive.

  1. No narration turns. Do not output text-only turns like "Let me understand your feature" or "Now I'll dispatch implementation." Combine text with a tool call in the same turn, or skip the text entirely.
  2. Batch tool calls. When multiple tool calls are independent, issue them all in one turn.
  3. No waiting updates. Do not output "Waiting for results..." turns. Wait silently until results arrive.
  4. Keep context lean. Do not read file contents you won't use directly. Pass file paths to subagents and let them read in their own context windows.

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.

Step 1: Parse Feature Description

  • Argument provided: Use the argument text as the feature blurb.
  • No argument: Use AskUserQuestion to ask:

> "What feature would you like to build? Describe it briefly."

Step 2: Plan → plan-task

Call Skill(skill="groundwork:plan-task") with the blurb from Step 1 in the conversation context. Do NOT pass a task_id — this triggers blurb/feature mode in plan-task, which will:

  • Load existing specs (if any)
  • Call understanding-feature-requests for requirement clarification
  • Generate a FEATURE- identifier
  • Spawn a Plan agent and persist the plan

Parse the output:

  • RESULT: PLANNED | plan_file_path= | identifier= | branch_prefix= → Save plan_file_path, identifier, branch_prefix. Proceed.
  • RESULT: FAILURE | ... → Report the failure to the user and stop.

Step 2.5: Confirm Start

Use AskUserQuestion:

> "[identifier] — plan ready. Proceed to implementation?" > - Option 1: "Yes, begin implementation" > - Option 2: "Stop here — I'll review the plan first"

If "Stop here": Print the plan file path and stop:

Plan saved to:

To resume implementation later: /groundwork:implement-task

Step 3: Implement → implement-task

Call Skill(skill="groundwork:implement-task") with plan_file_path in the conversation context. Do NOT pass a task_id.

Parse the output:

  • RESULT: IMPLEMENTED | worktree_path= | branch= | base_branch= → Save values. Proceed.
  • RESULT: FAILURE | ... → Report failure to the user and stop.

Step 3.5: Optional Context Clear Pause

Use AskUserQuestion:

> "Implementation complete for [identifier]. Validation runs 9 reviewer agents next and can compound context. Clear context before validation?" > - Option 1: "Continue to validation now" > - Option 2: "Stop here — I'll clear and resume manually"

If "Continue to validation now": Proceed to Step 4.

If "Stop here": Print resume instructions and STOP:

## Paused before validation

Implementation is committed in:

  • Worktree: ``
  • Branch: ``
  • Base branch: ``

To resume validation in a clean context:

  1. Run /clear to clear Claude Code context
  2. cd
  3. Run /groundwork:validate

After validation passes, merge manually from the project root:

cd git checkout git merge --no-ff git worktree remove git branch -d

Step 4: Validate

  1. cd into the worktree path from Step 3
  2. Call: Skill(skill="groundwork:validate")
  3. The validate skill will run 9 verification agents in parallel and fix issues autonomously.

After validate completes:

  • All agents approved → Proceed to Step 5
  • Validation failed → Report failure and worktree location for investigation, stop
  • Stuck on recurring issue → Report the stuck finding and stop

Step 5: Merge Decision

From the project root (NOT the worktree), handle merge:

Use AskUserQuestion to ask:

> "Implementation and validation complete for [identifier]. Would you like me to merge this into [base-branch] now?" > - Option 1: "Yes, merge now" > - Option 2: "No, I'll merge manually later"

Wait for user response before proceeding.

If merging:

  1. Ensure you are in the project root (cd out of worktree if needed)
  2. Checkout base branch: git checkout
  3. Merge: git merge --no-ff -m "Merge : [Feature Title]"
  4. If success: Remove worktree and delete branch:

``bash git worktree remove .worktrees/ git branch -d ``

  1. If conflicts: Report conflicts and keep worktree for manual resolution

If not merging or conflicts occurred:

## Implementation Complete in Worktree

**Location:** .worktrees/
**Branch:** feature/

When ready to merge:
```bash
git checkout [base-branch]
git merge --no-ff 
git worktree remove .worktrees/
git branch -d 

To continue working:

cd .worktrees/

## Step 6: Report

Output implementation summary:

```markdown
## Feature Complete: [identifier]

**What was done:**
- [summary]

**Validation:** Passed ([N] iteration(s))

**Worktree status:** [Merged to  | Pending at .worktrees/]

Output the final result line:

RESULT: SUCCESS | [one-line summary]

Reference

Branch Naming

This skill uses feature/ prefix (not task/) to distinguish ad-hoc features from planned tasks:

  • Planned tasks: task/TASK-NNN
  • Ad-hoc features: feature/FEATURE-

Standalone Usage

This skill is designed for standalone use when:

  • No product specs exist
  • No task definitions exist
  • Quick prototyping is needed
  • Ad-hoc feature requests come in

For planned work with existing specs, use groundwork:work-on instead.

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.