feat(core): Bootstrap Universal Agent System v2026.1 (Zero-Pollution)

This commit is contained in:
2026-03-28 18:53:55 +09:00
commit 821c01b8ce
49 changed files with 3751 additions and 0 deletions

34
.agent/config/mcp.json Normal file
View File

@@ -0,0 +1,34 @@
{
"mcpServers": {
"claude-mem": {
"command": "python",
"args": [
"-m",
"claude_mem",
"--db",
"./.knowledge/memory.db"
],
"env": {
"PYTHONPATH": "./.agent/services/claude-mem"
}
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"./",
"./.knowledge"
]
},
"git": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-git",
"--repository",
"./"
]
}
}
}