diff --git a/codex-skills/address-rebut-defer-iterate-all-edit-instructions/SKILL.md b/codex-skills/address-rebut-defer-iterate-all-edit-instructions/SKILL.md index 123078021..1747c2311 100644 --- a/codex-skills/address-rebut-defer-iterate-all-edit-instructions/SKILL.md +++ b/codex-skills/address-rebut-defer-iterate-all-edit-instructions/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/address-rebut-defer-iterate-all/SKILL.md b/codex-skills/address-rebut-defer-iterate-all/SKILL.md index 3a51e406f..0e1538104 100644 --- a/codex-skills/address-rebut-defer-iterate-all/SKILL.md +++ b/codex-skills/address-rebut-defer-iterate-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/address-rebut-defer-iterate/SKILL.md b/codex-skills/address-rebut-defer-iterate/SKILL.md index d62ab5257..3840f14c4 100644 --- a/codex-skills/address-rebut-defer-iterate/SKILL.md +++ b/codex-skills/address-rebut-defer-iterate/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/address-rebut-defer/SKILL.md b/codex-skills/address-rebut-defer/SKILL.md index cbab78ec8..b943b15af 100644 --- a/codex-skills/address-rebut-defer/SKILL.md +++ b/codex-skills/address-rebut-defer/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/adr/SKILL.md b/codex-skills/adr/SKILL.md index 21421820e..fd399347b 100644 --- a/codex-skills/adr/SKILL.md +++ b/codex-skills/adr/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/adri/SKILL.md b/codex-skills/adri/SKILL.md index 400556066..7242e7275 100644 --- a/codex-skills/adri/SKILL.md +++ b/codex-skills/adri/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/adria/SKILL.md b/codex-skills/adria/SKILL.md index 7057cfb1e..0c8d44e4e 100644 --- a/codex-skills/adria/SKILL.md +++ b/codex-skills/adria/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/agent-builder/SKILL.md b/codex-skills/agent-builder/SKILL.md index cd780c6f7..cd855130b 100644 --- a/codex-skills/agent-builder/SKILL.md +++ b/codex-skills/agent-builder/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ai-tells/SKILL.md b/codex-skills/ai-tells/SKILL.md index 5a3c7c271..0024c5e85 100644 --- a/codex-skills/ai-tells/SKILL.md +++ b/codex-skills/ai-tells/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/also/SKILL.md b/codex-skills/also/SKILL.md index d2f9ceeef..31a3023fc 100644 --- a/codex-skills/also/SKILL.md +++ b/codex-skills/also/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/always/SKILL.md b/codex-skills/always/SKILL.md index f3882a5da..4bac40b84 100644 --- a/codex-skills/always/SKILL.md +++ b/codex-skills/always/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/and/SKILL.md b/codex-skills/and/SKILL.md index 387ecdd86..7a96c3bf7 100644 --- a/codex-skills/and/SKILL.md +++ b/codex-skills/and/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ard/SKILL.md b/codex-skills/ard/SKILL.md index 0e6bcef83..bc8dd03a3 100644 --- a/codex-skills/ard/SKILL.md +++ b/codex-skills/ard/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ardi/SKILL.md b/codex-skills/ardi/SKILL.md index 330680fd2..c38cf92aa 100644 --- a/codex-skills/ardi/SKILL.md +++ b/codex-skills/ardi/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ardia/SKILL.md b/codex-skills/ardia/SKILL.md index 632eb49fd..b2f1bcd1c 100644 --- a/codex-skills/ardia/SKILL.md +++ b/codex-skills/ardia/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ardiaei/SKILL.md b/codex-skills/ardiaei/SKILL.md index 61727c801..138dd8539 100644 --- a/codex-skills/ardiaei/SKILL.md +++ b/codex-skills/ardiaei/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/assess-model-fit/SKILL.md b/codex-skills/assess-model-fit/SKILL.md index ceffa3cd2..1cbcba531 100644 --- a/codex-skills/assess-model-fit/SKILL.md +++ b/codex-skills/assess-model-fit/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/away/SKILL.md b/codex-skills/away/SKILL.md index 822b06d71..03be24b70 100644 --- a/codex-skills/away/SKILL.md +++ b/codex-skills/away/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/back/SKILL.md b/codex-skills/back/SKILL.md index 4712977f0..ac944a671 100644 --- a/codex-skills/back/SKILL.md +++ b/codex-skills/back/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/before/SKILL.md b/codex-skills/before/SKILL.md index a25300a58..e1da4ad75 100644 --- a/codex-skills/before/SKILL.md +++ b/codex-skills/before/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/brainstorm/SKILL.md b/codex-skills/brainstorm/SKILL.md index 81afb31b4..3a3292450 100644 --- a/codex-skills/brainstorm/SKILL.md +++ b/codex-skills/brainstorm/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ca/SKILL.md b/codex-skills/ca/SKILL.md index 4e44520ab..3dbf16920 100644 --- a/codex-skills/ca/SKILL.md +++ b/codex-skills/ca/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/cai/SKILL.md b/codex-skills/cai/SKILL.md index c3f55c2ba..d080c0ce0 100644 --- a/codex-skills/cai/SKILL.md +++ b/codex-skills/cai/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/cancel-superseded/SKILL.md b/codex-skills/cancel-superseded/SKILL.md index 19197930c..0f7ca6172 100644 --- a/codex-skills/cancel-superseded/SKILL.md +++ b/codex-skills/cancel-superseded/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/cascade/SKILL.md b/codex-skills/cascade/SKILL.md index d012f6055..398041c81 100644 --- a/codex-skills/cascade/SKILL.md +++ b/codex-skills/cascade/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/cb/SKILL.md b/codex-skills/cb/SKILL.md index 6129a508b..bc186dd1a 100644 --- a/codex-skills/cb/SKILL.md +++ b/codex-skills/cb/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/cdu/SKILL.md b/codex-skills/cdu/SKILL.md index d3d8eea69..421eec9ed 100644 --- a/codex-skills/cdu/SKILL.md +++ b/codex-skills/cdu/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/check-dependency-updates/SKILL.md b/codex-skills/check-dependency-updates/SKILL.md index 9ea714a45..8d9782659 100644 --- a/codex-skills/check-dependency-updates/SKILL.md +++ b/codex-skills/check-dependency-updates/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/check-history/SKILL.md b/codex-skills/check-history/SKILL.md index 010037bbf..111f0d0bf 100644 --- a/codex-skills/check-history/SKILL.md +++ b/codex-skills/check-history/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/check-info-quality/SKILL.md b/codex-skills/check-info-quality/SKILL.md index e7f004f80..6131e40ac 100644 --- a/codex-skills/check-info-quality/SKILL.md +++ b/codex-skills/check-info-quality/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/check-rendered-refs/SKILL.md b/codex-skills/check-rendered-refs/SKILL.md index 9058c4592..ef5ee7562 100644 --- a/codex-skills/check-rendered-refs/SKILL.md +++ b/codex-skills/check-rendered-refs/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/checkpoint/SKILL.md b/codex-skills/checkpoint/SKILL.md index 6d0fe7cc3..9fb01c7c5 100644 --- a/codex-skills/checkpoint/SKILL.md +++ b/codex-skills/checkpoint/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/chores/SKILL.md b/codex-skills/chores/SKILL.md index 3c10572bf..f360191fc 100644 --- a/codex-skills/chores/SKILL.md +++ b/codex-skills/chores/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ciq/SKILL.md b/codex-skills/ciq/SKILL.md index ae86dc584..131ff6f23 100644 --- a/codex-skills/ciq/SKILL.md +++ b/codex-skills/ciq/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/claim-pr/SKILL.md b/codex-skills/claim-pr/SKILL.md index 3592ef3e3..a9beffae2 100644 --- a/codex-skills/claim-pr/SKILL.md +++ b/codex-skills/claim-pr/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/claude-agent-workflow/SKILL.md b/codex-skills/claude-agent-workflow/SKILL.md index 37f78bf5f..8f0756d06 100644 --- a/codex-skills/claude-agent-workflow/SKILL.md +++ b/codex-skills/claude-agent-workflow/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/claude-review-workflow/SKILL.md b/codex-skills/claude-review-workflow/SKILL.md index 6be3447b0..97186a0ef 100644 --- a/codex-skills/claude-review-workflow/SKILL.md +++ b/codex-skills/claude-review-workflow/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/clean-branches/SKILL.md b/codex-skills/clean-branches/SKILL.md index 1f83c3cd0..f15e29531 100644 --- a/codex-skills/clean-branches/SKILL.md +++ b/codex-skills/clean-branches/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/clean-worktrees/SKILL.md b/codex-skills/clean-worktrees/SKILL.md index a4acbc287..14cde9967 100644 --- a/codex-skills/clean-worktrees/SKILL.md +++ b/codex-skills/clean-worktrees/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/clean/SKILL.md b/codex-skills/clean/SKILL.md index 3f7f0597d..2c3b9fd27 100644 --- a/codex-skills/clean/SKILL.md +++ b/codex-skills/clean/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/clear-all/SKILL.md b/codex-skills/clear-all/SKILL.md index dd736057a..cc2083173 100644 --- a/codex-skills/clear-all/SKILL.md +++ b/codex-skills/clear-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/compress-session/SKILL.md b/codex-skills/compress-session/SKILL.md index f7cb2ccbd..de071c18d 100644 --- a/codex-skills/compress-session/SKILL.md +++ b/codex-skills/compress-session/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/config-ai/SKILL.md b/codex-skills/config-ai/SKILL.md index c9dd62ef7..fb26b1351 100644 --- a/codex-skills/config-ai/SKILL.md +++ b/codex-skills/config-ai/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/configure-gitattributes/SKILL.md b/codex-skills/configure-gitattributes/SKILL.md index 34257faa4..514563f51 100644 --- a/codex-skills/configure-gitattributes/SKILL.md +++ b/codex-skills/configure-gitattributes/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/consolidate-memory/SKILL.md b/codex-skills/consolidate-memory/SKILL.md index 55d41312b..942018abd 100644 --- a/codex-skills/consolidate-memory/SKILL.md +++ b/codex-skills/consolidate-memory/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/consolidate-skills/SKILL.md b/codex-skills/consolidate-skills/SKILL.md index 0e01dd5b7..71f93c28f 100644 --- a/codex-skills/consolidate-skills/SKILL.md +++ b/codex-skills/consolidate-skills/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/convert-repo-format/SKILL.md b/codex-skills/convert-repo-format/SKILL.md index 96ab8440d..1fad8f111 100644 --- a/codex-skills/convert-repo-format/SKILL.md +++ b/codex-skills/convert-repo-format/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/crf/SKILL.md b/codex-skills/crf/SKILL.md index 0a7d92421..7a8072d7e 100644 --- a/codex-skills/crf/SKILL.md +++ b/codex-skills/crf/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/crr/SKILL.md b/codex-skills/crr/SKILL.md index 3a178ade6..844182674 100644 --- a/codex-skills/crr/SKILL.md +++ b/codex-skills/crr/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/cw/SKILL.md b/codex-skills/cw/SKILL.md index d299281e8..a7c9608f3 100644 --- a/codex-skills/cw/SKILL.md +++ b/codex-skills/cw/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/dc/SKILL.md b/codex-skills/dc/SKILL.md index a9c910706..5bab45e09 100644 --- a/codex-skills/dc/SKILL.md +++ b/codex-skills/dc/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/decompose-skill/SKILL.md b/codex-skills/decompose-skill/SKILL.md index 230f73a68..d4876b23c 100644 --- a/codex-skills/decompose-skill/SKILL.md +++ b/codex-skills/decompose-skill/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/deconflict-sessions/SKILL.md b/codex-skills/deconflict-sessions/SKILL.md index 834f8ce2c..bc6d9d082 100644 --- a/codex-skills/deconflict-sessions/SKILL.md +++ b/codex-skills/deconflict-sessions/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/defer-issue/SKILL.md b/codex-skills/defer-issue/SKILL.md index 1980c3f14..5c23bbf9c 100644 --- a/codex-skills/defer-issue/SKILL.md +++ b/codex-skills/defer-issue/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/delegate-to-codex/SKILL.md b/codex-skills/delegate-to-codex/SKILL.md index 3792fb1c3..ac5c443c2 100644 --- a/codex-skills/delegate-to-codex/SKILL.md +++ b/codex-skills/delegate-to-codex/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/dependabot/SKILL.md b/codex-skills/dependabot/SKILL.md index 6e43660d3..cc210afdc 100644 --- a/codex-skills/dependabot/SKILL.md +++ b/codex-skills/dependabot/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/detect-hypothetical-examples/SKILL.md b/codex-skills/detect-hypothetical-examples/SKILL.md index 00618eaa2..4ef38a1e8 100644 --- a/codex-skills/detect-hypothetical-examples/SKILL.md +++ b/codex-skills/detect-hypothetical-examples/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/detect-informal-definitions/SKILL.md b/codex-skills/detect-informal-definitions/SKILL.md index 8cf87e0d5..293fadc7a 100644 --- a/codex-skills/detect-informal-definitions/SKILL.md +++ b/codex-skills/detect-informal-definitions/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/discussions/SKILL.md b/codex-skills/discussions/SKILL.md index 866f15648..9972b2114 100644 --- a/codex-skills/discussions/SKILL.md +++ b/codex-skills/discussions/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/done/SKILL.md b/codex-skills/done/SKILL.md index 7dcdbe91e..6cced3b88 100644 --- a/codex-skills/done/SKILL.md +++ b/codex-skills/done/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/drive/SKILL.md b/codex-skills/drive/SKILL.md index 67ce9b3b5..85b018eb0 100644 --- a/codex-skills/drive/SKILL.md +++ b/codex-skills/drive/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/dtc/SKILL.md b/codex-skills/dtc/SKILL.md index d5d11b22b..df1043745 100644 --- a/codex-skills/dtc/SKILL.md +++ b/codex-skills/dtc/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/fa/SKILL.md b/codex-skills/fa/SKILL.md index e51c3094f..ba8e1fdea 100644 --- a/codex-skills/fa/SKILL.md +++ b/codex-skills/fa/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/fact-check-prose/SKILL.md b/codex-skills/fact-check-prose/SKILL.md index 4f21d432a..199707e55 100644 --- a/codex-skills/fact-check-prose/SKILL.md +++ b/codex-skills/fact-check-prose/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/fcp/SKILL.md b/codex-skills/fcp/SKILL.md index 8eeb9c022..79ce6d77f 100644 --- a/codex-skills/fcp/SKILL.md +++ b/codex-skills/fcp/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/fetch-all/SKILL.md b/codex-skills/fetch-all/SKILL.md index 0da35d173..0ff05b101 100644 --- a/codex-skills/fetch-all/SKILL.md +++ b/codex-skills/fetch-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ffr/SKILL.md b/codex-skills/ffr/SKILL.md index c8a2c091c..30d84ff6b 100644 --- a/codex-skills/ffr/SKILL.md +++ b/codex-skills/ffr/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/find-ai-tells/SKILL.md b/codex-skills/find-ai-tells/SKILL.md index 7a23a6ccf..1d440b026 100644 --- a/codex-skills/find-ai-tells/SKILL.md +++ b/codex-skills/find-ai-tells/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/find-duplicates/SKILL.md b/codex-skills/find-duplicates/SKILL.md index 6b83b2fd2..783bdefe6 100644 --- a/codex-skills/find-duplicates/SKILL.md +++ b/codex-skills/find-duplicates/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/find-overlap/SKILL.md b/codex-skills/find-overlap/SKILL.md index c004002b3..2402e13dc 100644 --- a/codex-skills/find-overlap/SKILL.md +++ b/codex-skills/find-overlap/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/first/SKILL.md b/codex-skills/first/SKILL.md index 5d14023e4..c1e4be065 100644 --- a/codex-skills/first/SKILL.md +++ b/codex-skills/first/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/fix-forward-references/SKILL.md b/codex-skills/fix-forward-references/SKILL.md index 781dea0ef..10506b297 100644 --- a/codex-skills/fix-forward-references/SKILL.md +++ b/codex-skills/fix-forward-references/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/gi/SKILL.md b/codex-skills/gi/SKILL.md index e5a395349..33bc147e7 100644 --- a/codex-skills/gi/SKILL.md +++ b/codex-skills/gi/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/gia/SKILL.md b/codex-skills/gia/SKILL.md index 7de38d2f9..c64d12a57 100644 --- a/codex-skills/gia/SKILL.md +++ b/codex-skills/gia/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/giardia/SKILL.md b/codex-skills/giardia/SKILL.md index 2f5a5e6b5..f678985c7 100644 --- a/codex-skills/giardia/SKILL.md +++ b/codex-skills/giardia/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/gii/SKILL.md b/codex-skills/gii/SKILL.md index a43218ae6..bc6e4a50a 100644 --- a/codex-skills/gii/SKILL.md +++ b/codex-skills/gii/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/gip/SKILL.md b/codex-skills/gip/SKILL.md index 68982c1fa..7dd5a03cd 100644 --- a/codex-skills/gip/SKILL.md +++ b/codex-skills/gip/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/gis/SKILL.md b/codex-skills/gis/SKILL.md index 1e0b91f2c..6581c809a 100644 --- a/codex-skills/gis/SKILL.md +++ b/codex-skills/gis/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/grab-issue/SKILL.md b/codex-skills/grab-issue/SKILL.md index 66a4898a3..8b70e411e 100644 --- a/codex-skills/grab-issue/SKILL.md +++ b/codex-skills/grab-issue/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/grab-issues-and-iterate-all/SKILL.md b/codex-skills/grab-issues-and-iterate-all/SKILL.md index 513b2f860..2c1a3ffce 100644 --- a/codex-skills/grab-issues-and-iterate-all/SKILL.md +++ b/codex-skills/grab-issues-and-iterate-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/grab-issues-in-parallel/SKILL.md b/codex-skills/grab-issues-in-parallel/SKILL.md index b8d64b285..5c350bc01 100644 --- a/codex-skills/grab-issues-in-parallel/SKILL.md +++ b/codex-skills/grab-issues-in-parallel/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/grade-work/SKILL.md b/codex-skills/grade-work/SKILL.md index 25d8be95c..f2dff0226 100644 --- a/codex-skills/grade-work/SKILL.md +++ b/codex-skills/grade-work/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/handoff/SKILL.md b/codex-skills/handoff/SKILL.md index 0f164eb70..b621856a1 100644 --- a/codex-skills/handoff/SKILL.md +++ b/codex-skills/handoff/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/heal-skill/SKILL.md b/codex-skills/heal-skill/SKILL.md index 12b218691..0d1ff6b7a 100644 --- a/codex-skills/heal-skill/SKILL.md +++ b/codex-skills/heal-skill/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/iterate-all/SKILL.md b/codex-skills/iterate-all/SKILL.md index 3e4c0cfee..980c115cf 100644 --- a/codex-skills/iterate-all/SKILL.md +++ b/codex-skills/iterate-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/iterate/SKILL.md b/codex-skills/iterate/SKILL.md index a89139c96..011d330d2 100644 --- a/codex-skills/iterate/SKILL.md +++ b/codex-skills/iterate/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/last/SKILL.md b/codex-skills/last/SKILL.md index 469fad9d6..8523d9e48 100644 --- a/codex-skills/last/SKILL.md +++ b/codex-skills/last/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/learn/SKILL.md b/codex-skills/learn/SKILL.md index c7c0bbf3e..8adca9560 100644 --- a/codex-skills/learn/SKILL.md +++ b/codex-skills/learn/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/link-skills/SKILL.md b/codex-skills/link-skills/SKILL.md index 4619b0b02..0dcb32c43 100644 --- a/codex-skills/link-skills/SKILL.md +++ b/codex-skills/link-skills/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/macroize/SKILL.md b/codex-skills/macroize/SKILL.md index eccd99961..c7c424640 100644 --- a/codex-skills/macroize/SKILL.md +++ b/codex-skills/macroize/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/maw/SKILL.md b/codex-skills/maw/SKILL.md index 38c0042f6..bbea810e3 100644 --- a/codex-skills/maw/SKILL.md +++ b/codex-skills/maw/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/memorize/SKILL.md b/codex-skills/memorize/SKILL.md index 268b49fb4..eeac59567 100644 --- a/codex-skills/memorize/SKILL.md +++ b/codex-skills/memorize/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/merge-at-will/SKILL.md b/codex-skills/merge-at-will/SKILL.md index f128be497..d299121a3 100644 --- a/codex-skills/merge-at-will/SKILL.md +++ b/codex-skills/merge-at-will/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/merge-it/SKILL.md b/codex-skills/merge-it/SKILL.md index 01576e354..8e35de3c7 100644 --- a/codex-skills/merge-it/SKILL.md +++ b/codex-skills/merge-it/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/merge-main/SKILL.md b/codex-skills/merge-main/SKILL.md index 1e7d82a3b..cc1551eb3 100644 --- a/codex-skills/merge-main/SKILL.md +++ b/codex-skills/merge-main/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/merge-skills/SKILL.md b/codex-skills/merge-skills/SKILL.md index b7163ca9c..c22d979db 100644 --- a/codex-skills/merge-skills/SKILL.md +++ b/codex-skills/merge-skills/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/merge-when-confident/SKILL.md b/codex-skills/merge-when-confident/SKILL.md index 0b3f1dd58..b5881bc89 100644 --- a/codex-skills/merge-when-confident/SKILL.md +++ b/codex-skills/merge-when-confident/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/merged/SKILL.md b/codex-skills/merged/SKILL.md index a9639116a..80c4ce0f9 100644 --- a/codex-skills/merged/SKILL.md +++ b/codex-skills/merged/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/migrate-discussion/SKILL.md b/codex-skills/migrate-discussion/SKILL.md index b4e7bcfa1..c8e02e8ec 100644 --- a/codex-skills/migrate-discussion/SKILL.md +++ b/codex-skills/migrate-discussion/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/mma/SKILL.md b/codex-skills/mma/SKILL.md index 5a5c55fb8..f667e22cb 100644 --- a/codex-skills/mma/SKILL.md +++ b/codex-skills/mma/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/model-fit/SKILL.md b/codex-skills/model-fit/SKILL.md index 432a0f983..53302d593 100644 --- a/codex-skills/model-fit/SKILL.md +++ b/codex-skills/model-fit/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/mwc/SKILL.md b/codex-skills/mwc/SKILL.md index 8d01989de..8863af585 100644 --- a/codex-skills/mwc/SKILL.md +++ b/codex-skills/mwc/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/next/SKILL.md b/codex-skills/next/SKILL.md index 2ca012f73..2914b3de3 100644 --- a/codex-skills/next/SKILL.md +++ b/codex-skills/next/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/oppo/SKILL.md b/codex-skills/oppo/SKILL.md index d68cbfebd..c6f92eb87 100644 --- a/codex-skills/oppo/SKILL.md +++ b/codex-skills/oppo/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/opposition-research/SKILL.md b/codex-skills/opposition-research/SKILL.md index 6b66c2725..7c943fb3f 100644 --- a/codex-skills/opposition-research/SKILL.md +++ b/codex-skills/opposition-research/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pd/SKILL.md b/codex-skills/pd/SKILL.md index 5738fedf1..3840292ef 100644 --- a/codex-skills/pd/SKILL.md +++ b/codex-skills/pd/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pending-decisions/SKILL.md b/codex-skills/pending-decisions/SKILL.md index 7fd7b0b5b..c062edae4 100644 --- a/codex-skills/pending-decisions/SKILL.md +++ b/codex-skills/pending-decisions/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/permission-check/SKILL.md b/codex-skills/permission-check/SKILL.md index c825aabb8..7491e173a 100644 --- a/codex-skills/permission-check/SKILL.md +++ b/codex-skills/permission-check/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ph/SKILL.md b/codex-skills/ph/SKILL.md index 24b6941e4..8143f1cf5 100644 --- a/codex-skills/ph/SKILL.md +++ b/codex-skills/ph/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/plan-review-session/SKILL.md b/codex-skills/plan-review-session/SKILL.md index 214658129..810c4e66a 100644 --- a/codex-skills/plan-review-session/SKILL.md +++ b/codex-skills/plan-review-session/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pm/SKILL.md b/codex-skills/pm/SKILL.md index f605926dc..58cc1a781 100644 --- a/codex-skills/pm/SKILL.md +++ b/codex-skills/pm/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pma/SKILL.md b/codex-skills/pma/SKILL.md index 506fa0bf5..ae20e71fc 100644 --- a/codex-skills/pma/SKILL.md +++ b/codex-skills/pma/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/post-merge/SKILL.md b/codex-skills/post-merge/SKILL.md index b2f588b0b..ab58dee60 100644 --- a/codex-skills/post-merge/SKILL.md +++ b/codex-skills/post-merge/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pr-on-claim/SKILL.md b/codex-skills/pr-on-claim/SKILL.md index 0e98783bb..92c2d90ce 100644 --- a/codex-skills/pr-on-claim/SKILL.md +++ b/codex-skills/pr-on-claim/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pr-status-all/SKILL.md b/codex-skills/pr-status-all/SKILL.md index 7f7fb8f33..26e819db6 100644 --- a/codex-skills/pr-status-all/SKILL.md +++ b/codex-skills/pr-status-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/pr-status/SKILL.md b/codex-skills/pr-status/SKILL.md index bcfe3dcf6..10ee59f34 100644 --- a/codex-skills/pr-status/SKILL.md +++ b/codex-skills/pr-status/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/prefer-upstream/SKILL.md b/codex-skills/prefer-upstream/SKILL.md index 755be3bfd..a9d36e9d6 100644 --- a/codex-skills/prefer-upstream/SKILL.md +++ b/codex-skills/prefer-upstream/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/promote-memory/SKILL.md b/codex-skills/promote-memory/SKILL.md index 5928fba6f..c03352727 100644 --- a/codex-skills/promote-memory/SKILL.md +++ b/codex-skills/promote-memory/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/prompt-me-all/SKILL.md b/codex-skills/prompt-me-all/SKILL.md index 12faf586a..26f63d3c3 100644 --- a/codex-skills/prompt-me-all/SKILL.md +++ b/codex-skills/prompt-me-all/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/prompt-me/SKILL.md b/codex-skills/prompt-me/SKILL.md index 557d548ac..58c81fb57 100644 --- a/codex-skills/prompt-me/SKILL.md +++ b/codex-skills/prompt-me/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/prune-worktrees/SKILL.md b/codex-skills/prune-worktrees/SKILL.md index d1d18ffeb..29575486d 100644 --- a/codex-skills/prune-worktrees/SKILL.md +++ b/codex-skills/prune-worktrees/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/prune/SKILL.md b/codex-skills/prune/SKILL.md index b9c55e092..fc75a0fb0 100644 --- a/codex-skills/prune/SKILL.md +++ b/codex-skills/prune/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/purge-hallucinations/SKILL.md b/codex-skills/purge-hallucinations/SKILL.md index 9b75d1893..abfec599b 100644 --- a/codex-skills/purge-hallucinations/SKILL.md +++ b/codex-skills/purge-hallucinations/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/push-memory/SKILL.md b/codex-skills/push-memory/SKILL.md index d2acca42a..ed4c2307a 100644 --- a/codex-skills/push-memory/SKILL.md +++ b/codex-skills/push-memory/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/push/SKILL.md b/codex-skills/push/SKILL.md index 325587aa5..395a5c1b3 100644 --- a/codex-skills/push/SKILL.md +++ b/codex-skills/push/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/r-pkg-check/SKILL.md b/codex-skills/r-pkg-check/SKILL.md index 12e41ccf9..239654162 100644 --- a/codex-skills/r-pkg-check/SKILL.md +++ b/codex-skills/r-pkg-check/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/r-pkg-cran-checklist/SKILL.md b/codex-skills/r-pkg-cran-checklist/SKILL.md index 32c7394e4..0025d2090 100644 --- a/codex-skills/r-pkg-cran-checklist/SKILL.md +++ b/codex-skills/r-pkg-cran-checklist/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/r-pkg-news/SKILL.md b/codex-skills/r-pkg-news/SKILL.md index 0b0b9aaea..ec704a54c 100644 --- a/codex-skills/r-pkg-news/SKILL.md +++ b/codex-skills/r-pkg-news/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/r-pkg-spellcheck/SKILL.md b/codex-skills/r-pkg-spellcheck/SKILL.md index 9c95550b4..0959db052 100644 --- a/codex-skills/r-pkg-spellcheck/SKILL.md +++ b/codex-skills/r-pkg-spellcheck/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/rc/SKILL.md b/codex-skills/rc/SKILL.md index 210ca4f09..5e661ebad 100644 --- a/codex-skills/rc/SKILL.md +++ b/codex-skills/rc/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/record-learnings/SKILL.md b/codex-skills/record-learnings/SKILL.md index f73aa6323..ee8c531b1 100644 --- a/codex-skills/record-learnings/SKILL.md +++ b/codex-skills/record-learnings/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/recover-followups/SKILL.md b/codex-skills/recover-followups/SKILL.md index a61c0e75a..86f00b614 100644 --- a/codex-skills/recover-followups/SKILL.md +++ b/codex-skills/recover-followups/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/release-notify/SKILL.md b/codex-skills/release-notify/SKILL.md index c153aa554..62c96755f 100644 --- a/codex-skills/release-notify/SKILL.md +++ b/codex-skills/release-notify/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/remember/SKILL.md b/codex-skills/remember/SKILL.md index d9be683ee..ce8282f69 100644 --- a/codex-skills/remember/SKILL.md +++ b/codex-skills/remember/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/reprexes/SKILL.md b/codex-skills/reprexes/SKILL.md index 85b172cb7..a1b7997c4 100644 --- a/codex-skills/reprexes/SKILL.md +++ b/codex-skills/reprexes/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/reproducibility-audit/SKILL.md b/codex-skills/reproducibility-audit/SKILL.md index e7d94141f..06cf021f0 100644 --- a/codex-skills/reproducibility-audit/SKILL.md +++ b/codex-skills/reproducibility-audit/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/request-pr-review/SKILL.md b/codex-skills/request-pr-review/SKILL.md index 0d15d2065..a1373d29a 100644 --- a/codex-skills/request-pr-review/SKILL.md +++ b/codex-skills/request-pr-review/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/rescue-closed/SKILL.md b/codex-skills/rescue-closed/SKILL.md index b1097dc98..a76ecd1ed 100644 --- a/codex-skills/rescue-closed/SKILL.md +++ b/codex-skills/rescue-closed/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/resolve-conflicts/SKILL.md b/codex-skills/resolve-conflicts/SKILL.md index 8aaf8269e..3d3e577e1 100644 --- a/codex-skills/resolve-conflicts/SKILL.md +++ b/codex-skills/resolve-conflicts/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/resolve-pr-threads/SKILL.md b/codex-skills/resolve-pr-threads/SKILL.md index 8f41b23ae..71ffde579 100644 --- a/codex-skills/resolve-pr-threads/SKILL.md +++ b/codex-skills/resolve-pr-threads/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/resync-branch/SKILL.md b/codex-skills/resync-branch/SKILL.md index d4de088ec..1b0e2c3fe 100644 --- a/codex-skills/resync-branch/SKILL.md +++ b/codex-skills/resync-branch/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/revive-closed/SKILL.md b/codex-skills/revive-closed/SKILL.md index 33482222e..7d2dd6c2d 100644 --- a/codex-skills/revive-closed/SKILL.md +++ b/codex-skills/revive-closed/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/rfu/SKILL.md b/codex-skills/rfu/SKILL.md index 795009b7d..c1c627417 100644 --- a/codex-skills/rfu/SKILL.md +++ b/codex-skills/rfu/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/rmc/SKILL.md b/codex-skills/rmc/SKILL.md index d1204fd3a..ba21bd940 100644 --- a/codex-skills/rmc/SKILL.md +++ b/codex-skills/rmc/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/scout-peers/SKILL.md b/codex-skills/scout-peers/SKILL.md index 12439ba06..4baebadb1 100644 --- a/codex-skills/scout-peers/SKILL.md +++ b/codex-skills/scout-peers/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/select-model/SKILL.md b/codex-skills/select-model/SKILL.md index 3705c0c63..e2d98b61e 100644 --- a/codex-skills/select-model/SKILL.md +++ b/codex-skills/select-model/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/send-upstream/SKILL.md b/codex-skills/send-upstream/SKILL.md index 3f1472b5a..4a537f68d 100644 --- a/codex-skills/send-upstream/SKILL.md +++ b/codex-skills/send-upstream/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/session-lock/SKILL.md b/codex-skills/session-lock/SKILL.md index 5e62ba569..2a8036c81 100644 --- a/codex-skills/session-lock/SKILL.md +++ b/codex-skills/session-lock/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/simplify/SKILL.md b/codex-skills/simplify/SKILL.md index db60723bd..54c2bb434 100644 --- a/codex-skills/simplify/SKILL.md +++ b/codex-skills/simplify/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/skill-audit/SKILL.md b/codex-skills/skill-audit/SKILL.md index 978d9ae7a..065774b43 100644 --- a/codex-skills/skill-audit/SKILL.md +++ b/codex-skills/skill-audit/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/skill-builder/SKILL.md b/codex-skills/skill-builder/SKILL.md index 1a67981d6..5fb82d22a 100644 --- a/codex-skills/skill-builder/SKILL.md +++ b/codex-skills/skill-builder/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/slide-tag/SKILL.md b/codex-skills/slide-tag/SKILL.md index 7dcf14b7e..d3e24fb94 100644 --- a/codex-skills/slide-tag/SKILL.md +++ b/codex-skills/slide-tag/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/split-concerns/SKILL.md b/codex-skills/split-concerns/SKILL.md index e0a15d3ac..da6e4dbae 100644 --- a/codex-skills/split-concerns/SKILL.md +++ b/codex-skills/split-concerns/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/spot-skill-opportunities/SKILL.md b/codex-skills/spot-skill-opportunities/SKILL.md index 096b37873..a1b7e9f6b 100644 --- a/codex-skills/spot-skill-opportunities/SKILL.md +++ b/codex-skills/spot-skill-opportunities/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/st/SKILL.md b/codex-skills/st/SKILL.md index c731cd84d..6baef5b44 100644 --- a/codex-skills/st/SKILL.md +++ b/codex-skills/st/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/stack-prs/SKILL.md b/codex-skills/stack-prs/SKILL.md index 06b7fbf38..d1a24d319 100644 --- a/codex-skills/stack-prs/SKILL.md +++ b/codex-skills/stack-prs/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/start-task/SKILL.md b/codex-skills/start-task/SKILL.md index 31857e228..f1fd01b5e 100644 --- a/codex-skills/start-task/SKILL.md +++ b/codex-skills/start-task/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/style/SKILL.md b/codex-skills/style/SKILL.md index 4d3488cdf..d73fe53e8 100644 --- a/codex-skills/style/SKILL.md +++ b/codex-skills/style/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/sup/SKILL.md b/codex-skills/sup/SKILL.md index 10e97019c..77d9475c7 100644 --- a/codex-skills/sup/SKILL.md +++ b/codex-skills/sup/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/sus/SKILL.md b/codex-skills/sus/SKILL.md index ef1853e42..130375ce2 100644 --- a/codex-skills/sus/SKILL.md +++ b/codex-skills/sus/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/sync-pr-branch/SKILL.md b/codex-skills/sync-pr-branch/SKILL.md index 012d16c4a..c87b3f27b 100644 --- a/codex-skills/sync-pr-branch/SKILL.md +++ b/codex-skills/sync-pr-branch/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/sync/SKILL.md b/codex-skills/sync/SKILL.md index 90ea4a7db..aa976b361 100644 --- a/codex-skills/sync/SKILL.md +++ b/codex-skills/sync/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/test/SKILL.md b/codex-skills/test/SKILL.md index ea8dc316b..793ec50a2 100644 --- a/codex-skills/test/SKILL.md +++ b/codex-skills/test/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/tidy/SKILL.md b/codex-skills/tidy/SKILL.md index bb6f636aa..bfcd0a8b2 100644 --- a/codex-skills/tidy/SKILL.md +++ b/codex-skills/tidy/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ts/SKILL.md b/codex-skills/ts/SKILL.md index 9c693a661..f13d9a4c8 100644 --- a/codex-skills/ts/SKILL.md +++ b/codex-skills/ts/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/ums/SKILL.md b/codex-skills/ums/SKILL.md index 536ed5895..20fb8d756 100644 --- a/codex-skills/ums/SKILL.md +++ b/codex-skills/ums/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/update-memories-and-skills/SKILL.md b/codex-skills/update-memories-and-skills/SKILL.md index 5242ffd13..4be86e93d 100644 --- a/codex-skills/update-memories-and-skills/SKILL.md +++ b/codex-skills/update-memories-and-skills/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/use-math-macros/SKILL.md b/codex-skills/use-math-macros/SKILL.md index 0466e08d9..818448a28 100644 --- a/codex-skills/use-math-macros/SKILL.md +++ b/codex-skills/use-math-macros/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/use-preferred-style/SKILL.md b/codex-skills/use-preferred-style/SKILL.md index 6dd7399e3..b96184e62 100644 --- a/codex-skills/use-preferred-style/SKILL.md +++ b/codex-skills/use-preferred-style/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/wait-for-results/SKILL.md b/codex-skills/wait-for-results/SKILL.md index ddb2402b2..07e1b35c1 100644 --- a/codex-skills/wait-for-results/SKILL.md +++ b/codex-skills/wait-for-results/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/workaround-watcher/SKILL.md b/codex-skills/workaround-watcher/SKILL.md index 0120fa95b..01b414928 100644 --- a/codex-skills/workaround-watcher/SKILL.md +++ b/codex-skills/workaround-watcher/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/codex-skills/wrap-up/SKILL.md b/codex-skills/wrap-up/SKILL.md index 026b563d3..2e709a737 100644 --- a/codex-skills/wrap-up/SKILL.md +++ b/codex-skills/wrap-up/SKILL.md @@ -66,4 +66,5 @@ run the CLI command. Full per-model reference: [tool-mappings.md](../../tool-map | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/memories/github.md b/memories/github.md index 6dd70c2ea..8601e3ea9 100644 --- a/memories/github.md +++ b/memories/github.md @@ -532,6 +532,26 @@ closed-issue references in multiple PR bodies, and stacking conflicts mid-ARDI. rendering the chapter locally (rme's own CLAUDE.md already names this fallback for "no preview has deployed yet"; it also applies when the preview exists but the sandbox can't reach it). + - **But try the `gh-pages` branch first --- the deployed HTML is usually + readable through the authenticated MCP tools even when the served site + isn't.** `rossjrw/pr-preview-action` commits each build to `gh-pages` + under `pr-preview/pr-/`, so + `mcp__github__get_file_contents` with `ref: refs/heads/gh-pages` and + `path: pr-preview/pr-/.html` returns the exact bytes the blocked + URL would have served. That reaches the *real rendered artifact*, which a + local re-render only approximates, and it needs no Quarto toolchain. + Large pages exceed the tool's token cap and get spilled to a file --- grep + that file rather than reading it whole, and diff byte counts across two + fetches to confirm you're looking at a genuinely new build rather than an + unchanged one. Check the branch's own commit log + (`mcp__github__list_commits` with `sha: gh-pages` --- the `LIST_COMMITS` + operation in [`tool-mappings.md`](../tool-mappings.md), verified by use in + the session below) to see which build is actually deployed before drawing + conclusions; a preview comment's timestamp can precede the deploy of the + commit you care about. + (`UCD-SERG/serocalculator#392`, 2026-07-25: used this to verify six new + topics appeared in a rendered altdoc sidebar, counting occurrences + before and after the fix, after both `curl` and `WebFetch` 403'd.) - Consequence: you CANNOT poll PR review/CI state from a background Monitor. Rely on `mcp__github__subscribe_pr_activity`, which delivers review comments and CI *failures* — but NOT CI success, new pushes, or merge-conflict diff --git a/memories/r-quarto.md b/memories/r-quarto.md index e537df2a1..fc1472261 100644 --- a/memories/r-quarto.md +++ b/memories/r-quarto.md @@ -527,6 +527,29 @@ Needs `lintr (>= 3.1.2)` for the `linter_level` argument. (Landed as covers the read). It's a flake (passes most runs), so a red `lint-changed-files` with no R lint output and a `gh_error`/`rate limit` traceback is this, not a code problem. (UCD-SERG/serocalculator#503, 2026-07.) +- **The same `lint-changed-files` shape has two silent blind spots that make a + green run weaker evidence than it looks --- both absent from + `lint-changed-lines`.** Neither produces an error; the check just passes + without having looked. + 1. **Unpaginated `gh::gh()` reads only the first 30 changed files.** The + `/pulls/{n}/files` endpoint defaults to 30 per page and `gh::gh()` doesn't + follow `Link: rel="next"` unless asked, so on a larger PR every file past + the 30th lands in the `setdiff(all_files, changed_files)` **exclusion** + list. + Fix: pass `.limit = Inf`. + 2. **`lintr::lint_package()` never scans repository-root scripts.** It covers + `R/`, `tests/`, `inst/`, `vignettes/`, `data-raw/`, and `demo/` --- so a + root-level `app.R` (a Shiny launcher, a deploy script) is unreachable no + matter how the exclusion list comes out. + `lint-changed-lines` computes its file set from the git diff, so it has + neither cutoff --- an independent argument for the branch-protection switch + beyond the incremental-adoption one. Don't treat a local + `lint_package()` run as equivalent to CI in either direction. + (UCD-SERG/serocalculator#392, 2026-07-25: a 38-file PR silently skipped 8 + files, missing two real `line_length_linter` hits in its own new test file; + `lint-changed-lines` separately caught an `undesirable_function_linter` hit + in root `app.R` that a local `lint_package()` had reported clean. + Filed as UCD-SERG/serocalculator#608.) ## jarl (Just Another R Linter) — `jarl.toml` fields lag the published docs - `jarl` (`etiennebacher/jarl`, installed via `etiennebacher/setup-jarl@vX` in @@ -643,6 +666,38 @@ Needs `lintr (>= 3.1.2)` for the `linter_level` argument. (Landed as copy-pasting the signature. Inline the literal value directly in the function signature instead. (d-morrison/altdoc#30.) +## altdoc keeps its reference topics in two independent hand-maintained lists + +An altdoc site lists each reference topic in two independent places, neither +generated from the other: + +1. `altdoc/reference.qmd` --- the "Package index" page body. +2. the `Reference` section of `altdoc/quarto_website.yml` --- the sidebar nav. + +Adding a function to one and not the other renders perfectly cleanly: the +topic shows on the index page but is unreachable from navigation (or the +reverse). No check catches it --- not `docs-check`, not the docs build, not +lint. The pkgdown -> altdoc migration makes this especially easy to hit, +since the old `pkgdown/_pkgdown.yml` held a *single* reference list, so +porting entries off it naturally updates only one of the two successors. + +Cross-check mechanically rather than by eye +(the [`algorithmatize-checks`](../shared/workflow/algorithmatize-checks.md) +rule): extract `](man/.qmd)` from `reference.qmd` and `- man/.qmd` +from `quarto_website.yml`, assert an empty symmetric difference, and assert a +backing `man/.Rd` exists for every entry. A stricter version flags +exported functions in `NAMESPACE` that appear in neither list. + +To verify against the *rendered* output, count occurrences of a topic name in +the built `reference.html`: an established topic appears **3** times (sidebar +entry + index link + index text), a sidebar-missing one only **2**. + +(`UCD-SERG/serocalculator#392`, 2026-07-25: six new decay-curve topics were +ported into `reference.qmd` only; caught before merge, fixed, and confirmed +2 -> 3 occurrences each in the deployed preview. +`UCD-SERG/serocalculator#610` proposes the cross-check as CI, possibly +belonging in `d-morrison/gha` since every altdoc repo shares the structure.) + ## Quarto HTML sites (build & layout gotchas) Hit while adding a mobile within-chapter TOC to `d-morrison/rme` (#929); apply to any Quarto website (rme, psw, qwt, …). diff --git a/shared/workflow/fully-clean.md b/shared/workflow/fully-clean.md index 877cba64f..6c4aeac2d 100644 --- a/shared/workflow/fully-clean.md +++ b/shared/workflow/fully-clean.md @@ -30,6 +30,21 @@ including gaining its own independent addition that collides with yours --- so re-verify the branch still merges cleanly against current `main` before reporting a PR ready, not just trust the last green run. +**Re-check version parity in that same sweep, not only conflict-freedom.** +[`sync-with-main`](sync-with-main.md) already covers comparing `DESCRIPTION` +versions *after merging `main` in*. +The case that rule misses is the one with no merge at all: `main` advances on +its own after your last review round and lands on the branch's exact version, +so an R package's `version-check` job (which requires the branch to *exceed* +`main`) goes from green to red with nothing to point at. +There is no conflict, no failing check yet, and no warning --- the last run +passed because `main` was still a version behind when it ran. +So the declare-ready sweep needs both `git merge-tree` for conflicts and a +direct version comparison; either one alone reports a PR ready that isn't. +(`UCD-SERG/serocalculator#392`, 2026-07-25: the final pre-declaration check +found `main` had reached `1.4.1.9016`, exactly the branch's version, minutes +after a clean `Ready for merge` verdict on an otherwise all-green head.) + **Threads:** at fully-clean, every **inline** review thread is resolved, and the only conversation left open is the final all-clear exchange --- the reviewer's all-clear comment and your reply to it. (The all-clear is usually a top-level PR comment, not an inline thread.) Check this mechanically rather than from a memory of which threads you replied to. Which field name to look for depends on the surface: the GitHub @@ -73,3 +88,10 @@ Three consequences for driving a PR to fully clean: The mechanics of detecting a refusal (it arrives as a posted review, not an API error, so the request call's success proves nothing) are in [`memories/github.md`](../../memories/github.md)'s GitHub MCP tools section. (`ucdavis/rampp#111`, 2026-07-24/25: Copilot refused three times across two heads for quota while `claude-review` posted genuine verdicts at both; the PR was reported clean --- and merged --- on `claude-review`'s verdict, with Copilot's absence stated in the ready-for-merge comment rather than papered over.) + +**A sixth case runs the other way from all five above: the review is genuine and complete, but the workflow posts the reviewer's own tool invocation instead of the review body.** +The comment opens with a literal `gh pr comment --repo / --body "$(cat <<'EOF'` and closes with `EOF\n)"`, wrapping a real, correct verdict as unrendered text --- the model emitted a shell command as its final response and the workflow posted that string verbatim. +Nothing is lost, and the same body usually also lands as a properly-rendered sibling comment, so the PR carries the review twice. +Two reasons not to shrug at it: a comment opening with a raw `gh` invocation reads as a broken run, so a human is likely to discount a review that actually passed; and a verdict-detecting guard script (`check-review-execution.sh`) is now matching against a shell command rather than prose, which can misfire into a needless stub-retry and a second full review's cost. +Read the body and extract the verdict from inside the heredoc rather than re-triggering. +(`UCD-SERG/serocalculator#392`, 2026-07-25; filed as [`d-morrison/gha#312`](https://github.com/d-morrison/gha/issues/312), which proposes unwrapping the pattern before posting.) diff --git a/tool-mappings.md b/tool-mappings.md index 72bb18bb6..116a55d16 100644 --- a/tool-mappings.md +++ b/tool-mappings.md @@ -62,4 +62,5 @@ operation to the equivalent GitHub MCP tool so any model can run a skill. | `CREATE_BRANCH` | Create a new branch (e.g. off the default branch). | `git switch -c origin/` | `mcp__github__create_branch` | | `DELETE_REF` | Delete a remote branch or tag ref. | `git push origin --delete (or git push origin :refs/tags/)` | (no GitHub MCP tool; use gh api -X DELETE repos///git/refs/heads/) | | `READ_FILE` | Read a file's contents from the repo. | `gh api repos///contents/` | `mcp__github__get_file_contents` | +| `LIST_COMMITS` | List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages to see which build a Pages branch currently serves). | `git log (or gh api repos///commits -f sha=)` | `mcp__github__list_commits` | | `WRITE_FILE` | Create or update file(s) on a branch in a single commit. | `git add && git commit -m "..." && git push` | `mcp__github__create_or_update_file (one file) / mcp__github__push_files (multiple)` | diff --git a/tool-mappings.yml b/tool-mappings.yml index bee343dfe..59a8fed1a 100644 --- a/tool-mappings.yml +++ b/tool-mappings.yml @@ -196,6 +196,12 @@ operations: description: Read a file's contents from the repo. cli: gh api repos///contents/ github_mcp: mcp__github__get_file_contents + - id: LIST_COMMITS + description: >- + List a branch's commits (pass the branch or ref as sha, e.g. sha=gh-pages + to see which build a Pages branch currently serves). + cli: git log (or gh api repos///commits -f sha=) + github_mcp: mcp__github__list_commits - id: WRITE_FILE description: Create or update file(s) on a branch in a single commit. cli: git add && git commit -m "..." && git push