ソース情報
- リポジトリ
- nex-agi/weaver
- ソースの最終更新活動
- 2026年2月25日 03:33
- 検出された SKILL.md の言語
- 英語
- スター
- 17
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/nex-agi/weaver --skill github-prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Run the full Weaver provisioner regression test suite against the production service. Covers full_ft, LoRA, debug modes, and edge cases.
Address GitHub PR review comments. Navigate to the correct worktree, make fixes, push updates.
Review code changes against Weaver SDK project standards before committing. Works in any worktree.
SOC 職業分類に基づく
SKILL.md を表示中
| name | github-pr |
| description | Create a GitHub PR from a worktree branch. Use after committing changes. |
Changes committed via git-commit skill.
# Ensure we're in a worktree, not the main clone
git worktree list
pwd
BRANCH_NAME=$(git branch --show-current)
echo "Current branch: $BRANCH_NAME"
gh pr list --head "$BRANCH_NAME" --state open --repo nex-agi/weaver
If PR exists, show it with gh pr view and exit.
git push --set-upstream origin "$BRANCH_NAME"
# After rebase: git push --force-with-lease origin "$BRANCH_NAME"
gh pr create \
--repo nex-agi/weaver \
--base main \
--head "$BRANCH_NAME" \
--title "type(scope): description" \
--body "## Summary
- Key change 1
- Key change 2
## Testing
- [ ] Tests pass (`make test`)
- [ ] Linting clean (`make lint`)
- [ ] License headers present
## Related Issues
Fixes #ISSUE_NUMBER"
Auto-extract title/body from commit messages. No AI branding.
# Extract issue number from branch name if possible
ISSUE_NUM=$(echo "$BRANCH_NAME" | grep -oP 'issue-\K\d+')
if [ -n "$ISSUE_NUM" ]; then
gh issue edit "$ISSUE_NUM" --repo nex-agi/weaver \
--remove-label "status:in-progress" --add-label "status:review" 2>/dev/null || true
gh issue comment "$ISSUE_NUM" --repo nex-agi/weaver \
--body "✅ PR created: $(gh pr view --json url -q .url). Ready for review."
fi