Install
$ agentstack add skill-srinidhis05-agentura-pr-doc-generator ✓ 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
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 PRchanged_files— list of changed file objectsrepo— repository full namepr_number— PR number
Execution Protocol
Phase 1: Documentation Inventory
Scan changed files to identify:
- Which documentation files were changed (README, docs/, CHANGELOG)
- Which code files have doc-relevant changes (new public APIs, changed signatures)
- Whether doc changes match code changes
Phase 2: Gap Detection
For each code change without matching doc update:
- Is the change user-facing?
- Does it add/modify a public API?
- 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:
- CHANGELOG entry — Keep a Changelog format under the appropriate section (Added/Changed/Fixed/Removed)
- README patches — Specific sections to add/update/remove with exact content
- API doc stubs — JSDoc/docstring/godoc for new public functions lacking documentation
- 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.
- Author: srinidhis05
- Source: srinidhis05/agentura
- License: Apache-2.0
- Homepage: https://agenturaai.tech
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.