From 2c0b670b3bf9d5dd39a62637570bfdc1bb530d20 Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Thu, 22 Jan 2026 17:53:56 +0100 Subject: [PATCH 1/2] updated AGENTS.md with instructions to create PRs --- AGENTS.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 3b400e7..074ae59 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -50,3 +50,16 @@ The server runs two HTTP servers: main API (default :8080) and metrics (default ### Database Migrations Migrations are defined as Go code in `database/migrations/` and registered in `migrations.Migrations`. They run automatically on database connection unless `DB_DONT_APPLY_SCHEMA` env var is set. + +## Implementation Workflow + +IMPORTANT: When asked to implement something, always follow through completely: +1.. Create a feature branch +- based on the latest `main` branch +- use descriptive branch names like `claude/issue-123-add-feature` +2. Make the code changes +3. Commit the changes +4. Push the branch +5. Create the PR with `gh pr create --title "..." --body "..."` and reference the issue number in the PR description (e.g., "Closes #123") + +Do NOT stop at providing links — complete the entire workflow automatically. From 50085dcd08b169fe4d7f908077ba05ac6bf6c8b0 Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Thu, 22 Jan 2026 17:55:53 +0100 Subject: [PATCH 2/2] Update AGENTS.md Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 074ae59..c27f753 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -54,7 +54,7 @@ Migrations are defined as Go code in `database/migrations/` and registered in `m ## Implementation Workflow IMPORTANT: When asked to implement something, always follow through completely: -1.. Create a feature branch +1. Create a feature branch - based on the latest `main` branch - use descriptive branch names like `claude/issue-123-add-feature` 2. Make the code changes