yugasun/aiops · Archived

to-prd

Synthesize the current conversation into a PRD and publish to the issue tracker. No interview — use what you already know.

First seen Jun 29, 2026

Installation

$ npx skills add yugasun/aiops --skill to-prd

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Also in this package

Other skills from yugasun/aiops · top by installs.

npx skills add yugasun/aiops

Browse all from yugasun/aiops

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,169 B
  • docs SUMMARY.md 138 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Synthesize context into a PRD. Do not interview — use the conversation and codebase.

Run /aiops-setup if docs/agents/issue-tracker.md or triage labels are missing.

Process

  1. Explore repo if needed. Use CONTEXT.md vocabulary and local ADRs.
  2. Sketch test seams — prefer existing, highest seam, fewest seams. Confirm with user.
  3. Write PRD (template below) and publish to issue tracker with ready-for-agent label.

PRD template

Problem Statement — user-facing problem.

Solution — user-facing solution.

User Stories — numbered As a <actor>, I want <feature>, so that <benefit> (extensive list).

Implementation Decisions — modules, interfaces, architecture, schema, API (no file paths; prototype snippets OK if they encode a decision).

Testing Decisions — what good tests look like, modules to test, prior art.

Out of Scope

Further Notes

Delta mode (brownfield changes)

When the PRD describes changes to an existing system (not a greenfield feature), use delta format instead of the full template above. Focus only on what changes:

# PRD: <slug> (delta)

## Context
One paragraph on what already exists and why it's changing.

## Changes

### ADDED
- New behavior or interface being introduced
- New modules, endpoints, or data structures

### MODIFIED
- [existing behavior] → [new behavior]
- [existing interface] → [updated interface]

### REMOVED
- Deprecated behavior being removed
- Modules or interfaces being deleted

## Impact
- Which existing modules are affected
- Migration path for breaking changes

## Testing
- What existing tests need updating
- New tests for added/modified behavior

## Out of Scope

When to use delta: if tech-spec.md references modifications to existing modules (not purely new code), prefer delta format. The conductor or planner should suggest delta when the architecture scan or design reveals significant existing code involvement.