用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LedgerHQ/ts-libs --skill github-pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Import a single library from ledger-live into this ts-libs monorepo. Runs discovery, dep/PR audit, copies files, patches config, and verifies the build. Source repo: https://github.com/LedgerHQ/ledger-live
Format a conventional commit message for ts-libs. Use when writing or reviewing a commit message.
Create a changeset for modified packages in ts-libs. Use when preparing a PR or documenting package changes for release.
基于 SOC 职业分类
正在显示 SKILL.md
| name | github-pr |
| description | Create a well-formed draft PR for ts-libs. Covers changeset, commit check, PR body, and gh CLI invocation. |
| disable-model-invocation | true |
/git-workflow — verify branch name and commit formatgit diff develop..HEAD --stat — confirm scope of changes/create-changeset — add a changeset if any libs/* package changed### ✅ Checklist
- [x] Changeset attached (`pnpm changelog`)
- [{{TEST_CHECKBOX}}] Covered by automatic tests{{TEST_NOTE}}
- [x] Impact: {{IMPACT}}
### 📝 Description
{{DESCRIPTION}}
### ❓ Context
{{CONTEXT}}
---
### 🧐 For Reviewers
- Code aligns with requirements described in context
- No undocumented trade-offs or technical debt introduced
- Tests cover the meaningful cases
- Public API changes are intentional and backward-compatible (or breaking change documented)
TEST_CHECKBOX: x if tests exist, if not (explain why in TEST_NOTE)IMPACT: one-line description of what could regressDESCRIPTION: problem → solution, include code examples for API changesCONTEXT: Jira/GitHub link or plain descriptiongit push -u origin HEAD
gh pr create --draft \
--base develop \
--title "<type>(<scope>): <description>" \
--body "$(cat <<'EOF'
<generated body>
EOF
)"
Always use --draft. Always target develop.