ソース情報
- リポジトリ
- aAAaqwq/openclaw-team
- ソースの最終更新活動
- 2026年6月18日 02:18
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/aAAaqwq/openclaw-team --skill git-workflowコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | git-workflow |
| description | Git workflow: branches, PR, merge, cleanup |
Standard Git workflow: branches, commits, PR, merge
Always through PR:
git checkout -b <prefix>/<name>
# changes
git add <files>
git commit -m "Description"
git push -u origin <prefix>/<name>
gh pr create --title "..." --body "..."
gh pr merge --squash --delete-branch
git checkout main && git pull
| Change type | Prefix | Example |
|---|---|---|
| New feature | feature/ | feature/clientk-lookalikes |
| Data update | update/ | update/stream-cohort-2026-02-08 |
| Fix | fix/ | fix/crm-product-fk |
| New lead/contact | feat/ | feat/kyrylo-mazur-lead |
Always squash merge + delete branch:
gh pr merge --squash --delete-branch
--squash -- one clean commit in main--delete-branch -- automatically deletes the branch after mergegit checkout main
git pull origin main
<Action>: <what exactly was done>
Details if needed.
Co-Authored-By: Claude <noreply@anthropic.com>
Examples:
Add 24 stream participants (p-fb-018..041)Update task-042: expand stream outreach to 39 peopleFix CRM product FK consistencyIf old branches have accumulated:
# View all remote branches
gh api repos/your-org/<repo>/branches --jq '.[].name'
# Delete a specific one
gh api repos/your-org/<repo>/git/refs/heads/<branch> -X DELETE
| Repo | What's there | Prefix |
|---|---|---|
your-org/$PROJECT_ROOT | CRM + PM data | update/, feat/, fix/ |
your-org/claude-skills | Claude skills | update/, feature/ |
your-org/google-tools | Google API scripts | feature/, fix/ |
change-review -- CRM/PM data validation before PRcode-review -- code review for code PRs