fix(git-commit-push-pr): remove harness slug from badge table (#539)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trevin Chow
2026-04-08 23:30:43 -07:00
committed by GitHub
parent 2c05c43dc8
commit 044a035e77

View File

@@ -317,18 +317,18 @@ Append a badge footer to the PR description, separated by a `---` rule. Do not a
---
[![Compound Engineering](https://img.shields.io/badge/Built_with-Compound_Engineering-6366f1)](https://github.com/EveryInc/compound-engineering-plugin)
![HARNESS](https://img.shields.io/badge/HARNESS_SLUG-MODEL_SLUG-COLOR?logo=LOGO&logoColor=white)
![HARNESS](https://img.shields.io/badge/MODEL_SLUG-COLOR?logo=LOGO&logoColor=white)
```
Fill in at PR creation time using the harness and model lookup tables below.
Fill in at PR creation time using the harness lookup (for logo and color) and model slug below.
**Harness lookup:**
| Harness | `HARNESS_SLUG` | `LOGO` | `COLOR` |
|---------|---------------|--------|---------|
| Claude Code | `Claude_Code` | `claude` | `D97757` |
| Codex | `Codex` | (omit logo param) | `000000` |
| Gemini CLI | `Gemini_CLI` | `googlegemini` | `4285F4` |
| Harness | `LOGO` | `COLOR` |
|---------|--------|---------|
| Claude Code | `claude` | `D97757` |
| Codex | (omit logo param) | `000000` |
| Gemini CLI | `googlegemini` | `4285F4` |
**Model slug:** Replace spaces with underscores in the model name. Append context window and thinking level in parentheses if known, separated by commas. Examples:
@@ -336,6 +336,8 @@ Fill in at PR creation time using the harness and model lookup tables below.
- `GPT_5.4_(High)`
- `Sonnet_4.6_(200K)`
- `Opus_4.6` (if context and thinking level are unknown)
- `Gemini_3.1_Pro`
- `Gemini_3_Flash`
### Step 7: Create or update the PR
@@ -348,7 +350,7 @@ PR description here
---
[![Compound Engineering](https://img.shields.io/badge/Built_with-Compound_Engineering-6366f1)](https://github.com/EveryInc/compound-engineering-plugin)
![Claude Code](https://img.shields.io/badge/Claude_Code-Opus_4.6_(1M,_Extended_Thinking)-D97757?logo=claude&logoColor=white)
![Claude Code](https://img.shields.io/badge/Opus_4.6_(1M,_Extended_Thinking)-D97757?logo=claude&logoColor=white)
EOF
)"
```