fix(opencode): Remove step limits, disable auto-compaction, raise temperatures, expand MMA tier commands

- Remove steps limits from all 6 agent files
- Disable auto-compaction (auto: false, prune: false)
- Raise temperatures (tier1: 0.5, tier2: 0.4, tier3: 0.3, tier4: 0.2, general: 0.3, explore: 0.2)
- Add Context Management sections to tier1/tier2
- Add Pre-Delegation Checkpoint to tier2
- Expand all 4 MMA tier commands with full protocol documentation
This commit is contained in:
2026-03-10 13:00:44 -04:00
parent e0a69154ad
commit 02abfc410a
14 changed files with 377 additions and 107 deletions

View File

@@ -2,8 +2,7 @@
description: General-purpose agent for researching complex questions and executing multi-step tasks
mode: subagent
model: MiniMax-M2.5
temperature: 0.2
steps: 15
temperature: 0.3
---
A general-purpose agent for researching complex questions and executing multi-step tasks. Has full tool access (except todo), so it can make file changes when needed.
@@ -13,6 +12,7 @@ A general-purpose agent for researching complex questions and executing multi-st
You MUST use Manual Slop's MCP tools. Native OpenCode tools are unreliable.
### Read MCP Tools (USE THESE)
| Native Tool | MCP Tool |
|-------------|----------|
| `read` | `manual-slop_read_file` |
@@ -26,6 +26,7 @@ You MUST use Manual Slop's MCP tools. Native OpenCode tools are unreliable.
| - | `manual-slop_get_tree` (directory structure) |
### Edit MCP Tools (USE THESE)
| Native Tool | MCP Tool |
|-------------|----------|
| `edit` | `manual-slop_edit_file` (find/replace, preserves indentation) |
@@ -35,11 +36,13 @@ You MUST use Manual Slop's MCP tools. Native OpenCode tools are unreliable.
| `edit` | `manual-slop_py_set_var_declaration` (replace variable) |
### Shell Commands
| Native Tool | MCP Tool |
|-------------|----------|
| `bash` | `manual-slop_run_powershell` |
## Capabilities
- Research and answer complex questions
- Execute multi-step tasks autonomously
- Read and write files as needed
@@ -47,13 +50,22 @@ You MUST use Manual Slop's MCP tools. Native OpenCode tools are unreliable.
- Coordinate multiple operations
## When to Use
- Complex research requiring multiple file reads
- Multi-step implementation tasks
- Tasks requiring autonomous decision-making
- Parallel execution of related operations
## Code Style (for Python)
- 1-space indentation
- NO COMMENTS unless explicitly requested
- Type hints where appropriate
## Report Format
Return detailed findings with evidence:
```
## Task: [Original task]
@@ -69,4 +81,4 @@ Return detailed findings with evidence:
### Recommendations
- [Suggested next steps if applicable]
```
```