From 4b05e2c95f76ec615646b4af7dfb4d23e6319183 Mon Sep 17 00:00:00 2001 From: m3tm3re
Date: Mon, 5 Jan 2026 12:05:39 +0100 Subject: [PATCH] beads test --- .beads/interactions.jsonl | 0 .beads/issues.jsonl | 2 ++ AGENTS.md | 26 ++++++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 .beads/interactions.jsonl create mode 100644 .beads/issues.jsonl diff --git a/.beads/interactions.jsonl b/.beads/interactions.jsonl new file mode 100644 index 0000000..e69de29 diff --git a/.beads/issues.jsonl b/.beads/issues.jsonl new file mode 100644 index 0000000..ae808af --- /dev/null +++ b/.beads/issues.jsonl @@ -0,0 +1,2 @@ +{"id":"nixpkgs-hrh","title":"projectDirs on rofi-project-switcher should be exported to users home-manager environment","status":"open","priority":2,"issue_type":"feature","created_at":"2026-01-05T11:46:43.640224459+01:00","created_by":"m3tam3re","updated_at":"2026-01-05T11:48:29.222863787+01:00"} +{"id":"nixpkgs-w3u","title":"projectDirs should support args, for example --agent \u003cagentname\u003e","description":"This means project directories need to be an attribute set and we also need to change the launch command to \"opencode \u003cdirectory name\u003e \u003carguments\u003e\".\n","status":"open","priority":2,"issue_type":"feature","created_at":"2026-01-05T11:56:13.844735432+01:00","created_by":"m3tam3re","updated_at":"2026-01-05T12:03:38.74441203+01:00"} diff --git a/AGENTS.md b/AGENTS.md index 0994895..a8c0bed 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -142,3 +142,29 @@ Types: `feat`, `fix`, `docs`, `style`, `refactor`, `chore` - **Ports module**: Different for NixOS vs HM (HM adds `generateEnvVars` option) - **Overlays**: `modifications` overlay uses `{prev}:` pattern, not `{final, prev}:` - **Dev shell tools**: `statix`, `deadnix` only available inside `nix develop` + +## Landing the Plane (Session Completion) + +**When ending a work session**, you MUST complete ALL steps below. Work is NOT complete until `git push` succeeds. + +**MANDATORY WORKFLOW:** + +1. **File issues for remaining work** - Create issues for anything that needs follow-up +2. **Run quality gates** (if code changed) - Tests, linters, builds +3. **Update issue status** - Close finished work, update in-progress items +4. **PUSH TO REMOTE** - This is MANDATORY: + ```bash + git pull --rebase + bd sync + git push + git status # MUST show "up to date with origin" + ``` +5. **Clean up** - Clear stashes, prune remote branches +6. **Verify** - All changes committed AND pushed +7. **Hand off** - Provide context for next session + +**CRITICAL RULES:** +- Work is NOT complete until `git push` succeeds +- NEVER stop before pushing - that leaves work stranded locally +- NEVER say "ready to push when you are" - YOU must push +- If push fails, resolve and retry until it succeeds