Initial project scaffold: Open Brain self-hosted knowledge infrastructure

Node.js/TypeScript server with MCP endpoint for AI assistant integration,
Discord bot for thought capture and slash commands, PostgreSQL + pgvector
for semantic search, and OpenRouter for embeddings/metadata extraction.
Dockerized for deployment behind Caddy.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
YOUNG
2026-03-06 14:53:41 -06:00
commit e90ea1591b
16 changed files with 3332 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "open-brain",
"version": "1.0.0",
"description": "Self-hosted personal knowledge infrastructure with MCP and Discord",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"repository": {
"type": "git",
"url": "https://git.option.design/will/open-brain.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.27.1",
"discord.js": "^14.25.1",
"hono": "^4.12.5",
"pg": "^8.20.0",
"pgvector": "^0.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@types/pg": "^8.18.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}