feat: subtext under pr title
This commit is contained in:
@@ -2,5 +2,11 @@
|
||||
"title": "feat(prompts): split context loading from execution workers",
|
||||
"state": "OPEN",
|
||||
"is_draft": true,
|
||||
"author": {
|
||||
"login": "leaferiksen",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/5151?v=4"
|
||||
},
|
||||
"base_branch_name": "main",
|
||||
"head_branch_name": "feat/worker-context-envelope",
|
||||
"body": "## Goal\n\nSplit context loading from execution workers so delegation stays predictable while this pull request is still in draft.\n\n### Why\n- workers should receive a compact payload\n- prompt packing should be testable without spawning a worker\n- retry policy should stay in one place\n\n### Proposed flow\n1. Load repository context once.\n2. Normalize file excerpts and metadata.\n3. Hand workers a stable execution envelope.\n\n```text\nContextLoader -> PromptAssembler -> WorkerRunner\n```\n\n> Draft status stays until we decide whether token counts belong in the worker response.\n\n### Questions\n- Should `ContextLoader` expose cache hit metrics?\n- Should worker retries carry the same prompt hash?\n- [ ] Add a regression test for interrupted workers"
|
||||
}
|
||||
|
||||
@@ -2,5 +2,11 @@
|
||||
"title": "chore(tokens): tighten dashboard spacing scale",
|
||||
"state": "OPEN",
|
||||
"is_draft": false,
|
||||
"author": {
|
||||
"login": "mariahops",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6161?v=4"
|
||||
},
|
||||
"base_branch_name": "main",
|
||||
"head_branch_name": "chore/dashboard-spacing-scale",
|
||||
"body": "## Summary\n\nTightens the dashboard spacing scale before the next visual refresh.\n\n### Updated tokens\n- `space.3` for compact sidebar gaps\n- `space.5` for section rhythm\n- `space.8` for page-level separation\n\n| Surface | Before | After |\n| --- | --- | --- |\n| Sidebar section gap | `space.6` | `space.5` |\n| Filter row padding | `space.4` | `space.3` |\n| Dashboard gutter | `space.7` | `space.6` |\n\n### Review notes\n- verify heading baselines still align with list content\n- compare 1280px and 1440px screenshots side by side\n- [ ] revisit compact mode once the nav collapse lands\n\n**Design intent:** make dense screens feel more deliberate without looking cramped."
|
||||
}
|
||||
|
||||
@@ -2,5 +2,11 @@
|
||||
"title": "docs(deploy): document manual failover steps",
|
||||
"state": "CLOSED",
|
||||
"is_draft": false,
|
||||
"author": {
|
||||
"login": "kennethnym",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/4242?v=4"
|
||||
},
|
||||
"base_branch_name": "main",
|
||||
"head_branch_name": "docs/manual-failover-steps",
|
||||
"body": "## Context\n\nDocuments the manual failover sequence for the staging stack while the automated recovery path is still unstable.\n\n### Draft runbook\n1. Put the primary deployment in maintenance mode.\n2. Promote the standby database.\n3. Repoint the app workers.\n4. Warm the cache before reopening traffic.\n\n```bash\n./scripts/failover promote-standby --env staging\n./scripts/failover repoint-workers --env staging\n./scripts/failover verify --env staging\n```\n\n> This pull request was closed because the final DNS validation steps were still changing underneath the runbook.\n\n### Remaining gaps\n- secrets rotation is still manual\n- rollback screenshots are missing\n- [ ] add the final post-cutover checklist"
|
||||
}
|
||||
|
||||
@@ -2,5 +2,11 @@
|
||||
"title": "feat(dashboard): hydrate issue pane from cached query state",
|
||||
"state": "OPEN",
|
||||
"is_draft": false,
|
||||
"author": {
|
||||
"login": "kennethnym",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/4242?v=4"
|
||||
},
|
||||
"base_branch_name": "main",
|
||||
"head_branch_name": "feat/cached-issue-pane",
|
||||
"body": "## Summary\n\nHydrates the dashboard issue pane from cached query state so selection and scroll position stay stable during refetches.\n\n### Rendering coverage\n- [x] headings\n- [x] bullet lists\n- [x] task list items\n- [x] inline code like `use_query`\n- [x] tables\n\n### Implementation sketch\n```rust\nlet cached = query_store.read(key);\nlet selection = cached.and_then(|data| data.selected_issue_id.clone());\n```\n\n| Case | Expected behavior |\n| --- | --- |\n| Cache hit | Keep the current selection pinned |\n| Cache miss | Fall back to the first visible item |\n| Refetch in flight | Preserve scroll position |\n\n### Follow-up\n- [ ] mirror the same cache behavior in the pull request detail pane\n- [ ] add a smoke test around keyboard navigation during refetch\n\nSee also the [query store](src/query.rs) integration notes."
|
||||
}
|
||||
|
||||
@@ -2,5 +2,11 @@
|
||||
"title": "feat(repo): add cached repository query for titlebar picker",
|
||||
"state": "OPEN",
|
||||
"is_draft": false,
|
||||
"author": {
|
||||
"login": "kennethnym",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/4242?v=4"
|
||||
},
|
||||
"base_branch_name": "main",
|
||||
"head_branch_name": "feat/cached-repo-picker",
|
||||
"body": "## Summary\n\nIntroduces a cached repository query so the titlebar picker can switch context without hitting GitHub on every open.\n\n### Why\n- reduces flicker while the picker opens\n- keeps recent repositories visible during short reconnects\n- avoids duplicate requests when the titlebar rerenders\n\n### Cache rules\n- explicit refresh invalidates the cached list\n- fresh network data still wins when available\n- empty responses should not overwrite a warm cache\n\n```text\nopen picker -> read cache -> render immediately -> refresh in background\n```\n\n### Follow-up\n1. Measure cache hit rate in debug builds.\n2. Add eviction telemetry.\n3. [ ] Consider persisting the last successful repository list across launches."
|
||||
}
|
||||
|
||||
@@ -2,5 +2,11 @@
|
||||
"title": "feat(calendar): ship release handoff checklist in weekly planner",
|
||||
"state": "MERGED",
|
||||
"is_draft": false,
|
||||
"author": {
|
||||
"login": "rorycraft",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7171?v=4"
|
||||
},
|
||||
"base_branch_name": "main",
|
||||
"head_branch_name": "feat/release-handoff-checklist",
|
||||
"body": "## Release handoff checklist\n\nAdds the release checklist views and closes the loop for the May rollout.\n\n### Included\n- launch readiness checklist for QA, docs, and release engineering\n- handoff status badges in the weekly planner\n- empty-state copy for weeks without a scheduled release\n\n| Stage | Owner | Status |\n| --- | --- | --- |\n| QA sign-off | `@mariahops` | Done |\n| Docs publish | `@rorycraft` | Done |\n| Release window confirm | `@kennethnym` | Done |\n\n### Verification\n1. Open a release week and confirm checklist sections render in order.\n2. Mark each handoff item complete and confirm the summary badge updates.\n3. Review the planner on a narrow viewport.\n\n> The merged version intentionally keeps the checklist readable even when one section has no pending items.\n\n- [x] QA sign-off state is visible\n- [x] Docs handoff state is visible\n- [ ] Add screenshot coverage for the compact layout"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user