Skip to content

feat(SUP-2214): promote jarvos coding host adapters - #65

Closed
levineam wants to merge 1 commit into
mainfrom
SUP-2214/jarvos-coding-host-adapters
Closed

feat(SUP-2214): promote jarvos coding host adapters#65
levineam wants to merge 1 commit into
mainfrom
SUP-2214/jarvos-coding-host-adapters

Conversation

@levineam

Copy link
Copy Markdown
Owner

Summary

  • Promotes jarvos-coding into the public jarvOS repo as modules/jarvos-coding / @jarvos/coding.
  • Adds real thin Claude Code and Codex host adapter factories that register an MCP-style jarvos_coding_take_issue_to_done tool plus a jarvos-coding skill descriptor, then invoke the shared runTakeIssueToDone orchestrator.
  • Wires the module into root package files, module docs, structural smoke checks, and module smoke coverage.

This supersedes the descriptor-only host contract noted on SUP-2214. It also intentionally overlaps the still-open jarvOS PR #64 by carrying the public module promotion forward with the host-adapter substance required by SUP-2214.

Validation

  • npm test --prefix modules/jarvos-coding
  • node -e "const coding = require('./modules/jarvos-coding/src'); console.log(JSON.stringify({loaded: true, hasClaude: typeof coding.createClaudeCodeHostAdapter, hasCodex: typeof coding.createCodexHostAdapter, pkg: require('./modules/jarvos-coding/package.json').name}))"
  • node tests/modules-smoke-test.js
  • bash scripts/smoke-test.sh
  • npm pack --dry-run --json from modules/jarvos-coding
  • git diff --check
  • npm test

Paperclip: SUP-2214

@coderabbitai

coderabbitai Bot commented May 30, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@levineam, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 2 minutes and 10 seconds. Learn how PR review limits work.

Your organization has run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 687cb324-3aa6-4811-900e-681c55d37e1d

📥 Commits

Reviewing files that changed from the base of the PR and between fcb773e and 5058a5d.

📒 Files selected for processing (21)
  • modules/README.md
  • modules/jarvos-coding/README.md
  • modules/jarvos-coding/package.json
  • modules/jarvos-coding/src/adapters/hosts.js
  • modules/jarvos-coding/src/adapters/paperclip.js
  • modules/jarvos-coding/src/core/text.js
  • modules/jarvos-coding/src/features/orchestrator/index.js
  • modules/jarvos-coding/src/features/review-engine/index.js
  • modules/jarvos-coding/src/features/runtime-checkout-preflight/index.js
  • modules/jarvos-coding/src/features/session-state/index.js
  • modules/jarvos-coding/src/features/submission-gate/index.js
  • modules/jarvos-coding/src/features/triage/index.js
  • modules/jarvos-coding/src/features/triage/product-fit.js
  • modules/jarvos-coding/src/index.js
  • modules/jarvos-coding/src/lifecycle/policy.js
  • modules/jarvos-coding/src/worktree-ownership.js
  • modules/jarvos-coding/test/orchestrator-host-adapters.test.js
  • modules/jarvos-coding/test/session-state.test.js
  • package.json
  • scripts/smoke-test.sh
  • tests/modules-smoke-test.js
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch SUP-2214/jarvos-coding-host-adapters

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 5058a5d7ef

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

const issue = input.issue || {};
const identifier = issue.identifier || input.issueIdentifier;
if (!identifier || !branch) return false;
return String(branch).toLowerCase().includes(String(identifier).toLowerCase());

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Use exact issue tokens for branch hygiene

When the submission gate is evaluated for an issue whose identifier is a prefix of another issue, this substring check marks the wrong branch as issue-named; for example, issue.identifier: "SUP-22" with git.branch: "SUP-2214/foo" currently passes branch_hygiene and can make the gate ready for the wrong ticket. This should compare normalized issue identifiers as tokens, like the stricter branchSatisfiesIdentifier helper does.

Useful? React with 👍 / 👎.

title: options.title || 'jarvOS Coding',
description: options.description || 'Run the portable jarvOS coding orchestrator from this host.',
host,
invokes: DEFAULT_MCP_TOOL_NAME,

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Propagate custom MCP tool names into skills

If a host customizes options.mcpTool.name, the adapter registers that custom tool but the skill descriptor still advertises jarvos_coding_take_issue_to_done, so invoking the registered skill points at a different/nonexistent tool. The skill descriptor should use the actual tool descriptor name (or accept an invokes override) when createCodingHostAdapter builds both surfaces.

Useful? React with 👍 / 👎.

@levineam

Copy link
Copy Markdown
Owner Author

Superseded by #66, which lands the same complete jarvos-coding host-adapter module cleanly based on current main (post-#64). #66 merged.

@levineam levineam closed this May 30, 2026
@levineam
levineam deleted the SUP-2214/jarvos-coding-host-adapters branch May 30, 2026 14:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant