All context file references in OpenAgents Control MUST use the standardized format:
@.opencode/context/path/to/file.md
This convention is required for the installation system to work correctly across local and global installations.
@.opencode/context/core/essential-patterns.md
@.opencode/context/project/project-context.md
@.opencode/context/security/auth.md
@context/core/patterns.md ❌ Missing .opencode prefix
@~/context/file.md ❌ Absolute path (breaks local installs)
@$CONTEXT_DIR/file.md ❌ Variables (can't be transformed)
../context/file.md ❌ Relative path (unreliable)
Users can install OpenAgents Control in two ways:
Local Install:
.opencode/
├── agent/
├── command/
└── context/
References work as: @.opencode/context/file.md (relative to current directory)
Global Install:
~/.config/opencode/
├── agent/
├── command/
└── context/
References need to be: @~/.config/opencode/context/file.md (absolute path)
The installation script automatically transforms references based on installation type:
# Local install (.opencode/)
@.opencode/context/test.md → @.opencode/context/test.md (no change)
# Global install (~/.config/opencode/)
@.opencode/context/test.md → @~/.config/opencode/context/test.md (transformed)
# Custom install (/usr/local/opencode/)
@.opencode/context/test.md → @/usr/local/opencode/context/test.md (transformed)
All files in the repository use the standard format:
# Example Agent
Load patterns from @.opencode/context/core/essential-patterns.md
When a user installs globally, the installer:
bash
sed -e "s|@\.opencode/context/|@${INSTALL_DIR}/context/|g" \
-e "s|\.opencode/context|${INSTALL_DIR}/context|g" file.md
After global install to ~/.config/opencode:
# Example Agent
Load patterns from @/Users/username/.config/opencode/context/core/essential-patterns.md
The transformation applies to EVERY file during installation:
.opencode/agent/*.md).opencode/agent/subagents/*.md).opencode/command/*.md).opencode/context/**/*.md)Both patterns are transformed:
Pattern 1: @ References (OpenCode syntax)
@.opencode/context/file.md → @/install/path/context/file.md
Pattern 2: Shell Commands
.opencode/context/file.md → /install/path/context/file.md
During development and testing, we discovered:
@context/, others used @.opencode/context/@$CONTEXT_DIR/file.md can't be reliably replaced../context/file.md broke when files moved@~/.config/opencode/context/ doesn't work for .opencode/With the standardized convention:
The installer determines if transformation is needed:
if [[ "$INSTALL_DIR" != ".opencode" ]] && [[ "$INSTALL_DIR" != *"/.opencode" ]]; then
# Global install detected → Transform paths
else
# Local install detected → Keep original paths
fi
sed -i.bak -e "s|@\.opencode/context/|@${expanded_path}/context/|g" \
-e "s|\.opencode/context|${expanded_path}/context|g" "$dest"
rm -f "${dest}.bak"
Explanation:
-i.bak - Edit in-place, create backupg flag - Replace ALL occurrencesAlways use the standard format:
# Good Examples ✅
@.opencode/context/core/essential-patterns.md
@.opencode/context/project/project-context.md
@.opencode/context/security/auth.md
# Bad Examples ❌
@context/file.md
@~/context/file.md
@$CONTEXT_DIR/file.md
../context/file.md
In agents:
Load context from @.opencode/context/core/essential-patterns.md
In commands:
Reference: @.opencode/context/project/project-context.md
In context files:
See also: @.opencode/context/security/auth.md
In shell commands:
!`ls .opencode/context/`
!`find .opencode/context -name "*.md"`
The repository includes a validation script:
./scripts/validation/validate-context-refs.sh
This checks all markdown files for:
@.opencode/context/ format@$VAR/)Check a file manually:
# Should only find @.opencode/context/ references
grep -E '@[^~$]' file.md | grep -v '@.opencode/context/'
# Should return nothing (empty result = good)
File: .opencode/agent/core/openagent.md
# OpenAgent
<context>
Load essential patterns from @.opencode/context/core/essential-patterns.md
Load project context from @.opencode/context/project/project-context.md
</context>
## Workflow
1. Analyze request
2. Check patterns in @.opencode/context/core/essential-patterns.md
3. Execute task
After global install to ~/.config/opencode:
# OpenAgent
<context>
Load essential patterns from @/Users/username/.config/opencode/context/core/essential-patterns.md
Load project context from @/Users/username/.config/opencode/context/project/project-context.md
</context>
## Workflow
1. Analyze request
2. Check patterns in @/Users/username/.config/opencode/context/core/essential-patterns.md
3. Execute task
File: .opencode/command/commit.md
# Commit Command
Reference patterns from @.opencode/context/core/essential-patterns.md
Check .opencode/context/project/project-context.md for commit conventions.
After global install to /usr/local/opencode:
# Commit Command
Reference patterns from @/usr/local/opencode/context/core/essential-patterns.md
Check /usr/local/opencode/context/project/project-context.md for commit conventions.
All context references MUST use:
@.opencode/context/path/to/file.md
Last Updated: 2024-11-19
Status: Required Convention
Validation: Automated via scripts/validation/validate-context-refs.sh