fix(framework): make reload installs via the CLI from the local clone#299
Merged
Conversation
7900a79 to
3505d38
Compare
Reload's plugin-install flow pointed every tool's marketplace at the raw (Claude-syntax) checkout. That works for Claude but never produced valid Codex plugins, and the local install diverged from what ships at release. - Codex: build the checkout into a native tree with the aidd CLI (`framework build --target codex`, md -> toml) and install from it. - Claude: install from the raw repo, which is already native Claude format. - Copy the built Codex agent TOML into ~/.codex/agents/ — Codex loads agents only from there, not from plugin-bundled dirs. - Scope Claude marketplace ops to user: a bare `marketplace remove` strips the declaration from every scope, wiping the repo's project-scoped dogfooding. - dev-setup no longer registers the raw-repo marketplace; dev-sync owns it. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Explain that Claude installs from the raw repo while Codex installs from a CLI-built native tree, and note the Codex agent copy workaround. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3505d38 to
daec268
Compare
blafourcade
approved these changes
Jun 18, 2026
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.
Le bug
make reload(la commande de dev qui réinstalle le framework dans Claude Code et Codex depuis le clone local) enregistrait le marketplace de chaque outil sur le dépôt brut (syntaxe Claude). Ça marche pour Claude, mais Codex ne recevait jamais de plugins valides et ses agents n'étaient jamais chargés. L'install locale divergeait donc de ce qui est publié en release, et Codex était cassé.Le correctif
make reloadpasse en full-CLI depuis le clone local :aidd framework build --target codex, conversion md→toml) puis install depuis cet arbre.user, pour ne pas écraser le dogfooding projet.claude/settings.json(chore(framework): enable local AIDD plugins for repo dogfooding #247).~/.codex/agents/(Codex ne charge les agents que là).Build via
@ai-driven-dev/cli@latest(overridable avecAIDD_CLI_VERSIONsi une release régresse le build).Vérifié
make reload→ 6/6 pluginscodex:ok+claude:ok, 3 agents Codex installés, config dogfooding projet intacte.🤖 Generated with Claude Code