Awesome-omni-skill pr-create
Create a PR following ICN conventions with invariants checklist, proper commit format, and change routing verification
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/pr-create" ~/.claude/skills/diegosouzapw-awesome-omni-skill-pr-create && rm -rf "$T"
manifest:
skills/development/pr-create/SKILL.mdsource content
Create a pull request following ICN conventions.
Steps
1. Analyze changes
Run these in parallel:
(untracked files)git status
(change summary)git diff --stat origin/main...HEAD
(commits on branch)git log --oneline origin/main..HEAD
(full diff)git diff origin/main...HEAD
2. Run verification
Before creating the PR, run the appropriate checks based on changed files (follow /verify routing). If checks fail, fix issues first.
3. Classify the change
Determine the type:
feat, fix, refactor, docs, test, chore, ci
Determine the scope from ICN scopes: core, identity, trust, net, gossip, ledger, ccl, governance, compute, gateway, rpc, store, obs, federation, privacy, security, crypto, sdk, web, deploy
4. Create PR with template
Use
gh pr create with this body structure:
<paste verification command output summary> ```## Summary <1-2 sentence description> ## Changes - <bullet list of changes> ## Motivation <why this change is needed> ## Testing - [ ] Unit tests added/updated - [ ] Integration tests pass - [ ] Manual testing: <describe> ## Invariants - [ ] No panics introduced in protocol paths - [ ] Determinism preserved - [ ] Canonical encodings unchanged (or versioned) - [ ] Trust gates not weakened - [ ] Kernel/app boundaries respected ## Verification
Documentation
- Docs updated (or N/A)
- API changes reflected in OpenAPI (or N/A)
### 5. Commit message format Title: `<type>(<scope>): <description>` (under 70 chars) ### Important - Base branch defaults to `main` unless `$ARGUMENTS` specifies otherwise - Push the branch with `-u` flag before creating PR - Include `Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>` in commits - Never create PRs without running verification first