Implement project structure and documentation for Fog Expedition, including .mcp.json configuration, agent guidelines in AGENTS.md, and detailed project context in PROJECT_CONTEXT.md. Update .gitignore and pnpm-workspace.yaml for new dependencies and workspace management. Introduce CI monitoring skills and scripts for enhanced CI pipeline management.

This commit is contained in:
Maurycy
2026-05-06 22:55:51 +00:00
parent 3ce6a04a40
commit 308a1cf5c4
27 changed files with 3448 additions and 1 deletions

28
.mcp.json Normal file
View File

@@ -0,0 +1,28 @@
{
"mcpServers": {
"postgres": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://fog:fog_dev@host.docker.internal:5432/fog_expedition"
]
},
"playwright": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@playwright/mcp"]
},
"context7": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"]
},
"nx-mcp": {
"type": "stdio",
"command": "pnpm",
"args": ["exec", "nx", "mcp"]
}
}
}