Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions self-development/agentconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,14 @@ spec:
## Standards
- Do not create duplicate issues — check existing issues first with `gh issue list`
- Keep changes minimal and focused
## Project Conventions
- Use Makefile targets instead of discovering build/test commands yourself:
- `make verify` — run all verification checks (lint, fmt, vet, etc.)
- `make update` — update all generated files
- `make test` — run all unit tests
- `make test-integration` — run integration tests
- `make build` — build binary
- Always try to add or improve tests when modifying code
- Logging conventions: start log messages with capital letters and do not end with punctuation
- Commit messages: do not include PR links in commit messages
11 changes: 11 additions & 0 deletions self-development/kelos-triage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,21 @@ spec:
name: kelos-agent
model: opus
type: claude-code
ttlSecondsAfterFinished: 3600
credentials:
type: oauth
secretRef:
name: kelos-credentials
podOverrides:
resources:
requests:
cpu: "250m"
memory: "512Mi"
ephemeral-storage: "2Gi"
limits:
cpu: "1"
memory: "2Gi"
ephemeral-storage: "2Gi"
agentConfigRef:
name: kelos-dev-agent
promptTemplate: |
Expand Down
4 changes: 2 additions & 2 deletions self-development/kelos-workers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ spec:
- kelos/needs-input
priorityLabels:
- priority/critical-urgent
- priority/imporant-soon
- priority/import-longterm
- priority/important-soon
- priority/important-longterm
- priority/backlog
maxConcurrency: 3
taskTemplate:
Expand Down