feat(plugin): add ReMe integration for Codex - #399
Open
RerankerGuo wants to merge 2 commits into
Open
Conversation
Closes agentscope-ai#350 - Add plugins/codex/ with complete plugin structure: - .codex-plugin/plugin.json: Codex plugin manifest - reme/.mcp.json: MCP server connection config - reme/hooks/hooks.json: Stop hook configuration - reme/hooks/auto_memory.py: Session recording hook - reme/skills/reme-memory/SKILL.md: Memory recall skill - README.md: Installation and troubleshooting guide - Plugin follows the same architecture as the Claude Code plugin: - Connects to a shared ReMe MCP server (streamable-http) - Stop hook auto-records sessions via auto_memory_cc - SKILL.md provides recall patterns (semantic, topological, state) - Best-effort recording with daemonized execution - Uses CODEX_PLUGIN_ROOT env var (vs CLAUDE_PLUGIN_ROOT) - Supports REME_HOST/REME_PORT env overrides Test: not run (requires Codex runtime for integration testing)
Contributor
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
Auto-formatting fix required by add-trailing-comma pre-commit hook.
RerankerGuo
force-pushed
the
feat/issue-350-codex-plugin
branch
from
July 30, 2026 00:54
6879123 to
d1dd9ec
Compare
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
This PR addresses #350 by adding a complete ReMe plugin for Codex, following the same architecture as the existing Claude Code plugin.
Changes
New:
plugins/codex/directory structure.codex-plugin/plugin.json— Codex plugin manifest with metadatareme/.mcp.json— MCP server connection configuration (streamable-http)reme/hooks/hooks.json— Stop hook configuration for session recordingreme/hooks/auto_memory.py— Fire-and-forget session recording hook that callsauto_memory_ccreme/skills/reme-memory/SKILL.md— Memory recall skill with semantic/topological/state patternsREADME.md— Installation, configuration, and troubleshooting guideArchitecture
The plugin follows the same proven design as the Claude Code plugin:
Differences from Claude Code plugin
CODEX_PLUGIN_ROOTenv var instead ofCLAUDE_PLUGIN_ROOTTesting
Checklist