From 3554d32e2a133de4b83552981815c092a8960be5 Mon Sep 17 00:00:00 2001 From: ventselartur Date: Tue, 23 Jun 2026 20:36:41 +0200 Subject: [PATCH 1/2] Ignore personal AI tooling symlinked from bc-agentic-workspace BCApps' .gitignore lacked patterns for the Copilot/Claude agents and skills symlinked in from C:\depot\BC-agentic-workspace, so they showed up as untracked noise in git status. Ignore the managed symlink targets (.claude and .copilot skills/agents/rules/commands/instructions/hooks, .github agents/prompts/instructions, copilot-instructions.md) and the merged MCP configs, while keeping the repo's own tracked .github/agents/EngSys-VersionChange.agent.md. Fixes AB#640172 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.gitignore b/.gitignore index ee5921f40d..c3b6c67066 100644 --- a/.gitignore +++ b/.gitignore @@ -330,3 +330,24 @@ TestResults.xml # Exceptions !src/System Application/Test/Extension Management/testArtifacts/*.app + +# Personal AI tooling symlinked from bc-agentic-workspace (managed by Sync-AIInstructions) +# Claude Code +.claude/skills/ +.claude/rules/ +.claude/agents/ +.claude/commands/ +.claude/hooks/ +# Copilot CLI / VS Code +.copilot/skills/ +.copilot/agents/ +.copilot/instructions/ +.github/agents/ +!.github/agents/EngSys-VersionChange.agent.md +.github/prompts/ +.github/instructions/ +.github/copilot-instructions.md +.copilot/copilot-instructions.md +# MCP configs (merged, not symlinked) +.mcp.json +.vscode/mcp.json From 4d2ffb5d349847a254fba77d1e13ca2fa219b770 Mon Sep 17 00:00:00 2001 From: ventselartur <137783588+ventselartur@users.noreply.github.com> Date: Tue, 23 Jun 2026 20:44:48 +0200 Subject: [PATCH 2/2] Update .gitignore Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c3b6c67066..8eb5175600 100644 --- a/.gitignore +++ b/.gitignore @@ -343,6 +343,7 @@ TestResults.xml .copilot/agents/ .copilot/instructions/ .github/agents/ +.github/agents/* !.github/agents/EngSys-VersionChange.agent.md .github/prompts/ .github/instructions/