lucifer-gate 0.4.0-alpha.3.aedac37 → 0.4.0-alpha.4.981bbfa
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -204,18 +204,22 @@ server/src/domains/
|
|
|
204
204
|
types/ CommandRequest, Approval, types
|
|
205
205
|
config/ Gateway configuration
|
|
206
206
|
repository/ SQLite stores, JSON config readers
|
|
207
|
-
service/ Auth, rules, risk analysis, execution
|
|
208
|
-
api/
|
|
209
|
-
platform-api/ Health
|
|
207
|
+
service/ Auth, rules, risk analysis, execution, approvals
|
|
208
|
+
api/ Execute routes + web approval UI routes
|
|
209
|
+
platform-api/ Health endpoint + server runtime wiring
|
|
210
|
+
|
|
211
|
+
src/domains/
|
|
212
|
+
web-shell/ Browser health/status view
|
|
210
213
|
```
|
|
211
214
|
|
|
212
|
-
Dependency flow: Types -> Config -> Repository -> Service -> API
|
|
215
|
+
Dependency flow: Types -> Config -> Repository -> Service -> Runtime -> UI/API
|
|
213
216
|
|
|
214
217
|
## Stack
|
|
215
218
|
|
|
216
219
|
- Express 5 + TypeScript
|
|
217
220
|
- SQLite (better-sqlite3) for approvals + audit
|
|
218
221
|
- Telegraf for Telegram bot
|
|
222
|
+
- Optional server-delivered web approval UI with SSE updates
|
|
219
223
|
- Pino for structured logging (pino-pretty for human-readable console output in dev)
|
|
220
224
|
- Vitest for testing
|
|
221
|
-
- React 19 + Vite 8
|
|
225
|
+
- React 19 + Vite 8 for the browser shell and health view
|