Skip to content

feat(config): allow thinking/reasoning config per agent via micode.json#33

Merged
vtemian merged 2 commits intomainfrom
feat/thinking-config
Mar 10, 2026
Merged

feat(config): allow thinking/reasoning config per agent via micode.json#33
vtemian merged 2 commits intomainfrom
feat/thinking-config

Conversation

@vtemian
Copy link
Owner

@vtemian vtemian commented Mar 10, 2026

Summary

  • Users can now configure thinking per agent in micode.json (was silently dropped before)
  • Commander base thinking budget bumped from 32k → 64k tokens
  • Think mode hook ("think hard" keywords) bumped from 32k → 128k tokens

Example config

{
  "agents": {
    "commander": {
      "thinking": { "type": "enabled", "budgetTokens": 100000 }
    },
    "planner": {
      "thinking": { "type": "enabled", "budgetTokens": 64000 }
    }
  }
}

Fixes #21 — thanks @flipch for the suggestion!

vtemian added 2 commits March 10, 2026 10:40
- Add 'thinking' to SAFE_AGENT_PROPERTIES allowlist and AgentOverride type
- Bump commander base thinking budget from 32k to 64k tokens
- Bump think mode hook budget from 32k to 128k tokens (user-triggered)

Users can now configure per-agent thinking in micode.json:
{
  "agents": {
    "commander": { "thinking": { "type": "enabled", "budgetTokens": 100000 } }
  }
}

Fixes #21
Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

@vtemian vtemian merged commit ed9f56c into main Mar 10, 2026
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Reasoning Effort Tweak under micode.json?

1 participant