Skip to content

Commit 5455d73

Browse files
committed
self-development: Use GPT-5.4 for triage
Update kelos-triage to use GPT-5.4 (Codex) instead of Opus (Claude Code) so that triage would be more objective on the issues created by Claude. Also update the self-development README to reflect the new model and add Codex credential setup instructions.
1 parent 1b49dfe commit 5455d73

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

self-development/README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,30 @@ The token needs these permissions:
5353

5454
Create a secret with your AI agent credentials:
5555

56-
**For OAuth (Claude Code):**
56+
**For Claude Code (OAuth):**
5757
```bash
5858
kubectl create secret generic kelos-credentials \
5959
--from-literal=CLAUDE_CODE_OAUTH_TOKEN=<your-claude-oauth-token>
6060
```
6161

62-
**For API Key:**
62+
**For Claude Code (API Key):**
6363
```bash
6464
kubectl create secret generic kelos-credentials \
6565
--from-literal=ANTHROPIC_API_KEY=<your-api-key>
6666
```
6767

68+
**For Codex (OAuth):**
69+
```bash
70+
kubectl create secret generic kelos-credentials \
71+
--from-literal=CODEX_AUTH_JSON=<your-codex-auth-json>
72+
```
73+
74+
**For Codex (API Key):**
75+
```bash
76+
kubectl create secret generic kelos-credentials \
77+
--from-literal=CODEX_API_KEY=<your-openai-api-key>
78+
```
79+
6880
## TaskSpawners
6981

7082
### kelos-workers.yaml
@@ -118,7 +130,7 @@ Picks up open GitHub issues labeled `needs-actor` and performs automated triage.
118130
| | |
119131
|---|---|
120132
| **Trigger** | GitHub Issues with `needs-actor` label |
121-
| **Model** | Opus |
133+
| **Model** | GPT-5.4 (Codex) |
122134
| **Concurrency** | 8 |
123135

124136
**For each issue, the agent:**
@@ -269,7 +281,7 @@ To adapt these examples for your own repository:
269281
```yaml
270282
spec:
271283
taskTemplate:
272-
model: sonnet # or opus for more complex tasks
284+
model: sonnet # or opus, gpt-5.4, etc. depending on the agent type
273285
```
274286

275287
## Feedback Loop Pattern

self-development/kelos-triage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ spec:
1616
taskTemplate:
1717
workspaceRef:
1818
name: kelos-agent
19-
model: opus
20-
type: claude-code
19+
model: gpt-5.4
20+
type: codex
2121
ttlSecondsAfterFinished: 3600
2222
credentials:
2323
type: oauth

0 commit comments

Comments
 (0)