[codex] Fix product guide storage paths#238
Merged
0xmrpeter merged 1 commit intoOpen-ACP:mainfrom Apr 25, 2026
Merged
Conversation
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
<workspace>/.openacp/.~/.openacp/agents/and~/.openacp/cache/registry-cache.json.Why
The product guide is injected into the Assistant prompt, so stale paths can make the Assistant give users outdated configuration and storage advice. The current instance model stores config, sessions, logs, plugins, and instance agent definitions in the instance root, while only shared downloads/caches live under
~/.openacp/.Validation
node --check src/data/product-guide.tsgit diff --checkrg -n "Config file:|Installed agent definitions|logging\\.logDir|Session-specific logs|Data & Storage|OpenACP stores per-instance|~/.openacp/config\\.json|~/.openacp/logs|~/.openacp/agents\\.json|All data is stored in" src/data/product-guide.tssrc/core/instance/instance-context.ts,src/core/instance/__tests__/instance-context.test.ts, and the existing GitBook storage/config docs.Note: I did not run the full test suite because this checkout does not have
node_modulesinstalled; this change is limited to the static product-guide string and was syntax-checked with Node.