From 203b61351daa6834dfba323283b718637b920edd Mon Sep 17 00:00:00 2001 From: Marco Fogliatto <2962955+mfogliatto@users.noreply.github.com> Date: Sat, 31 Jan 2026 19:52:49 +0100 Subject: [PATCH] chore: update .gitignore and add MCP configuration - Add ignore patterns for Ralph autonomous agent files - Add ignore pattern for Claude Code local settings - Add .mcp.json for GitHub MCP server configuration --- .gitignore | 14 ++++++++++---- .mcp.json | 11 +++++++++++ .vscode/mcp.json | 8 ++++++++ 3 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 .mcp.json create mode 100644 .vscode/mcp.json diff --git a/.gitignore b/.gitignore index 670991d..4103cf3 100644 --- a/.gitignore +++ b/.gitignore @@ -150,8 +150,14 @@ tools/ # BenchmarkDotNet artifacts BenchmarkDotNet.Artifacts/ -# VS Code settings -.vscode/mcp.json - # Auto-generated package version file for playground -src/ReferenceCop.Package/package-version.txt \ No newline at end of file +src/ReferenceCop.Package/package-version.txt + +# Ralph autonomous agent files +scripts/ralph/ +prd.json +progress.txt +archive/ + +# Claude Code local settings +.claude/settings.local.json \ No newline at end of file diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..4eee0f0 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "github": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-github"], + "env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}" + } + } + } +} diff --git a/.vscode/mcp.json b/.vscode/mcp.json new file mode 100644 index 0000000..9955181 --- /dev/null +++ b/.vscode/mcp.json @@ -0,0 +1,8 @@ +{ + "servers": { + "github": { + "type": "http", + "url": "https://api.githubcopilot.com/mcp/" + } + } +}