26 lines
1.4 KiB
TOML
26 lines
1.4 KiB
TOML
# Claude Code Configuration for KIS-TOiR
|
|
#
|
|
# This file mirrors `.codex/config.toml` in intent. Differences here should be
|
|
# format-level only for Claude Code compatibility, not workflow or policy drift.
|
|
# Claude and Codex use different config schemas; agent role definitions live in
|
|
# `.claude/agents/*.toml`, but the intended MCP/tool strategy matches `.codex/config.toml`.
|
|
|
|
model = "claude-opus-4-6"
|
|
|
|
[mcpServers]
|
|
github = { command = "npx", args = ["-y", "@modelcontextprotocol/server-github"] }
|
|
context7 = { command = "npx", args = ["-y", "@upstash/context7-mcp@latest"] }
|
|
exa = { command = "npx", args = ["-y", "@modelcontextprotocol/server-exa"] }
|
|
memory = { command = "npx", args = ["-y", "@modelcontextprotocol/server-memory"] }
|
|
playwright = { command = "npx", args = ["-y", "@playwright/mcp@latest", "--extension"] }
|
|
sequential-thinking = { command = "npx", args = ["-y", "@modelcontextprotocol/server-sequential-thinking"] }
|
|
|
|
[agents]
|
|
explorer = { config_file = "agents/explorer.toml" }
|
|
docs_researcher = { config_file = "agents/docs-researcher.toml" }
|
|
generator_prisma = { config_file = "agents/generator_prisma.toml" }
|
|
generator_nest_resources = { config_file = "agents/generator_nest_resources.toml" }
|
|
generator_react_admin_resources = { config_file = "agents/generator_react_admin_resources.toml" }
|
|
generator_data_access = { config_file = "agents/generator_data_access.toml" }
|
|
reviewer = { config_file = "agents/reviewer.toml" }
|