From 352d43c711b5069c451823426b7fbb10ddd2744c Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Mon, 20 Jul 2026 13:14:06 -0700 Subject: [PATCH] Use Codex-compatible url source for basecamp plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Codex 0.144.4 silently skips the github source type — its marketplace parser supports local, url, git-subdir, and npm only — so basecamp setup codex failed with "plugin basecamp was not found in marketplace 37signals". The url source is documented and supported by both Claude Code and Codex, so this single entry serves both agents. As a side effect, Claude Code now clones this public repo over HTTPS instead of the github-shorthand SSH default — no credentials needed. Mention Codex in the entry description while here. Claude-Session: https://claude.ai/code/session_01QzoKavmhTPzErRna2KkTKS --- .claude-plugin/marketplace.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 9f51ab8..488152f 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -8,10 +8,10 @@ "plugins": [ { "name": "basecamp", - "description": "Basecamp integration for Claude Code. Create todos, track work, link code to projects.", + "description": "Basecamp integration for Claude Code and Codex. Create todos, track work, link code to projects.", "source": { - "source": "github", - "repo": "basecamp/basecamp-cli" + "source": "url", + "url": "https://github.com/basecamp/basecamp-cli.git" }, "category": "productivity" },