From f3cafa80a844dd1a51e85a3251cf53096fc1dd14 Mon Sep 17 00:00:00 2001 From: Patryk Ciechanski Date: Thu, 12 Jun 2025 15:03:47 +0200 Subject: [PATCH] Add Claude Code configuration template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Provides example settings for Claude Code integration including: - MCP server permissions for GitHub, memory, and context7 - Enabled MCP JSON servers configuration - Development workflow tool permissions 🤖 Generated with Claude Code Co-Authored-By: Claude --- .claude/settings.example.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .claude/settings.example.json diff --git a/.claude/settings.example.json b/.claude/settings.example.json new file mode 100644 index 0000000..7804060 --- /dev/null +++ b/.claude/settings.example.json @@ -0,0 +1,35 @@ +{ + "permissions": { + "allow": [ + "mcp__context7__resolve-library-id", + "Bash(gh run list:*)", + "Bash(gh run view:*)", + "Bash(gh api:*)", + "Bash(gh workflow run:*)", + "Bash(gh pr view:*)", + "Bash(gh pr merge:*)", + "Bash(git stash:*)", + "Bash(git pull:*)", + "Bash(git add:*)", + "Bash(git commit:*)", + "Bash(git push:*)", + "Bash(git checkout:*)", + "mcp__memory__create_entities", + "mcp__memory__create_relations", + "mcp__memory__add_observations", + "mcp__memory__search_nodes", + "Bash(git remote:*)", + "Bash(git fetch:*)", + "Bash(ls:*)", + "Bash(git ls-tree:*)" + ], + "deny": [] + }, + "enabledMcpjsonServers": [ + "github", + "context7", + "memory", + "sequential-thinking", + "gemini" + ] +} \ No newline at end of file