Install
$ agentstack add skill-mishrashardendu22-agent-skills-pull-request-management ✓ 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 Used
- ✓ 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
Pull Request Management & Creation Skill
This skill guides AI agents and contributors on how to create, format, and manage Pull Requests (PRs) in the GitHub Backup Automation System repository.
1. Core Pull Request Rules
> [!IMPORTANT] > LOCAL BRANCH-FIRST MANDATE: > * All work MUST be done on a dedicated local branch (//). Never develop directly on main.
> [!IMPORTANT] > STRICT SINGLE OPEN PR RULE (CONSOLIDATION MANDATE): > To prevent branch fragmentation, merge conflicts, and stale rebase overhead, there must be at most ONE active open Pull Request at any time. > Check First: Before creating a branch or opening a PR, agents MUST run gh pr list --state open. > Consolidate if an open PR exists: If an open PR already exists targeting main, DO NOT create a new PR or branch. Switch to the active PR's branch (git checkout ), pull latest, apply all new changes and commits to that branch, push, and optionally update the existing PR's title/labels/body (gh pr edit ). > New PR Only When Fleet Is Clean: Only create a new branch and open a new PR when gh pr list --state open returns zero open PRs.
> [!IMPORTANT] > EXPLICIT USER REQUEST REQUIRED: > AI agents MUST NEVER create Pull Requests automatically or as a default background action. > Agents are only authorized to push branches and open Pull Requests when specifically and explicitly instructed by the user (e.g. "create a PR to main").
> [!CAUTION] > TARGET BRANCH IS ALWAYS main ONLY: > All Pull Requests in this repository MUST target main. > Never open Pull Requests against dev, feature branches, or temporary staging branches. main is the sole integration branch.
2. Pre-PR Validation Checklist
Before opening any Pull Request, the agent/developer MUST ensure:
- Local Commits Clean: All intended changes are committed with Conventional Commit messages (
git statusis clean). - Pre-Commit Gate Passed: The full pre-commit pipeline has executed and passed without errors:
``bash make pre-commit ``
- Branch Pushed to Remote: The local branch is pushed to origin:
``bash git push -u origin ``
3. Pull Request Creation Runbook
Using GitHub CLI (gh)
When requested by the user to create a PR:
- Extract authentication token if needed:
``bash export GH_TOKEN=$(grep GITHUB_TOKEN_PERSONAL .env | cut -d'"' -f2) ``
- Push the local branch to the remote repository:
``bash git push -u origin ``
- Create the PR targeting
mainwith auto-assignment and conventional labels:
```bash gh pr create \ --base main \ --head \ --title "(): " \ --assignee "@me" \ --label "type/,area/,status/ready-for-review" \ --body "$(cat
### 🏗️ Subsystem Impact & Boundaries | Subsystem | Impacted? | Description of Changes | | :--- | :---: | :--- | | Go Backend (Fiber API & WebSockets) | [x] | | | Python Observatory (FastAPI & Agent) | [ ] | N/A | | Next.js Frontend (Turbopack) | [ ] | N/A | | Backup Worker CLI (SQLite) | [ ] | N/A |
### 🧪 Testing & Verification
- [x]
make pre-commitexecuted and passed all validations - [x] Unit, integration, and AI agent test suites passed (
make test) - [x] Static type checking passed (Pyright & TypeScript)
- [x] Production builds succeeded (Go binaries & Next.js Turbopack)
### 🛡️ Security & Documentation
- [x] Verified zero credentials/secrets committed
- [x] Relevant agent skills (
.agents/skills/) and docs updated - [x] Release notes added to
CHANGELOG.md
EOF )" ```
4. Post-Creation Confirmation
Once the PR is opened:
- Output the generated PR URL (e.g.
https://github.com/MishraShardendu22/github-backup-automation-system/pull/123). - Summarize the base branch (
main), head branch, assignees, labels, and included commit range. - See [
.agents/skills/github-pr-issue-automation/SKILL.md](.agents/skills/github-pr-issue-automation/SKILL.md) for full visual formatting guidelines.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: MishraShardendu22
- Source: MishraShardendu22/agent-skills
- License: MIT
- Homepage: https://github.mishrashardendu22.is-a.dev
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.