Prepare for open source: docs, license, and robustness fixes - #1
Merged
Conversation
Add the files an open-source repo needs and harden the agent wrappers and orchestrator surfaced by a review pass. Docs & meta: - README.md: overview, two-arm pipeline, requirements, usage, options - LICENSE: MIT - CONTRIBUTING.md: dev setup and how to add an agent - .github/workflows/ci.yml: typecheck + lint on push/PR - package.json: repository/homepage/bugs/keywords metadata Fixes: - runner: capture diffs via execFileSync (no shell) with null-delimited filenames — removes a shell-injection path through untracked filenames; raise the diff buffer to 64MB - runner: await both arms with allSettled so a contamination/error in one arm no longer orphans the other's process while cleanup runs - claude/codex: guard stdin against EPIPE; escalate SIGTERM to SIGKILL - claude: report timeouts distinctly instead of a generic parse failure - codex: a timeout is no longer reported as success (partial result kept) - cursor: SIGKILL escalation and trailing-line flush on close - grok: never fail a run over best-effort token-metric reads - util: warn once when falling back to default pricing for an unknown model
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.
Gets the repo ready to open-source and hardens the agent wrappers/orchestrator based on a review pass.
Docs & meta
Fixes from review
execFileSync(no shell), null-delimited filenamesallSettlednpm run typecheckandnpm run lintboth pass.Notes
package.jsonprivate: true— it's a clone-and-run tool (nobin), so this prevents an accidentalnpm publish.