Phase 7A+7C: Subsystem aggregator + Flow tracer (post-review fixes)

This commit is contained in:
Jarvis Prime
2026-03-09 06:51:32 +00:00
parent 4221ab4d76
commit 4c212740a2
28 changed files with 2476 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
{
"subsystems": [
{
"name": "gateway",
"kind": "domain",
"files": [
"gateway/server.ts",
"gateway/session.ts",
"gateway/middleware.ts",
"gateway/types.ts",
"gateway/utils.ts"
]
},
{
"name": "agents",
"kind": "domain",
"files": [
"agents/runner.ts",
"agents/scope.ts",
"agents/tools.ts",
"agents/types.ts",
"agents/defaults.ts"
]
},
{
"name": "channels",
"kind": "domain",
"files": [
"channels/telegram.ts",
"channels/discord.ts"
]
},
{
"name": "config",
"kind": "cross-cutting",
"files": [
"config/config.ts",
"config/types.ts",
"config/schema.ts"
]
},
{
"name": "utils",
"kind": "cross-cutting",
"files": [
"utils/logger.ts",
"utils/crypto.ts",
"utils/fs-helpers.ts"
]
}
]
}