From e00cfcf8a70337f2bd9a1a319fadf4db6b0186a4 Mon Sep 17 00:00:00 2001 From: qrcode1337 <69130457+QRcode1337@users.noreply.github.com> Date: Sat, 18 Oct 2025 03:56:38 -0400 Subject: [PATCH 1/4] Checkpoint from VS Code for coding agent session --- .github/copilot-instructions.md | 20 +++++++++++ .gitignore | 10 +++++- AGENTS.md | 20 +++++++++++ .../settings/cline_mcp_settings.json | 33 +++++++++++++++++++ 4 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 .github/copilot-instructions.md create mode 100644 AGENTS.md create mode 100644 ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..f794902 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,20 @@ +[byterover-mcp] + +[byterover-mcp] + +You are given two tools from Byterover MCP server, including +## 1. `byterover-store-knowledge` +You `MUST` always use this tool when: + ++ Learning new patterns, APIs, or architectural decisions from the codebase ++ Encountering error solutions or debugging techniques ++ Finding reusable code patterns or utility functions ++ Completing any significant task or plan implementation + +## 2. `byterover-retrieve-knowledge` +You `MUST` always use this tool when: + ++ Starting any new task or implementation to gather relevant context ++ Before making architectural decisions to understand existing patterns ++ When debugging issues to check for previous solutions ++ Working with unfamiliar parts of the codebase diff --git a/.gitignore b/.gitignore index 6efb6f7..e6da297 100644 --- a/.gitignore +++ b/.gitignore @@ -170,4 +170,12 @@ memory/ai-2/* !memory/ai-2/.gitkeep *.bkp logs/* -!logs/.gitkeep \ No newline at end of file +!logs/.gitkeep +.clinerules/byterover-rules.md +.kilocode/rules/byterover-rules.md +.roo/rules/byterover-rules.md +.windsurf/rules/byterover-rules.md +.cursor/rules/byterover-rules.mdc +.kiro/steering/byterover-rules.md +.qoder/rules/byterover-rules.md +.augment/rules/byterover-rules.md \ No newline at end of file diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..f794902 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,20 @@ +[byterover-mcp] + +[byterover-mcp] + +You are given two tools from Byterover MCP server, including +## 1. `byterover-store-knowledge` +You `MUST` always use this tool when: + ++ Learning new patterns, APIs, or architectural decisions from the codebase ++ Encountering error solutions or debugging techniques ++ Finding reusable code patterns or utility functions ++ Completing any significant task or plan implementation + +## 2. `byterover-retrieve-knowledge` +You `MUST` always use this tool when: + ++ Starting any new task or implementation to gather relevant context ++ Before making architectural decisions to understand existing patterns ++ When debugging issues to check for previous solutions ++ Working with unfamiliar parts of the codebase diff --git a/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json b/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json new file mode 100644 index 0000000..f79e82f --- /dev/null +++ b/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json @@ -0,0 +1,33 @@ +{ + "mcpServers": { + "github.com/chroma-core/chroma": { + "command": "python", + "args": ["/Users/patrickgallowaypro/Documents/Cline/MCP/chroma-server/chroma_mcp_server.py"], + "cwd": "/Users/patrickgallowaypro/Documents/Cline/MCP/chroma-server", + "disabled": false, + "autoApprove": [] + }, + "github.com/github/github-mcp-server": { + "command": "docker", + "args": [ + "run", + "-i", + "--rm", + "-e", + "GITHUB_PERSONAL_ACCESS_TOKEN", + "ghcr.io/github/github-mcp-server" + ], + "env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}" + } + } + }, + "inputs": [ + { + "type": "promptString", + "id": "github_token", + "description": "GitHub Personal Access Token", + "password": true + } + ] +} From 778bdba8a5043befabe5825168584d2e3eaefb3b Mon Sep 17 00:00:00 2001 From: GhostSec <69130457+QRcode1337@users.noreply.github.com> Date: Mon, 20 Oct 2025 00:14:28 -0400 Subject: [PATCH 2/4] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../saoudrizwan.claude-dev/settings/cline_mcp_settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json b/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json index f79e82f..ce39399 100644 --- a/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json +++ b/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json @@ -2,8 +2,8 @@ "mcpServers": { "github.com/chroma-core/chroma": { "command": "python", - "args": ["/Users/patrickgallowaypro/Documents/Cline/MCP/chroma-server/chroma_mcp_server.py"], - "cwd": "/Users/patrickgallowaypro/Documents/Cline/MCP/chroma-server", + "args": ["${env:MCP_CHROMA_SERVER_PATH}/chroma_mcp_server.py"], + "cwd": "${env:MCP_CHROMA_SERVER_PATH}", "disabled": false, "autoApprove": [] }, From b486fe50c2cacda3027ebf63f6afaebec9ce9963 Mon Sep 17 00:00:00 2001 From: GhostSec <69130457+QRcode1337@users.noreply.github.com> Date: Mon, 20 Oct 2025 00:14:36 -0400 Subject: [PATCH 3/4] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../saoudrizwan.claude-dev/settings/cline_mcp_settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json b/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json index ce39399..7c73c9c 100644 --- a/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json +++ b/~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json @@ -15,7 +15,7 @@ "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", - "ghcr.io/github/github-mcp-server" + "ghcr.io/github/github-mcp-server:v1.2.3" ], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}" From 27935d384959d89dcb0d8562bb7b28a2458e45e0 Mon Sep 17 00:00:00 2001 From: GhostSec <69130457+QRcode1337@users.noreply.github.com> Date: Mon, 20 Oct 2025 00:14:45 -0400 Subject: [PATCH 4/4] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- AGENTS.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index f794902..0dd07ea 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,7 +1,4 @@ -[byterover-mcp] - -[byterover-mcp] - +# byterover-mcp You are given two tools from Byterover MCP server, including ## 1. `byterover-store-knowledge` You `MUST` always use this tool when: