Install
$ agentstack add skill-etr-groundwork-source-product-specs-from-code ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
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 →About
Sync Product Specs Skill
Keeps {{specs_dir}}/product_specs.md synchronized with product decisions made during sessions.
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).
- Proceed with the resolved project context. All
{{specs_dir}}/paths will resolve to the correct location.
File Locations
- Target: Product specs (may be single file or directory)
- Single file:
{{specs_dir}}/product_specs.md - Directory:
{{specs_dir}}/product_specs/(content split across files) - Context: Current session history
Detection: Check for single file first (takes precedence), then directory.
When to Trigger
This skill should activate when:
- User explicitly invokes
/groundwork:source-product-specs-from-code - Session involved product decisions (new features, requirement changes)
- User feedback changed scope or priorities
- New edge cases or requirements were discovered
Workflow Overview
- Analyze Session - Review product-relevant discussions
- Detect Changes - Identify PRD implications
- Propose Updates - Draft EARS requirements or modifications
- Apply Changes - Update document with user approval
Step 1: Analyze Session
Review the current session for:
New Requirements:
- "We also need to handle X"
- "What if the user does Y?"
- "Add support for Z"
Requirement Changes:
- "Actually, that should be 5 attempts, not 3"
- "Let's make that optional"
- "Remove the email notification"
Scope Changes:
- "Let's defer that to v2"
- "That's out of scope"
- "We need to add this for launch"
New Edge Cases:
- Error conditions discovered during implementation
- User feedback revealing gaps
- Integration constraints
Step 2: Detect Change Categories
| Category | Signal | Single file section | Directory mode file | |----------|--------|---------------------|---------------------| | New feature | Discussion of new capability | §3 Feature List (new subsection) | 03-features/.md (new file) | | New requirement | "System should..." statements | §3.X EARS Requirements | 03-features/.md (existing file) | | Requirement change | Modifying existing behavior | §3.X EARS Requirements (edit) | 03-features/.md (edit) | | NFR change | Performance, security, scale discussion | §2 Non-functional | 02-non-functional.md | | Scope change | "Out of scope" or "must have for launch" | §3.X In/Out of scope | 03-features/.md (edit) | | Open question | Unresolved product decision | §5 Open Questions | 05-open-questions.md | | Question resolved | Answer to existing OQ | §5 Open Questions (remove) | 05-open-questions.md (remove) |
Step 3: Propose Updates
For each detected change, propose a specific update:
## Proposed PRD Updates
### 1. New Requirement
**Trigger:** You discussed that artists should be warned before their quota expires.
**Proposed addition to §3.3 Monetization:**
- `PRD-MON-REQ-005` When artist quota falls below 10% remaining then the system shall send a warning notification via email.
---
### 2. Requirement Modification
**Trigger:** Changed impersonation lockout from N to 5 attempts.
**Current:**
- `PRD-IMP-REQ-008` When impersonation attempts exceed N per day by same user then the system shall lock account pending admin review.
**Proposed:**
- `PRD-IMP-REQ-008` When impersonation attempts exceed 5 per day by same user then the system shall lock account pending admin review.
---
### 3. New Open Question
**Trigger:** Unresolved discussion about handling rate limits.
**Proposed addition to §5:**
- `OQ-008` How should the system handle rate-limited users - queue requests or reject immediately?
---
### 4. Scope Change
**Trigger:** Multi-artist collaborative models deferred to v2.
**Proposed update to §3.1 Out of scope:**
Add: "Multi-artist collaborative models (deferred to v2)"
---
Approve these updates? (yes/no/modify)
Step 4: Apply Changes
On approval:
- Detect spec format - Check if PRD is single file or directory
- Read current content:
- Single file: Read
{{specs_dir}}/product_specs.md - Directory: Aggregate all
.mdfiles from{{specs_dir}}/product_specs/
- Route updates to appropriate files:
- Single file mode: Edit
{{specs_dir}}/product_specs.mddirectly - Directory mode: Route each update:
- Features with ID (e.g., PRD-AUTH-*) → Find or create in
{{specs_dir}}/product_specs/03-features/.md - Open questions →
{{specs_dir}}/product_specs/05-open-questions.md - NFR changes →
{{specs_dir}}/product_specs/02-non-functional.md - Updates to existing content → Find the file containing that content
- Maintain requirement ID sequence (find highest PRD-XXX-REQ-NNN, increment)
- Update "Last updated" timestamp
- Update "Doc status" if appropriate
Important:
- New requirements get the next available ID in their feature's sequence
- Never reuse deleted requirement IDs (maintain traceability)
- Preserve EARS format for all requirements
Step 4a: Auto-Split Check (single file mode only)
Skip this step if the PRD is already in directory mode.
After applying changes to the single-file PRD, check whether it should be split:
- Count lines:
wc -l {{specs_dir}}/product_specs.md - Count features: number of
### \d+\.\d+headings in the file
If lines >= 500 OR features >= 15:
- Invoke
Skill(skill="groundwork:split-specs")— this runs automatically with no user input needed. - After the split completes, include in the session summary: "The PRD was automatically split into directory format at
{{specs_dir}}/product_specs/."
If neither threshold is crossed, continue silently.
EARS Format Reminder
All requirements must follow EARS syntax:
| Pattern | Template | |---------|----------| | Event-Driven | When ` then the system shall | | State-Driven | While the system shall | | Unwanted | If then the system shall | | Optional | Where the system shall ` |
Change Detection Heuristics
Strong signals (likely PRD change):
- User explicitly states a requirement
- Edge case discovered that needs handling
- User feedback contradicting current spec
- "Must have for launch" statements
- Explicit scope decisions
Weak signals (maybe PRD change):
- Implementation difficulties (might be architecture, not requirements)
- Performance optimizations (might be NFR or architecture)
- UI/UX discussions (might be design, not requirements)
Focus on strong signals. For weak signals, ask: "Should this be captured as a product requirement, or is it an implementation/design detail?"
Session Summary Format
At session end, provide summary:
## PRD Sync Summary
**Session Date:** [date]
### Changes Detected:
1. [Change 1] → New requirement PRD-XXX-REQ-NNN
2. [Change 2] → Modified PRD-YYY-REQ-NNN
3. [Change 3] → Added open question OQ-NNN
4. [Change 4] → No PRD impact (implementation detail)
### PRD Document:
- [X] Updated with approved changes
- [ ] No changes needed
- [ ] Changes pending user review
### Requirement IDs Added/Modified:
- PRD-XXX-REQ-NNN (new)
- PRD-YYY-REQ-NNN (modified)
### Open Items:
- [Any unresolved product questions from session]
Interaction with Other Skills
This skill works in concert with:
/groundwork:design-product- For deliberate, interactive requirement creation/groundwork:source-architecture-from-code- PRD changes may trigger architecture updates
When both /groundwork:source-product-specs-from-code and /groundwork:source-architecture-from-code run:
- Run
/groundwork:source-product-specs-from-codefirst (product drives architecture) - Note any new requirements that may need architectural support
- Run
/groundwork:source-architecture-from-codewith awareness of PRD changes
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: etr
- Source: etr/groundwork
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.