This commit is contained in:
MaKarin
2026-04-06 12:50:46 +03:00
commit 73ddb1a948
155 changed files with 26688 additions and 0 deletions

25
.claude/config.toml Normal file
View File

@@ -0,0 +1,25 @@
# 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" }