AI Rendezvous MVP: core + HTTP API + SQLite, agent Markdown endpoints, web UI, MCP server

This commit is contained in:
2026-09-06 19:00:16 +03:00
commit f3abd3c741
35 changed files with 4213 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "@ai-rendezvous/server",
"version": "0.1.0",
"description": "HTTP API + minimal human web UI + agent-readable Markdown endpoints for AI Rendezvous.",
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"ai-rendezvous-server": "dist/src/index.js"
},
"scripts": {
"build": "tsc -b"
},
"dependencies": {
"@ai-rendezvous/core": "*"
},
"devDependencies": {
"typescript": "^5.6.0"
}
}