feat(tracker): spawn sessions from eligible issues#423
Closed
anirudh5harma wants to merge 2 commits into
Closed
Conversation
Author
|
Closing this for now so the branch can go through local/peer review before opening a PR. |
Author
|
This closed duplicate was not ported as a separate PR. Its clean replacement is AgentWrapper/agent-orchestrator#2288, tracked by AgentWrapper/agent-orchestrator#2282. |
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
Issue intake can now start real worker sessions from a project's configured tracker backlog. Projects opt in with explicit eligibility rules, the daemon polls eligible open issues, and each issue gets at most one linked worker session even across daemon restarts.
The first phase is deliberately read-only toward the tracker: it does not post comments, change issue state, receive webhooks, or introduce broader provider policy. It also restores the minimal frontend verification plumbing needed to run the documented local gates on this branch.
Closes #422
Design Notes
project.config.trackerIntakeand stays disabled by default.sessions.issue_idfield instead of a parallel task table.Validation
npm run apinpm run lintcd backend && go test ./...cd backend && go test -race ./...cd backend && go vet ./...npm run frontend:typechecknpm --prefix frontend test -- --runnpm --prefix frontend run buildgit diff --check