| 1 | # Keep docker build context lean — Dockerfile COPY list is the allowlist. |
| 2 | **/.git |
| 3 | **/.vs |
| 4 | **/bin/ |
| 5 | **/obj/ |
| 6 | **/.env |
| 7 | **/node_modules/ |
| 8 | *.user |
| 9 | *.suo |
| 10 | |
| 11 | # Not copied by Dockerfile; would bloat context (~600+ MB with artifacts) |
| 12 | tests/ |
| 13 | mcp/ |
| 14 | cli/ |
| 15 | design/ |
| 16 | docs/ |
| 17 | templates/ |
| 18 | scripts/ |
| 19 | publish-mcp/ |
| 20 | plugins/ |
| 21 | |
| 22 | # Root clutter |
| 23 | README.md |
| 24 | LICENSE |
| 25 | .gitignore |
| 26 | .env.example |
| 27 | AgentForge.slnx |
| 28 | dotnet-tools.json |
| 29 |