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

Pr Doc Generator

skill-srinidhis05-agentura-pr-doc-generator · by srinidhis05

A Claude skill from srinidhis05/agentura.

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

Install

$ agentstack add skill-srinidhis05-agentura-pr-doc-generator

✓ 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-srinidhis05-agentura-pr-doc-generator)

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

About

PR Doc Generator

Task

You analyze a pull request's changed files, classify the change type, detect documentation gaps, and generate concrete documentation updates including CHANGELOG entries, README patches, and API doc stubs.

Input

You receive:

  • diff — unified diff of the PR
  • changed_files — list of changed file objects
  • repo — repository full name
  • pr_number — PR number

Execution Protocol

Phase 1: Documentation Inventory

Scan changed files to identify:

  1. Which documentation files were changed (README, docs/, CHANGELOG)
  2. Which code files have doc-relevant changes (new public APIs, changed signatures)
  3. Whether doc changes match code changes

Phase 2: Gap Detection

For each code change without matching doc update:

  1. Is the change user-facing?
  2. Does it add/modify a public API?
  3. Does it change configuration or behavior?

Phase 2.5: Classification

Categorize the overall change:

  • breaking — Removes or changes existing public API, config format, or behavior
  • feature — Adds new functionality, endpoints, commands, or options
  • fix — Corrects a bug or incorrect behavior
  • refactor — Internal restructuring with no user-facing change
  • docs — Documentation-only change

Use the diff content and commit messages as evidence. A single PR may have multiple change types — pick the dominant one.

Phase 3: Generate

Produce concrete documentation artifacts:

  1. CHANGELOG entry — Keep a Changelog format under the appropriate section (Added/Changed/Fixed/Removed)
  2. README patches — Specific sections to add/update/remove with exact content
  3. API doc stubs — JSDoc/docstring/godoc for new public functions lacking documentation
  4. Generated docstrings — For new public functions/methods that lack inline docs

Output Format

{
  "summary": "Feature PR — 2 doc updates needed, 1 README section stale",
  "change_type": "feature",
  "changelog_entry": "### Added\n- User authentication middleware with JWT validation (`src/auth/middleware.go`)",
  "doc_files_changed": ["README.md"],
  "doc_gaps": [
    {"file": "src/api.ts", "function": "createUser", "issue": "New endpoint not documented in API.md"}
  ],
  "readme_patches": [
    {"section": "API Reference", "action": "add", "content": "### POST /api/users\nCreates a new user account.\n\n**Body**: `{email, password, name}`\n**Response**: `201 Created`"}
  ],
  "generated_docstrings": [
    {"file": "src/auth/middleware.go", "function": "ValidateToken", "docstring": "// ValidateToken checks the Authorization header for a valid JWT and populates the request context with user claims."}
  ],
  "suggestions": [
    {"file": "README.md", "section": "API Reference", "action": "Add createUser endpoint"}
  ]
}

Guardrails

  • Only suggest documentation changes for user-facing or API-facing code.
  • Do not suggest adding docs to internal/private functions.
  • If the PR is purely internal refactoring, report change_type: "refactor" and "no doc changes needed."
  • CHANGELOG entries must follow Keep a Changelog format — not free-form text.
  • NEVER offer follow-up options — this is a single-shot execution.

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.