> ## Documentation Index
> Fetch the complete documentation index at: https://tmbv.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Configs

> My personal agent configuration files for coding agents, including the main config and subagent configs.

export const BadgeLink = ({href, children = 'Learn More', size = 'md', color = 'gray', icon = 'link', stroke = true, external = false, className = 'linked-badge', ...badgeProps}) => {
  return <Badge size={size} color={color} stroke={stroke} icon={icon} className={className} {...badgeProps}>
			<a href={href} className="linked-badge-link" {...external ? {
    target: '_blank',
    rel: 'noopener noreferrer'
  } : {}}>
				{children}
			</a>
		</Badge>;
};

<Tabs>
  <Tab title="Codex">
    <Columns cols={3} gap="md">
      <BadgeLink href="https://learn.chatgpt.com/docs/config-file/config-reference" color="blue" icon="book">
        Config Reference
      </BadgeLink>

      <BadgeLink href="https://artificialanalysis.ai/?models=gpt-6-astra%2Cgpt-6-astra-xhigh%2Cgpt-6-astra-high%2Cgpt-6-astra-medium%2Cgpt-6-astra-low%2Cgpt-5-6-sol-xhigh%2Cgpt-5-6-sol%2Cgpt-5-6-sol-high%2Cgpt-5-6-sol-medium%2Cgpt-5-6-luna%2Cgpt-5-6-terra-medium%2Cgpt-5-6-terra%2Cgpt-5-6-terra-xhigh%2Cgpt-5-6-terra-high%2Cgpt-5-6-terra-low%2Cgpt-5-6-luna-xhigh#artificial-analysis-intelligence-index" color="green" icon="chart-line">
        Artificial Analysis
      </BadgeLink>
    </Columns>

    ```toml config.toml theme={"theme":{"light":"one-light","dark":"one-dark-pro"}}
    #:schema https://developers.openai.com/codex/config-schema.json

    model = "gpt-6-astra"

    model_context_window = 1000000
    model_auto_compact_token_limit = 750000
    model_auto_compact_token_limit_scope = "total"
    tool_output_token_limit = 8000
    project_doc_max_bytes = 65536

    model_reasoning_effort = "low"
    plan_mode_reasoning_effort = "xhigh"

    model_verbosity = "low"
    model_reasoning_summary = "concise"
    personality = "pragmatic"

    default_permissions = ":workspace"
    approval_policy = "on-request"
    approvals_reviewer = "auto_review"

    web_search = "live"

    [agents]
    enabled = true
    max_concurrent_threads_per_session = 6
    default_subagent_model = "gpt-5.6-luna"
    default_subagent_reasoning_effort = "max"

    [skills]
    max_context_tokens = 8000

    [tools]
    web_search = { context_size = "medium" }

    [tui]
    status_line = [
        "model",
        "used-tokens",
        "total-input-tokens",
        "total-output-tokens",
        "five-hour-limit",
        "weekly-limit",
        "context-remaining",
        "task-progress",
        "fast-mode"
    ]
    ```
  </Tab>
</Tabs>
