Codex/design extensible issue tracking system zpx6pa#50
Closed
dgarson wants to merge 5 commits intocodex/design-extensible-issue-tracking-systemfrom
Closed
Conversation
…on, and complexity comparison - GitHub provider updateTicket now fetches existing issue before PATCH to merge metadata (classifications, references, relationships) instead of overwriting them. addRelationship/addReference previously wiped all existing metadata. - createTicket returns the result of updateTicket when closing on create, so the returned ticket reflects the correct status. - serializeTicket excludes body from YAML frontmatter since it is already stored as markdown content after the closing ---. - matchesQuery uses ordinal complexity ranking instead of lexicographic string comparison (e.g., "medium" > "high" was incorrectly true). - Added unit tests for body round-trip, complexity filtering, and GitHub metadata serialization/merge. https://claude.ai/code/session_0129tj2WT2v7pjiktvWx2WFR
TypeScript fixes: - send.components.test.ts: restore Parameters<> typing on loadConfig spread to fix TS2556 (unknown[] spread is not a tuple type) - gateway e2e test: add explicit 'return undefined' in mock implementations so they resolve Promise<undefined> rather than Promise<void>, which is not assignable to Promise<ReplyPayload | ReplyPayload[] | undefined> issue-tracking improvements: 1. Status fidelity (GitHub provider): persist the granular OpenClaw status (backlog/ready/in_progress/blocked/in_review/done/canceled) inside the openclaw-issue-meta comment so it survives round-trips through GitHub, rather than collapsing to the coarse open/closed mapping on every read 2. queryDag caps: local provider caps at 10 000 tickets; GitHub provider caps at 500 and also fixes per_page being clamped to the GitHub API maximum of 100 (previously Number.MAX_SAFE_INTEGER caused a 422 error) 3. Duplicate relationship prevention: both providers now deduplicate by (kind, ticketId) when appending relationships so calling addRelationship twice with the same edge is idempotent 4. Injectable lock strategy: extract TicketLockStrategy interface and FileTicketLockStrategy class so callers can supply an alternative (e.g. Redis SET NX, network advisory lock) for multi-machine deployments 5. New agent tools: issue_tracking_get and issue_tracking_update expose single-ticket fetch and field-level updates to agents; previously only create/query/link/dag were available https://claude.ai/code/session_0129tj2WT2v7pjiktvWx2WFR
Claude/review codex code i nz nh
dgarson
added a commit
that referenced
this pull request
Feb 22, 2026
CommandPalette: 30 commands, keyboard nav, highlight, shortcuts cheatsheet SupportCenter (Piper): 3 tabs (Help/Tickets/NewTicket), 8 articles, fixed TS dupe-role Sprint total: 51 views
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Describe the problem and fix in 2–5 bullets:
Change Type (select all)
Scope (select all touched areas)
Linked Issue/PR
User-visible / Behavior Changes
List user-visible changes (including defaults/config).
If none, write
None.Security Impact (required)
Yes/No)Yes/No)Yes/No)Yes/No)Yes/No)Yes, explain risk + mitigation:Repro + Verification
Environment
Steps
Expected
Actual
Evidence
Attach at least one:
Human Verification (required)
What you personally verified (not just CI), and how:
Compatibility / Migration
Yes/No)Yes/No)Yes/No)Failure Recovery (if this breaks)
Risks and Mitigations
List only real risks for this PR. Add/remove entries as needed. If none, write
None.