AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

To Prd

skill-adrianfernandezalv-skills-to-prd · by adrianfernandezalv

Turn the current conversation context into a PRD and save it. Use when user wants to create a PRD from the current context.

— No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-adrianfernandezalv-skills-to-prd

✓ 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-adrianfernandezalv-skills-to-prd)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo 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 To Prd? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

This skill takes the current conversation context and codebase understanding and produces a PRD. Do NOT interview the user — just synthesize what you already know.

Output backends

The PRD is written to one backend, selected by output: in the project's CLAUDE.local.md:

  • output: github — default when the key is absent. Personal projects. The PRD becomes a GitHub tracking issue (the "Epic"), labelled epic, with the PRD as the issue body.
  • output: jira — work projects. The PRD becomes the description of a Jira ticket.
  • output: inkdrop — the PRD becomes a note in the project's Spec notebook.

If output: names a backend not listed here, stop and tell the user: backend not supported; supported: github, jira, inkdrop.

Setup

  1. Read CLAUDE.local.md at the project root to determine the backend (default github).
  2. Look for an existing PRD to update instead of duplicating:
  • github: gh issue list --label epic --search "".
  • jira: check for an existing Jira ticket and fetch it for context.
  • inkdrop: search-notes for an existing Spec note.

Process

  1. Explore the repo to understand the current state of the codebase, if you haven't already. Use the project's domain glossary vocabulary throughout the PRD, and respect any ADRs in the area you're touching.
  1. Sketch out the major modules you will need to build or modify. Actively look for opportunities to extract deep modules that can be tested in isolation.

A deep module (as opposed to a shallow module) is one which encapsulates a lot of functionality in a simple, testable interface which rarely changes.

Check with the user that these modules match their expectations, and which modules they want tests written for.

  1. Write the PRD using the template below, then save it following the publish rules.

Overview

The problem the user is facing and the context, from the user's perspective. 2-4 sentences.

Goals

  • The outcomes this delivers.

Non-goals

What is explicitly out of scope for this PRD.

Solution

The solution to the problem, from the user's perspective.

User Stories

A LONG, numbered list of user stories, in the format:

  1. As an , I want a , so that

This list should be extensive and cover all aspects of the feature.

Implementation Decisions

Modules to build/modify, their interfaces, technical clarifications, architectural decisions, schema changes, API contracts, specific interactions.

Do NOT include specific file paths or code snippets — they go stale fast. Exception: if a prototype produced a snippet that encodes a decision more precisely than prose can (state machine, reducer, schema, type shape), inline it within the relevant decision and note it came from a prototype. Trim to the decision-rich parts.

Testing Decisions

What makes a good test (test external behavior, not implementation details), which modules will be tested, and prior art for the tests in the codebase.

Open questions

  • [ ] Anything unresolved.

Tasks

(populated by /to-issues after breakdown)

References

Links to related issues, PRs, ADRs, or external docs.

Publish

github (default)

  1. Ensure the epic label exists (create on-demand, ignore error if present):

gh label create epic --color 5319E7 --description "Tracking issue / PRD" 2>/dev/null || true

  1. Write the PRD body to a temp file. The Epic does not get a milestone (it may span releases).
  2. If an Epic already exists for this feature: gh issue edit --body-file .

Otherwise: gh issue create --label epic --title "" --body-file .

  1. Report the created/updated issue number — /to-issues will attach sub-issues to it.

jira

  • If a Jira ticket already exists: update the ticket description with the PRD. Never add it as a comment.
  • If no ticket exists: create one via the Jira MCP tools with the PRD as the description.
  • Do not create a parallel note for the PRD.

inkdrop

  • Find the project's Spec notebook (under the project notebook in Solo Dev) via list-notebooks.
  • If a Spec note exists for this feature: update it. Otherwise create one. Title = feature name, no type/release tags, status = none.

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.