Spaces:
Running
[SYSTEM] Aegis AI — The Intelligent Fire & Safety OS
Browse filesRole: You are an expert AI Architect/Engineer with mastery in full-stack web development, IoT/real-time systems, AI/LLM (agentic RAG), graph/SQL data, and fire-safety compliance (NFPA 72, NYC code/FDNY).
Objective: Generate an end-to-end, production-ready codebase for “Aegis AI”: a real-time, AI-driven Project Management + QA + Compliance + Operations dashboard for building fire & life-safety systems.
0) Non-Negotiable Principles
Grounding-first (RAG→Gen): Always retrieve from authoritative sources (SQL for ops, Graph for deps, KB/codebooks via RAG) before generating conclusions.
Deterministic contracts: All app-facing outputs must match the schemas in this prompt.
Evidence required: Include source IDs/URIs (SQL row, Graph path, KB chunk, file_id:page) for any non-obvious fact.
Role-based safety: Remote controls (silence/reset/HVAC/elevators/locks) require RBAC + dual-confirmation + audit logging.
Privacy & safety: Never expose secrets; request least privileges; declare missing artifacts explicitly.
Do not reveal chain-of-thought. Summaries only.
1) Core Scope (Features to Implement)
1A. Aegis Dashboard (Real-time)
Live floor plan with devices (smoke/heat/CO/etc.) via WebSockets/MQTT.
Healthy = green, Alarm = red pulsating, Trouble/Maintenance = yellow.
Event Log & Device Mgmt: searchable, filterable; device profile (location, SLC loop, NAC circuit, last test).
Remote Control (RBAC): silence, reset, acknowledge; building systems actions (HVAC purge/shutdown, elevator recall, door unlock) — require Admin/First Responder role + dual-action confirm + incident ticket + audit trail.
Aegis AI Assistant: conversational queries (“Status on 3rd floor?”) returning structured JSON + a brief, linked summary; can spawn Artifacts:
Safety Artifacts: dynamic evacuation routes/instructions.
Maintenance Artifacts: predictive schedules, work orders.
Drill Artifacts: drill scripts + progress tracker.
1B. Project Management & Knowledge
Floating modern UI; light/dark modes, font auto-contrast.
Drag-and-drop everywhere (images, emails, text, URLs, notes).
Project cards show: Name, A433 info, System Type, Client, Location, Start/End, Status, Team, progress bar, AI status blurb, next milestones.
Knowledge Tab: ingest URLs + Google Drive files; natural-language QA over KB via Agentic RAG.
Calendar View: interactive; two-way Google Calendar sync for drills, inspections, AI-predicted maintenance.
Home Search: tasks/milestones/documents across PM + KB.
1C. Compliance Hub (QA)
Secure uploads: PDF, DOCX, DWG.
AI Cross-Referencing Engine: compare uploads to KB (NFPA 72, NYC 2022, FDNY directives, manufacturer datasheets, approved safety plans).
Compliance Report Artifact with: validations, discrepancies, missing elements, and precise citations (e.g., upcodes_2022:§907.5.2.3, NFPA72_2022:18.x.y).
Auto-checks (examples): NAC capacity (AP26R 2.8A max; DAA2 ≤ 50%), speaker wattage/DAA2 load, SLC loop counts, title-block address/owner consistency, A433 alignment.
1D. FireAlarm Pro Calculation Suite (built-in)
NAC Circuit Calculator (voltage drop/wire gauge; 20+ device lib).
Panel Load Analyzer (AC/DC transformer sizing).
Battery Calculator (Notifier method, safety factors).
BOM Generator (cost, markups).
Device Library (major manufacturers).
Visuals: load charts, KPIs, mind-map, distribution graphs, battery configs.
Data mgmt: auto-save, versions, templates, import/export, persistence.
Exports: branded PDFs, XLSX (multi-sheet), CSV, chart images.
UX: mobile-ready, themes, keyboard shortcuts, loaders, robust validation.
2) UI/UX Requirements
Color palette: bg #111827; surfaces #1F2937; text off-white; accents = purple→magenta gradient for primary CTAs.
Status Colors: Green=On Track, Blue=Completed, Orange=At Risk, Red=Alarm/Delayed, Purple=Planning, Pink/Magenta=General Event.
Typography: Inter or Poppins; titles bold; cards semi-bold; labels smaller.
Style: professional, modern, rounded corners, subtle glows, minimalist Lucide icons.
Provide light/dark with saved preference.
3) AuthN/Z & Integrations
Google OAuth 2.0 (signup/login); pull name + avatar.
RBAC: Admin, BuildingManager, Technician, FirstResponder, Viewer.
Remote control endpoints require FirstResponder|Admin + second-factor confirm.
Google Calendar two-way sync: create/update events for AI maintenance, drills, inspections; show events in dashboard.
IoT ingestion: MQTT/WebSockets for device status, alarms, troubles.
4) Agentic Architecture
Roles (internal)
Router/Planner → classify intent; choose tools; pick schema.
Retrieval Agent → semantic search/section targeting/entity extraction.
Analysis Agent → parse QA docs; normalize entities (devices/floors/addresses).
Verification Agent → cross-reference SQL/Graph vs RAG/codes; label issues.
Generation Agent → emit strict JSON + user summary (≤150 words).
Critic Agent → schema validation; policies.check; set confidence; next steps.
Five-Step Cycle (follow silently)
Plan 2) Retrieve 3) Synthesize 4) Critique 5) Deliver
5) Tools (map these to runtime)
sql.query(sql, params) → rows[] // authoritative ops data
graph.query(cypher_or_gql, params) → rows[] // deps/critical path
rag.search({query, top_k, filters}) → [{chunk_id,text,source,score,uri}]
files.lookup({filters})→files[]; files.preview(file_id)→text|metadata
calendar.find({from,to,filters}) → events[] ; calendar.upsert(event) → id
policies.check({refs}) → {issues[], citations[]}
notify.post({channel,message})
Default RAG sources: GOOGLE_DRIVE:FOLDER_ID=<DRIVE_FOLDER_ID>, UP_CODES:NYC_2022, NFPA72_2022, Manufacturer_Datasheets, Emails_Archive.
6) Data Model & Routes
SQL (recommended tables)
projects, tasks, dependencies, risks, decisions, documents, bom_items, qa_issues, kb_documents, kb_chunks
(Use pgvector for kb_chunks.embedding)
Graph
Nodes: Project, Task, Person, Risk, Decision, File, Location, CodeRef
Edges: DEPENDS_ON, BLOCKS, EVIDENCES, RELATES_TO, LOCATED_AT, OWNS, VIOLATES
Next.js API route mapping (must implement)
// app/api/projects/import/route.ts
export { importHandler as POST } from "@/modules/project-addon";
// app/api/projects/[fdnyRef]/route.ts
export { getByRefHandler as GET } from "@/modules/project-addon";
// app/api/projects/[fdnyRef]/generate/datasheets/route.ts
export { generateDatasheetsHandler as POST } from "@/modules/project-addon";
// app/api/projects/[fdnyRef]/generate/bom/route.ts
export { generateBOMHandler as POST } from "@/modules/project-addon";
Module to include verbatim (adapt to Prisma schema)
Implement the single-file project-addon.ts provided (import/get; datasheet binder/BOM generators; KnowledgeBase UI; QA chips).
Use Global KB (UpCodes + shared Drive DRIVE_GLOBAL_LIBRARY_ID=1TM9r4sIhI0ogZRrOIq1i2tPz4XNt6bNy) as default; merge with per-project KB.
7) Orchestrator Output Contracts
Return one of these per request:
{
"type": "APP_RESPONSE",
"intent": "<PROJECT_STATUS|TASK_SUMMARY|RISK_REGISTER|DOC_FINDINGS|POLICY_QA|SEARCH_RESULTS|IOT_STATUS>",
"data": {},
"evidence": [
{"source":"sql:tasks#123"},
{"source":"graph:path#T42→T77"},
{"source":"rag:chunk_upcodes_2022_§907.5.2.3"},
{"source":"file:drive:<FILE_ID>:p12"}
],
"uncertainties": ["<optional>"],
"next_actions": ["<optional>"],
"confidence": 0.0
}
Schemas (must match):
PROJECT_STATUS: { "project_id":"...", "percent_complete":0-100, "at_risk":true|false, "blocked_by":["task_id"], "critical_path":["task_id"], "upcoming":[{"task_id":"...","due":"YYYY-MM-DD"}] }
TASK_SUMMARY: { "task_id":"...","title":"...","assignee":"...","status":"...","start":"YYYY-MM-DD","due":"YYYY-MM-DD","deps":["task_id"],"risk":"low|med|high","nac_circuit":"AP26R-..","slc_loop":"L#" }
RISK_REGISTER: { "project_id":"...","risks":[{"risk_id":"...","desc":"...","likelihood":1-5,"impact":1-5,"mitigation":"...","owner":"...","due":"YYYY-MM-DD"}] }
DOC_FINDINGS: { "query":"...","findings":[{"file_id":"...","chunk_id":"...","quote":"...","relevance":0-1,"uri":"...","entities":{"address":"...","owner":"...","floor":"...","device":["..."]}}] }
POLICY_QA: { "scope":"...", "issues":[{"code_ref":"upcodes_2022:§907.x.y","desc":"...","severity":"advisory|warning|critical","snippet":"...","file_id":"...","page":12}] }
SEARCH_RESULTS: { "query":"...","items":[{"type":"task|project|doc","id":"...","title":"...","uri":"..."}] }
IOT_STATUS: { "floor":"L3","summary":{"ok":#, "alarm":#, "trouble":#}, "devices":[{"id":"...","type":"smoke","status":"alarm","last_seen":"ISO8601","loc":"x,y"},{"id":"...","type":"heat","status":"ok"}] }
User summary (markdown, ≤150 words): bullets + evidence IDs/links + absolute dates (TZ America/New_York).
8) Query Patterns (generators must implement)
SQL
-- Upcoming 14d
SELECT id,title,assignee,due_date FROM tasks
WHERE project_id=$1 AND status NOT IN ('done','cancelled')
AND due_date BETWEEN CURRENT_DATE AND CURRENT_DATE + INTERVAL '14 days'
ORDER BY due_date ASC;
-- Blocked / at risk
SELECT id,title,assignee,due_date,blocking_reason FROM tasks
WHERE project_id=$1 AND status IN ('blocked','at_risk')
ORDER BY due_date;
-- NAC capacity inputs
SELECT nac_circuit, SUM(COALESCE(related_device_count,0)) AS device_count
FROM tasks WHERE project_id=$1 AND nac_circuit IS NOT NULL
GROUP BY nac_circuit;
Graph (Cypher)
// Critical path IDs
MATCH (p:Project{id:$pid})-[:RELATES_TO]->(t:Task)
MATCH path=(t)-[:DEPENDS_ON*1..5]->(u:Task)
RETURN [n IN nodes(path) WHERE n:Task | n.id] AS ids
ORDER BY size(ids) DESC LIMIT 1;
// Impact if task slips
MATCH (t:Task {id:$taskId})-[:DEPENDS_ON*]->(d:Task)
RETURN t.id AS source, collect(d.id) AS impacted;
RAG
{"query":"NAC calculation DAA2 50% threshold AP26R 2.8A",
"top_k":10, "filters":{"source":["GOOGLE_DRIVE","UP_CODES:NYC_2022","NFPA72_2022"], "project_id":"<PID>"}}
{"query":"project address owner of record A433 riser title block consistency",
"top_k":8, "filters":{"source":["GOOGLE_DRIVE"]}}
9) QA & Compliance Rules
Trigger policies.check whenever scope touches: riser, NAC, speakers/DAA2, SLC, FSAE, AC load, batteries, FDNY/NYC/NFPA.
NAC: verify AP26R ≤ 2.8A and DAA2 load
- README.md +7 -5
- index.html +1039 -18
- prompts.txt +360 -0
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: smartdash
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: red
|
| 5 |
+
colorTo: purple
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
@@ -1,19 +1,1040 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Aegis AI - Fire & Safety Dashboard</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 9 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 12 |
+
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
|
| 13 |
+
<style>
|
| 14 |
+
:root {
|
| 15 |
+
--bg-primary: #111827;
|
| 16 |
+
--bg-secondary: #1F2937;
|
| 17 |
+
--text-primary: #f3f4f6;
|
| 18 |
+
--accent-start: #8b5cf6;
|
| 19 |
+
--accent-end: #ec4899;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
body {
|
| 23 |
+
background-color: var(--bg-primary);
|
| 24 |
+
color: var(--text-primary);
|
| 25 |
+
font-family: 'Inter', sans-serif;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
.gradient-text {
|
| 29 |
+
background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
|
| 30 |
+
-webkit-background-clip: text;
|
| 31 |
+
background-clip: text;
|
| 32 |
+
color: transparent;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.gradient-bg {
|
| 36 |
+
background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.status-green {
|
| 40 |
+
background-color: #10b981;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.status-red {
|
| 44 |
+
background-color: #ef4444;
|
| 45 |
+
animation: pulse 2s infinite;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
.status-yellow {
|
| 49 |
+
background-color: #f59e0b;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.status-blue {
|
| 53 |
+
background-color: #3b82f6;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.status-orange {
|
| 57 |
+
background-color: #f97316;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.status-purple {
|
| 61 |
+
background-color: #8b5cf6;
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
.status-pink {
|
| 65 |
+
background-color: #ec4899;
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
@keyframes pulse {
|
| 69 |
+
0% { opacity: 1; }
|
| 70 |
+
50% { opacity: 0.5; }
|
| 71 |
+
100% { opacity: 1; }
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
.floor-plan {
|
| 75 |
+
background-color: var(--bg-secondary);
|
| 76 |
+
border-radius: 1rem;
|
| 77 |
+
position: relative;
|
| 78 |
+
overflow: hidden;
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
.device {
|
| 82 |
+
position: absolute;
|
| 83 |
+
width: 16px;
|
| 84 |
+
height: 16px;
|
| 85 |
+
border-radius: 50%;
|
| 86 |
+
cursor: pointer;
|
| 87 |
+
transition: all 0.3s ease;
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
.device:hover {
|
| 91 |
+
transform: scale(1.5);
|
| 92 |
+
z-index: 10;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
.device-tooltip {
|
| 96 |
+
position: absolute;
|
| 97 |
+
bottom: 100%;
|
| 98 |
+
left: 50%;
|
| 99 |
+
transform: translateX(-50%);
|
| 100 |
+
background-color: var(--bg-secondary);
|
| 101 |
+
padding: 0.5rem;
|
| 102 |
+
border-radius: 0.5rem;
|
| 103 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
| 104 |
+
opacity: 0;
|
| 105 |
+
pointer-events: none;
|
| 106 |
+
transition: opacity 0.3s ease;
|
| 107 |
+
min-width: 200px;
|
| 108 |
+
z-index: 20;
|
| 109 |
+
}
|
| 110 |
+
|
| 111 |
+
.device:hover .device-tooltip {
|
| 112 |
+
opacity: 1;
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
.event-log {
|
| 116 |
+
max-height: 400px;
|
| 117 |
+
overflow-y: auto;
|
| 118 |
+
}
|
| 119 |
+
|
| 120 |
+
.event-log::-webkit-scrollbar {
|
| 121 |
+
width: 6px;
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
.event-log::-webkit-scrollbar-track {
|
| 125 |
+
background: var(--bg-secondary);
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.event-log::-webkit-scrollbar-thumb {
|
| 129 |
+
background: var(--accent-start);
|
| 130 |
+
border-radius: 3px;
|
| 131 |
+
}
|
| 132 |
+
|
| 133 |
+
.project-card {
|
| 134 |
+
transition: all 0.3s ease;
|
| 135 |
+
border-left: 4px solid var(--accent-start);
|
| 136 |
+
}
|
| 137 |
+
|
| 138 |
+
.project-card:hover {
|
| 139 |
+
transform: translateY(-2px);
|
| 140 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
| 141 |
+
}
|
| 142 |
+
|
| 143 |
+
.progress-bar {
|
| 144 |
+
height: 8px;
|
| 145 |
+
border-radius: 4px;
|
| 146 |
+
background-color: var(--bg-secondary);
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
.progress-fill {
|
| 150 |
+
height: 100%;
|
| 151 |
+
border-radius: 4px;
|
| 152 |
+
background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
|
| 153 |
+
transition: width 0.5s ease;
|
| 154 |
+
}
|
| 155 |
+
|
| 156 |
+
.nav-link {
|
| 157 |
+
position: relative;
|
| 158 |
+
padding: 0.5rem 1rem;
|
| 159 |
+
transition: all 0.3s ease;
|
| 160 |
+
}
|
| 161 |
+
|
| 162 |
+
.nav-link:hover {
|
| 163 |
+
color: var(--accent-start);
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
.nav-link.active {
|
| 167 |
+
color: var(--accent-start);
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
.nav-link.active::after {
|
| 171 |
+
content: '';
|
| 172 |
+
position: absolute;
|
| 173 |
+
bottom: -2px;
|
| 174 |
+
left: 1rem;
|
| 175 |
+
right: 1rem;
|
| 176 |
+
height: 2px;
|
| 177 |
+
background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
|
| 178 |
+
}
|
| 179 |
+
|
| 180 |
+
.dropdown-menu {
|
| 181 |
+
opacity: 0;
|
| 182 |
+
pointer-events: none;
|
| 183 |
+
transition: all 0.3s ease;
|
| 184 |
+
transform: translateY(-10px);
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
+
.dropdown:hover .dropdown-menu {
|
| 188 |
+
opacity: 1;
|
| 189 |
+
pointer-events: auto;
|
| 190 |
+
transform: translateY(0);
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
.modal-overlay {
|
| 194 |
+
position: fixed;
|
| 195 |
+
top: 0;
|
| 196 |
+
left: 0;
|
| 197 |
+
right: 0;
|
| 198 |
+
bottom: 0;
|
| 199 |
+
background-color: rgba(0, 0, 0, 0.7);
|
| 200 |
+
display: flex;
|
| 201 |
+
justify-content: center;
|
| 202 |
+
align-items: center;
|
| 203 |
+
z-index: 100;
|
| 204 |
+
opacity: 0;
|
| 205 |
+
pointer-events: none;
|
| 206 |
+
transition: opacity 0.3s ease;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
.modal-overlay.active {
|
| 210 |
+
opacity: 1;
|
| 211 |
+
pointer-events: auto;
|
| 212 |
+
}
|
| 213 |
+
|
| 214 |
+
.modal-content {
|
| 215 |
+
background-color: var(--bg-secondary);
|
| 216 |
+
border-radius: 1rem;
|
| 217 |
+
max-width: 90%;
|
| 218 |
+
max-height: 90vh;
|
| 219 |
+
overflow-y: auto;
|
| 220 |
+
transform: scale(0.9);
|
| 221 |
+
transition: transform 0.3s ease;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
.modal-overlay.active .modal-content {
|
| 225 |
+
transform: scale(1);
|
| 226 |
+
}
|
| 227 |
+
|
| 228 |
+
.tab-button {
|
| 229 |
+
padding: 0.5rem 1rem;
|
| 230 |
+
border-radius: 0.5rem;
|
| 231 |
+
transition: all 0.3s ease;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.tab-button.active {
|
| 235 |
+
background-color: var(--bg-primary);
|
| 236 |
+
color: var(--accent-start);
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
+
.tab-content {
|
| 240 |
+
display: none;
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
.tab-content.active {
|
| 244 |
+
display: block;
|
| 245 |
+
}
|
| 246 |
+
|
| 247 |
+
.drag-drop-area {
|
| 248 |
+
border: 2px dashed var(--accent-start);
|
| 249 |
+
border-radius: 1rem;
|
| 250 |
+
transition: all 0.3s ease;
|
| 251 |
+
}
|
| 252 |
+
|
| 253 |
+
.drag-drop-area.active {
|
| 254 |
+
border-color: var(--accent-end);
|
| 255 |
+
background-color: rgba(139, 92, 246, 0.1);
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.compliance-issue {
|
| 259 |
+
border-left: 4px solid #ef4444;
|
| 260 |
+
padding-left: 0.5rem;
|
| 261 |
+
}
|
| 262 |
+
|
| 263 |
+
.compliance-warning {
|
| 264 |
+
border-left: 4px solid #f59e0b;
|
| 265 |
+
padding-left: 0.5rem;
|
| 266 |
+
}
|
| 267 |
+
|
| 268 |
+
.compliance-advisory {
|
| 269 |
+
border-left: 4px solid #3b82f6;
|
| 270 |
+
padding-left: 0.5rem;
|
| 271 |
+
}
|
| 272 |
+
</style>
|
| 273 |
+
</head>
|
| 274 |
+
<body class="min-h-screen">
|
| 275 |
+
<!-- Vanta.js Background -->
|
| 276 |
+
<div id="vanta-bg" class="fixed top-0 left-0 w-full h-full z-0"></div>
|
| 277 |
+
|
| 278 |
+
<!-- Main Content -->
|
| 279 |
+
<div class="relative z-10">
|
| 280 |
+
<!-- Header -->
|
| 281 |
+
<header class="bg-gray-900 bg-opacity-80 backdrop-blur-md border-b border-gray-800">
|
| 282 |
+
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
|
| 283 |
+
<div class="flex items-center space-x-4">
|
| 284 |
+
<div class="gradient-text text-2xl font-bold">Aegis AI</div>
|
| 285 |
+
<div class="text-sm text-gray-400">Fire & Safety OS</div>
|
| 286 |
+
</div>
|
| 287 |
+
|
| 288 |
+
<div class="flex items-center space-x-6">
|
| 289 |
+
<div class="relative">
|
| 290 |
+
<button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-800">
|
| 291 |
+
<i data-feather="moon" class="text-gray-400"></i>
|
| 292 |
+
</button>
|
| 293 |
+
</div>
|
| 294 |
+
|
| 295 |
+
<div class="relative">
|
| 296 |
+
<button id="notifications-btn" class="p-2 rounded-full hover:bg-gray-800 relative">
|
| 297 |
+
<i data-feather="bell" class="text-gray-400"></i>
|
| 298 |
+
<span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full"></span>
|
| 299 |
+
</button>
|
| 300 |
+
|
| 301 |
+
<div id="notifications-dropdown" class="dropdown-menu absolute right-0 mt-2 w-80 bg-gray-800 rounded-lg shadow-lg py-2 z-50">
|
| 302 |
+
<div class="px-4 py-2 border-b border-gray-700 flex justify-between items-center">
|
| 303 |
+
<h3 class="font-semibold">Notifications</h3>
|
| 304 |
+
<button class="text-xs text-purple-400 hover:text-purple-300">Mark all as read</button>
|
| 305 |
+
</div>
|
| 306 |
+
<div class="max-h-60 overflow-y-auto">
|
| 307 |
+
<div class="px-4 py-3 hover:bg-gray-700 cursor-pointer border-b border-gray-700">
|
| 308 |
+
<div class="flex items-start">
|
| 309 |
+
<div class="status-red w-2 h-2 rounded-full mt-1 mr-2"></div>
|
| 310 |
+
<div>
|
| 311 |
+
<p class="text-sm font-medium">Alarm triggered - Floor 3, Zone 5</p>
|
| 312 |
+
<p class="text-xs text-gray-400">2 minutes ago</p>
|
| 313 |
+
</div>
|
| 314 |
+
</div>
|
| 315 |
+
</div>
|
| 316 |
+
<div class="px-4 py-3 hover:bg-gray-700 cursor-pointer border-b border-gray-700">
|
| 317 |
+
<div class="flex items-start">
|
| 318 |
+
<div class="status-yellow w-2 h-2 rounded-full mt-1 mr-2"></div>
|
| 319 |
+
<div>
|
| 320 |
+
<p class="text-sm font-medium">Trouble detected - Device 42A7</p>
|
| 321 |
+
<p class="text-xs text-gray-400">15 minutes ago</p>
|
| 322 |
+
</div>
|
| 323 |
+
</div>
|
| 324 |
+
</div>
|
| 325 |
+
<div class="px-4 py-3 hover:bg-gray-700 cursor-pointer border-b border-gray-700">
|
| 326 |
+
<div class="flex items-start">
|
| 327 |
+
<div class="status-blue w-2 h-2 rounded-full mt-1 mr-2"></div>
|
| 328 |
+
<div>
|
| 329 |
+
<p class="text-sm font-medium">New compliance report ready</p>
|
| 330 |
+
<p class="text-xs text-gray-400">1 hour ago</p>
|
| 331 |
+
</div>
|
| 332 |
+
</div>
|
| 333 |
+
</div>
|
| 334 |
+
</div>
|
| 335 |
+
<div class="px-4 py-2 text-center">
|
| 336 |
+
<a href="#" class="text-xs text-purple-400 hover:text-purple-300">View all notifications</a>
|
| 337 |
+
</div>
|
| 338 |
+
</div>
|
| 339 |
+
</div>
|
| 340 |
+
|
| 341 |
+
<div class="relative dropdown">
|
| 342 |
+
<button class="flex items-center space-x-2 hover:bg-gray-800 rounded-full p-1 pr-3">
|
| 343 |
+
<div class="w-8 h-8 rounded-full bg-purple-500 flex items-center justify-center text-white font-semibold">JD</div>
|
| 344 |
+
<span class="text-sm">John Doe</span>
|
| 345 |
+
<i data-feather="chevron-down" class="w-4 h-4"></i>
|
| 346 |
+
</button>
|
| 347 |
+
|
| 348 |
+
<div class="dropdown-menu absolute right-0 mt-2 w-48 bg-gray-800 rounded-lg shadow-lg py-1 z-50">
|
| 349 |
+
<a href="#" class="block px-4 py-2 text-sm hover:bg-gray-700"><i data-feather="user" class="w-4 h-4 mr-2"></i> Profile</a>
|
| 350 |
+
<a href="#" class="block px-4 py-2 text-sm hover:bg-gray-700"><i data-feather="settings" class="w-4 h-4 mr-2"></i> Settings</a>
|
| 351 |
+
<div class="border-t border-gray-700"></div>
|
| 352 |
+
<a href="#" class="block px-4 py-2 text-sm hover:bg-gray-700"><i data-feather="log-out" class="w-4 h-4 mr-2"></i> Sign out</a>
|
| 353 |
+
</div>
|
| 354 |
+
</div>
|
| 355 |
+
</div>
|
| 356 |
+
</div>
|
| 357 |
+
</header>
|
| 358 |
+
|
| 359 |
+
<!-- Main Navigation -->
|
| 360 |
+
<nav class="bg-gray-900 bg-opacity-80 backdrop-blur-md border-b border-gray-800">
|
| 361 |
+
<div class="container mx-auto px-4">
|
| 362 |
+
<div class="flex space-x-8">
|
| 363 |
+
<a href="#" class="nav-link active"><i data-feather="home" class="w-4 h-4 mr-2"></i> Dashboard</a>
|
| 364 |
+
<a href="#" class="nav-link"><i data-feather="clipboard" class="w-4 h-4 mr-2"></i> Projects</a>
|
| 365 |
+
<a href="#" class="nav-link"><i data-feather="book" class="w-4 h-4 mr-2"></i> Knowledge</a>
|
| 366 |
+
<a href="#" class="nav-link"><i data-feather="shield" class="w-4 h-4 mr-2"></i> Compliance</a>
|
| 367 |
+
<a href="#" class="nav-link"><i data-feather="calculator" class="w-4 h-4 mr-2"></i> Calculations</a>
|
| 368 |
+
<a href="#" class="nav-link"><i data-feather="calendar" class="w-4 h-4 mr-2"></i> Calendar</a>
|
| 369 |
+
<a href="#" class="nav-link"><i data-feather="settings" class="w-4 h-4 mr-2"></i> Admin</a>
|
| 370 |
+
</div>
|
| 371 |
+
</div>
|
| 372 |
+
</nav>
|
| 373 |
+
|
| 374 |
+
<!-- Main Content -->
|
| 375 |
+
<main class="container mx-auto px-4 py-6">
|
| 376 |
+
<!-- Dashboard Header -->
|
| 377 |
+
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6">
|
| 378 |
+
<div>
|
| 379 |
+
<h1 class="text-2xl font-bold mb-2">Fire & Safety Dashboard</h1>
|
| 380 |
+
<p class="text-gray-400">Real-time monitoring and management of fire alarm systems</p>
|
| 381 |
+
</div>
|
| 382 |
+
|
| 383 |
+
<div class="mt-4 md:mt-0 flex space-x-3">
|
| 384 |
+
<button class="px-4 py-2 bg-gray-800 hover:bg-gray-700 rounded-lg flex items-center">
|
| 385 |
+
<i data-feather="refresh-cw" class="w-4 h-4 mr-2"></i>
|
| 386 |
+
<span>Refresh</span>
|
| 387 |
+
</button>
|
| 388 |
+
<button class="px-4 py-2 gradient-bg text-white rounded-lg flex items-center">
|
| 389 |
+
<i data-feather="plus" class="w-4 h-4 mr-2"></i>
|
| 390 |
+
<span>New Alert</span>
|
| 391 |
+
</button>
|
| 392 |
+
</div>
|
| 393 |
+
</div>
|
| 394 |
+
|
| 395 |
+
<!-- Status Overview -->
|
| 396 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-6">
|
| 397 |
+
<div class="bg-gray-800 rounded-lg p-4">
|
| 398 |
+
<div class="flex justify-between items-start">
|
| 399 |
+
<div>
|
| 400 |
+
<p class="text-gray-400 text-sm">Total Devices</p>
|
| 401 |
+
<h3 class="text-2xl font-bold">1,248</h3>
|
| 402 |
+
</div>
|
| 403 |
+
<div class="status-green w-10 h-10 rounded-full flex items-center justify-center">
|
| 404 |
+
<i data-feather="check" class="text-white"></i>
|
| 405 |
+
</div>
|
| 406 |
+
</div>
|
| 407 |
+
<div class="mt-4">
|
| 408 |
+
<div class="flex justify-between text-sm">
|
| 409 |
+
<span class="text-gray-400">Healthy</span>
|
| 410 |
+
<span>1,210</span>
|
| 411 |
+
</div>
|
| 412 |
+
<div class="w-full bg-gray-700 rounded-full h-1.5 mt-1">
|
| 413 |
+
<div class="bg-green-500 h-1.5 rounded-full" style="width: 97%"></div>
|
| 414 |
+
</div>
|
| 415 |
+
</div>
|
| 416 |
+
</div>
|
| 417 |
+
|
| 418 |
+
<div class="bg-gray-800 rounded-lg p-4">
|
| 419 |
+
<div class="flex justify-between items-start">
|
| 420 |
+
<div>
|
| 421 |
+
<p class="text-gray-400 text-sm">Active Alarms</p>
|
| 422 |
+
<h3 class="text-2xl font-bold">3</h3>
|
| 423 |
+
</div>
|
| 424 |
+
<div class="status-red w-10 h-10 rounded-full flex items-center justify-center">
|
| 425 |
+
<i data-feather="alert-triangle" class="text-white"></i>
|
| 426 |
+
</div>
|
| 427 |
+
</div>
|
| 428 |
+
<div class="mt-4">
|
| 429 |
+
<div class="flex justify-between text-sm">
|
| 430 |
+
<span class="text-gray-400">Unacknowledged</span>
|
| 431 |
+
<span>2</span>
|
| 432 |
+
</div>
|
| 433 |
+
<div class="w-full bg-gray-700 rounded-full h-1.5 mt-1">
|
| 434 |
+
<div class="bg-red-500 h-1.5 rounded-full" style="width: 66%"></div>
|
| 435 |
+
</div>
|
| 436 |
+
</div>
|
| 437 |
+
</div>
|
| 438 |
+
|
| 439 |
+
<div class="bg-gray-800 rounded-lg p-4">
|
| 440 |
+
<div class="flex justify-between items-start">
|
| 441 |
+
<div>
|
| 442 |
+
<p class="text-gray-400 text-sm">Trouble Conditions</p>
|
| 443 |
+
<h3 class="text-2xl font-bold">12</h3>
|
| 444 |
+
</div>
|
| 445 |
+
<div class="status-yellow w-10 h-10 rounded-full flex items-center justify-center">
|
| 446 |
+
<i data-feather="alert-circle" class="text-white"></i>
|
| 447 |
+
</div>
|
| 448 |
+
</div>
|
| 449 |
+
<div class="mt-4">
|
| 450 |
+
<div class="flex justify-between text-sm">
|
| 451 |
+
<span class="text-gray-400">Maintenance Needed</span>
|
| 452 |
+
<span>8</span>
|
| 453 |
+
</div>
|
| 454 |
+
<div class="w-full bg-gray-700 rounded-full h-1.5 mt-1">
|
| 455 |
+
<div class="bg-yellow-500 h-1.5 rounded-full" style="width: 66%"></div>
|
| 456 |
+
</div>
|
| 457 |
+
</div>
|
| 458 |
+
</div>
|
| 459 |
+
|
| 460 |
+
<div class="bg-gray-800 rounded-lg p-4">
|
| 461 |
+
<div class="flex justify-between items-start">
|
| 462 |
+
<div>
|
| 463 |
+
<p class="text-gray-400 text-sm">Compliance Status</p>
|
| 464 |
+
<h3 class="text-2xl font-bold">92%</h3>
|
| 465 |
+
</div>
|
| 466 |
+
<div class="status-blue w-10 h-10 rounded-full flex items-center justify-center">
|
| 467 |
+
<i data-feather="shield" class="text-white"></i>
|
| 468 |
+
</div>
|
| 469 |
+
</div>
|
| 470 |
+
<div class="mt-4">
|
| 471 |
+
<div class="flex justify-between text-sm">
|
| 472 |
+
<span class="text-gray-400">NFPA 72 Compliance</span>
|
| 473 |
+
<span>92%</span>
|
| 474 |
+
</div>
|
| 475 |
+
<div class="w-full bg-gray-700 rounded-full h-1.5 mt-1">
|
| 476 |
+
<div class="bg-blue-500 h-1.5 rounded-full" style="width: 92%"></div>
|
| 477 |
+
</div>
|
| 478 |
+
</div>
|
| 479 |
+
</div>
|
| 480 |
+
</div>
|
| 481 |
+
|
| 482 |
+
<!-- Main Dashboard Content -->
|
| 483 |
+
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
| 484 |
+
<!-- Left Column -->
|
| 485 |
+
<div class="lg:col-span-2 space-y-6">
|
| 486 |
+
<!-- Floor Plan -->
|
| 487 |
+
<div class="bg-gray-800 rounded-xl p-4">
|
| 488 |
+
<div class="flex justify-between items-center mb-4">
|
| 489 |
+
<h2 class="text-lg font-semibold">Building Floor Plan</h2>
|
| 490 |
+
<div class="flex space-x-2">
|
| 491 |
+
<select class="bg-gray-700 text-sm rounded-lg px-3 py-1">
|
| 492 |
+
<option>Floor 1</option>
|
| 493 |
+
<option>Floor 2</option>
|
| 494 |
+
<option selected>Floor 3</option>
|
| 495 |
+
<option>Floor 4</option>
|
| 496 |
+
<option>Roof</option>
|
| 497 |
+
</select>
|
| 498 |
+
<button class="p-1 rounded-lg hover:bg-gray-700">
|
| 499 |
+
<i data-feather="maximize" class="w-4 h-4"></i>
|
| 500 |
+
</button>
|
| 501 |
+
</div>
|
| 502 |
+
</div>
|
| 503 |
+
|
| 504 |
+
<div class="floor-plan h-96 relative">
|
| 505 |
+
<!-- Floor plan background would be here -->
|
| 506 |
+
<div class="absolute inset-0 flex items-center justify-center text-gray-600">
|
| 507 |
+
<p>Floor plan visualization would appear here</p>
|
| 508 |
+
</div>
|
| 509 |
+
|
| 510 |
+
<!-- Example devices -->
|
| 511 |
+
<div class="device status-green" style="top: 30%; left: 20%;">
|
| 512 |
+
<div class="device-tooltip">
|
| 513 |
+
<p class="font-medium">Smoke Detector</p>
|
| 514 |
+
<p class="text-xs">ID: SD-3-42</p>
|
| 515 |
+
<p class="text-xs">Zone: 3A</p>
|
| 516 |
+
<p class="text-xs">Last Test: 2023-11-15</p>
|
| 517 |
+
</div>
|
| 518 |
+
</div>
|
| 519 |
+
|
| 520 |
+
<div class="device status-red" style="top: 45%; left: 65%;">
|
| 521 |
+
<div class="device-tooltip">
|
| 522 |
+
<p class="font-medium">Smoke Detector (Alarm)</p>
|
| 523 |
+
<p class="text-xs">ID: SD-3-87</p>
|
| 524 |
+
<p class="text-xs">Zone: 3C</p>
|
| 525 |
+
<p class="text-xs">Triggered: 2023-11-20 14:32</p>
|
| 526 |
+
</div>
|
| 527 |
+
</div>
|
| 528 |
+
|
| 529 |
+
<div class="device status-yellow" style="top: 70%; left: 40%;">
|
| 530 |
+
<div class="device-tooltip">
|
| 531 |
+
<p class="font-medium">Pull Station (Trouble)</p>
|
| 532 |
+
<p class="text-xs">ID: PS-3-12</p>
|
| 533 |
+
<p class="text-xs">Zone: 3B</p>
|
| 534 |
+
<p class="text-xs">Last Maintenance: 2023-09-10</p>
|
| 535 |
+
</div>
|
| 536 |
+
</div>
|
| 537 |
+
|
| 538 |
+
<div class="device status-green" style="top: 25%; left: 75%;">
|
| 539 |
+
<div class="device-tooltip">
|
| 540 |
+
<p class="font-medium">Heat Detector</p>
|
| 541 |
+
<p class="text-xs">ID: HD-3-33</p>
|
| 542 |
+
<p class="text-xs">Zone: 3D</p>
|
| 543 |
+
<p class="text-xs">Last Test: 2023-11-10</p>
|
| 544 |
+
</div>
|
| 545 |
+
</div>
|
| 546 |
+
</div>
|
| 547 |
+
|
| 548 |
+
<div class="mt-4 flex justify-between items-center">
|
| 549 |
+
<div class="flex space-x-2">
|
| 550 |
+
<div class="flex items-center">
|
| 551 |
+
<div class="status-green w-3 h-3 rounded-full mr-1"></div>
|
| 552 |
+
<span class="text-xs">Normal</span>
|
| 553 |
+
</div>
|
| 554 |
+
<div class="flex items-center">
|
| 555 |
+
<div class="status-red w-3 h-3 rounded-full mr-1"></div>
|
| 556 |
+
<span class="text-xs">Alarm</span>
|
| 557 |
+
</div>
|
| 558 |
+
<div class="flex items-center">
|
| 559 |
+
<div class="status-yellow w-3 h-3 rounded-full mr-1"></div>
|
| 560 |
+
<span class="text-xs">Trouble</span>
|
| 561 |
+
</div>
|
| 562 |
+
</div>
|
| 563 |
+
|
| 564 |
+
<button class="text-xs text-purple-400 hover:text-purple-300 flex items-center">
|
| 565 |
+
<i data-feather="zoom-in" class="w-3 h-3 mr-1"></i>
|
| 566 |
+
<span>Zoom Controls</span>
|
| 567 |
+
</button>
|
| 568 |
+
</div>
|
| 569 |
+
</div>
|
| 570 |
+
|
| 571 |
+
<!-- Event Log -->
|
| 572 |
+
<div class="bg-gray-800 rounded-xl p-4">
|
| 573 |
+
<div class="flex justify-between items-center mb-4">
|
| 574 |
+
<h2 class="text-lg font-semibold">Event Log</h2>
|
| 575 |
+
<div class="flex space-x-2">
|
| 576 |
+
<select class="bg-gray-700 text-sm rounded-lg px-3 py-1">
|
| 577 |
+
<option>All Events</option>
|
| 578 |
+
<option>Alarms</option>
|
| 579 |
+
<option>Troubles</option>
|
| 580 |
+
<option>Supervisory</option>
|
| 581 |
+
<option>System Events</option>
|
| 582 |
+
</select>
|
| 583 |
+
<button class="p-1 rounded-lg hover:bg-gray-700">
|
| 584 |
+
<i data-feather="filter" class="w-4 h-4"></i>
|
| 585 |
+
</button>
|
| 586 |
+
</div>
|
| 587 |
+
</div>
|
| 588 |
+
|
| 589 |
+
<div class="event-log">
|
| 590 |
+
<div class="border-b border-gray-700 pb-3 mb-3">
|
| 591 |
+
<div class="flex items-start">
|
| 592 |
+
<div class="status-red w-2 h-2 rounded-full mt-1.5 mr-2"></div>
|
| 593 |
+
<div class="flex-1">
|
| 594 |
+
<div class="flex justify-between">
|
| 595 |
+
<p class="font-medium">Alarm: Smoke Detector</p>
|
| 596 |
+
<span class="text-xs text-gray-400">2 min ago</span>
|
| 597 |
+
</div>
|
| 598 |
+
<p class="text-sm text-gray-400">Device ID: SD-3-87 | Zone: 3C | Floor 3, Room 312</p>
|
| 599 |
+
<div class="mt-1 flex space-x-2">
|
| 600 |
+
<button class="text-xs px-2 py-0.5 bg-gray-700 hover:bg-gray-600 rounded">Acknowledge</button>
|
| 601 |
+
<button class="text-xs px-2 py-0.5 bg-gray-700 hover:bg-gray-600 rounded">Silence</button>
|
| 602 |
+
<button class="text-xs px-2 py-0.5 bg-gray-700 hover:bg-gray-600 rounded">Reset</button>
|
| 603 |
+
</div>
|
| 604 |
+
</div>
|
| 605 |
+
</div>
|
| 606 |
+
</div>
|
| 607 |
+
|
| 608 |
+
<div class="border-b border-gray-700 pb-3 mb-3">
|
| 609 |
+
<div class="flex items-start">
|
| 610 |
+
<div class="status-yellow w-2 h-2 rounded-full mt-1.5 mr-2"></div>
|
| 611 |
+
<div class="flex-1">
|
| 612 |
+
<div class="flex justify-between">
|
| 613 |
+
<p class="font-medium">Trouble: Pull Station</p>
|
| 614 |
+
<span class="text-xs text-gray-400">15 min ago</span>
|
| 615 |
+
</div>
|
| 616 |
+
<p class="text-sm text-gray-400">Device ID: PS-3-12 | Zone: 3B | Floor 3, Hallway</p>
|
| 617 |
+
<div class="mt-1 flex space-x-2">
|
| 618 |
+
<button class="text-xs px-2 py-0.5 bg-gray-700 hover:bg-gray-600 rounded">Create Work Order</button>
|
| 619 |
+
</div>
|
| 620 |
+
</div>
|
| 621 |
+
</div>
|
| 622 |
+
</div>
|
| 623 |
+
|
| 624 |
+
<div class="border-b border-gray-700 pb-3 mb-3">
|
| 625 |
+
<div class="flex items-start">
|
| 626 |
+
<div class="status-blue w-2 h-2 rounded-full mt-1.5 mr-2"></div>
|
| 627 |
+
<div class="flex-1">
|
| 628 |
+
<div class="flex justify-between">
|
| 629 |
+
<p class="font-medium">System: Weekly Test</p>
|
| 630 |
+
<span class="text-xs text-gray-400">1 hour ago</span>
|
| 631 |
+
</div>
|
| 632 |
+
<p class="text-sm text-gray-400">Initiated by: John Doe | Devices Tested: 42 | Result: Pass</p>
|
| 633 |
+
</div>
|
| 634 |
+
</div>
|
| 635 |
+
</div>
|
| 636 |
+
|
| 637 |
+
<div class="border-b border-gray-700 pb-3 mb-3">
|
| 638 |
+
<div class="flex items-start">
|
| 639 |
+
<div class="status-green w-2 h-2 rounded-full mt-1.5 mr-2"></div>
|
| 640 |
+
<div class="flex-1">
|
| 641 |
+
<div class="flex justify-between">
|
| 642 |
+
<p class="font-medium">Normal: System Reset</p>
|
| 643 |
+
<span class="text-xs text-gray-400">2 hours ago</span>
|
| 644 |
+
</div>
|
| 645 |
+
<p class="text-sm text-gray-400">Initiated by: Jane Smith | All devices returned to normal state</p>
|
| 646 |
+
</div>
|
| 647 |
+
</div>
|
| 648 |
+
</div>
|
| 649 |
+
|
| 650 |
+
<div class="border-b border-gray-700 pb-3 mb-3">
|
| 651 |
+
<div class="flex items-start">
|
| 652 |
+
<div class="status-purple w-2 h-2 rounded-full mt-1.5 mr-2"></div>
|
| 653 |
+
<div class="flex-1">
|
| 654 |
+
<div class="flex justify-between">
|
| 655 |
+
<p class="font-medium">Drill: Fire Evacuation</p>
|
| 656 |
+
<span class="text-xs text-gray-400">1 day ago</span>
|
| 657 |
+
</div>
|
| 658 |
+
<p class="text-sm text-gray-400">Floor 3 | Duration: 8 min 42 sec | Participants: 87</p>
|
| 659 |
+
</div>
|
| 660 |
+
</div>
|
| 661 |
+
</div>
|
| 662 |
+
</div>
|
| 663 |
+
|
| 664 |
+
<div class="mt-4 text-center">
|
| 665 |
+
<button class="text-xs text-purple-400 hover:text-purple-300 flex items-center justify-center mx-auto">
|
| 666 |
+
<i data-feather="list" class="w-3 h-3 mr-1"></i>
|
| 667 |
+
<span>View Full Event History</span>
|
| 668 |
+
</button>
|
| 669 |
+
</div>
|
| 670 |
+
</div>
|
| 671 |
+
</div>
|
| 672 |
+
|
| 673 |
+
<!-- Right Column -->
|
| 674 |
+
<div class="space-y-6">
|
| 675 |
+
<!-- Aegis AI Assistant -->
|
| 676 |
+
<div class="bg-gray-800 rounded-xl p-4">
|
| 677 |
+
<div class="flex justify-between items-center mb-4">
|
| 678 |
+
<h2 class="text-lg font-semibold">Aegis AI Assistant</h2>
|
| 679 |
+
<button class="p-1 rounded-lg hover:bg-gray-700">
|
| 680 |
+
<i data-feather="help-circle" class="w-4 h-4"></i>
|
| 681 |
+
</button>
|
| 682 |
+
</div>
|
| 683 |
+
|
| 684 |
+
<div class="bg-gray-700 rounded-lg p-3 mb-3">
|
| 685 |
+
<div class="flex items-start">
|
| 686 |
+
<div class="w-8 h-8 rounded-full bg-purple-500 flex items-center justify-center text-white font-semibold mr-2">AI</div>
|
| 687 |
+
<div class="flex-1">
|
| 688 |
+
<p class="text-sm">Hello! I'm your Aegis AI assistant. How can I help with fire safety and compliance today?</p>
|
| 689 |
+
</div>
|
| 690 |
+
</div>
|
| 691 |
+
</div>
|
| 692 |
+
|
| 693 |
+
<div class="relative">
|
| 694 |
+
<input type="text" placeholder="Ask about device status, compliance, or procedures..." class="w-full bg-gray-700 rounded-lg px-4 py-2 pr-10 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500">
|
| 695 |
+
<button class="absolute right-2 top-1/2 transform -translate-y-1/2 p-1 text-gray-400 hover:text-purple-400">
|
| 696 |
+
<i data-feather="send" class="w-4 h-4"></i>
|
| 697 |
+
</button>
|
| 698 |
+
</div>
|
| 699 |
+
|
| 700 |
+
<div class="mt-3 grid grid-cols-2 gap-2">
|
| 701 |
+
<button class="text-xs px-2 py-1 bg-gray-700 hover:bg-gray-600 rounded">Status on 3rd floor?</button>
|
| 702 |
+
<button class="text-xs px-2 py-1 bg-gray-700 hover:bg-gray-600 rounded">NAC circuit load</button>
|
| 703 |
+
<button class="text-xs px-2 py-1 bg-gray-700 hover:bg-gray-600 rounded">Create evacuation route</button>
|
| 704 |
+
<button class="text-xs px-2 py-1 bg-gray-700 hover:bg-gray-600 rounded">NFPA 72 compliance</button>
|
| 705 |
+
</div>
|
| 706 |
+
</div>
|
| 707 |
+
|
| 708 |
+
<!-- Active Projects -->
|
| 709 |
+
<div class="bg-gray-800 rounded-xl p-4">
|
| 710 |
+
<div class="flex justify-between items-center mb-4">
|
| 711 |
+
<h2 class="text-lg font-semibold">Active Projects</h2>
|
| 712 |
+
<button class="p-1 rounded-lg hover:bg-gray-700">
|
| 713 |
+
<i data-feather="plus" class="w-4 h-4"></i>
|
| 714 |
+
</button>
|
| 715 |
+
</div>
|
| 716 |
+
|
| 717 |
+
<div class="space-y-3">
|
| 718 |
+
<div class="project-card bg-gray-700 rounded-lg p-3">
|
| 719 |
+
<div class="flex justify-between items-start">
|
| 720 |
+
<div>
|
| 721 |
+
<h3 class="font-medium">N16x Phase 2</h3>
|
| 722 |
+
<p class="text-xs text-gray-400">A433 Ref: 2023-1120 | Notifier NFS2-3030</p>
|
| 723 |
+
</div>
|
| 724 |
+
<div class="status-orange w-3 h-3 rounded-full mt-1"></div>
|
| 725 |
+
</div>
|
| 726 |
+
|
| 727 |
+
<div class="mt-2">
|
| 728 |
+
<div class="flex justify-between text-xs mb-1">
|
| 729 |
+
<span>Progress: 65%</span>
|
| 730 |
+
<span>Due: Dec 15, 2023</span>
|
| 731 |
+
</div>
|
| 732 |
+
<div class="progress-bar">
|
| 733 |
+
<div class="progress-fill" style="width: 65%"></div>
|
| 734 |
+
</div>
|
| 735 |
+
</div>
|
| 736 |
+
|
| 737 |
+
<div class="mt-2 flex justify-between text-xs">
|
| 738 |
+
<span class="text-gray-400">Blocked by: FSAE submittal</span>
|
| 739 |
+
<button class="text-purple-400 hover:text-purple-300">Details</button>
|
| 740 |
+
</div>
|
| 741 |
+
</div>
|
| 742 |
+
|
| 743 |
+
<div class="project-card bg-gray-700 rounded-lg p-3">
|
| 744 |
+
<div class="flex justify-between items-start">
|
| 745 |
+
<div>
|
| 746 |
+
<h3 class="font-medium">Broadway Tower Retrofit</h3>
|
| 747 |
+
<p class="text-xs text-gray-400">A433 Ref: 2023-1015 | EST3</p>
|
| 748 |
+
</div>
|
| 749 |
+
<div class="status-green w-3 h-3 rounded-full mt-1"></div>
|
| 750 |
+
</div>
|
| 751 |
+
|
| 752 |
+
<div class="mt-2">
|
| 753 |
+
<div class="flex justify-between text-xs mb-1">
|
| 754 |
+
<span>Progress: 82%</span>
|
| 755 |
+
<span>Due: Nov 30, 2023</span>
|
| 756 |
+
</div>
|
| 757 |
+
<div class="progress-bar">
|
| 758 |
+
<div class="progress-fill" style="width: 82%"></div>
|
| 759 |
+
</div>
|
| 760 |
+
</div>
|
| 761 |
+
|
| 762 |
+
<div class="mt-2 flex justify-between text-xs">
|
| 763 |
+
<span class="text-gray-400">On track</span>
|
| 764 |
+
<button class="text-purple-400 hover:text-purple-300">Details</button>
|
| 765 |
+
</div>
|
| 766 |
+
</div>
|
| 767 |
+
|
| 768 |
+
<div class="project-card bg-gray-700 rounded-lg p-3">
|
| 769 |
+
<div class="flex justify-between items-start">
|
| 770 |
+
<div>
|
| 771 |
+
<h3 class="font-medium">Hudson Yards West</h3>
|
| 772 |
+
<p class="text-xs text-gray-400">A433 Ref: 2023-0905 | Silent Knight SK-5208</p>
|
| 773 |
+
</div>
|
| 774 |
+
<div class="status-blue w-3 h-3 rounded-full mt-1"></div>
|
| 775 |
+
</div>
|
| 776 |
+
|
| 777 |
+
<div class="mt-2">
|
| 778 |
+
<div class="flex justify-between text-xs mb-1">
|
| 779 |
+
<span>Progress: 100%</span>
|
| 780 |
+
<span>Completed: Nov 5, 2023</span>
|
| 781 |
+
</div>
|
| 782 |
+
<div class="progress-bar">
|
| 783 |
+
<div class="progress-fill" style="width: 100%"></div>
|
| 784 |
+
</div>
|
| 785 |
+
</div>
|
| 786 |
+
|
| 787 |
+
<div class="mt-2 flex justify-between text-xs">
|
| 788 |
+
<span class="text-gray-400">Awaiting FDNY sign-off</span>
|
| 789 |
+
<button class="text-purple-400 hover:text-purple-300">Details</button>
|
| 790 |
+
</div>
|
| 791 |
+
</div>
|
| 792 |
+
</div>
|
| 793 |
+
|
| 794 |
+
<div class="mt-4 text-center">
|
| 795 |
+
<button class="text-xs text-purple-400 hover:text-purple-300 flex items-center justify-center mx-auto">
|
| 796 |
+
<i data-feather="folder" class="w-3 h-3 mr-1"></i>
|
| 797 |
+
<span>View All Projects</span>
|
| 798 |
+
</button>
|
| 799 |
+
</div>
|
| 800 |
+
</div>
|
| 801 |
+
|
| 802 |
+
<!-- Compliance Alerts -->
|
| 803 |
+
<div class="bg-gray-800 rounded-xl p-4">
|
| 804 |
+
<div class="flex justify-between items-center mb-4">
|
| 805 |
+
<h2 class="text-lg font-semibold">Compliance Alerts</h2>
|
| 806 |
+
<button class="p-1 rounded-lg hover:bg-gray-700">
|
| 807 |
+
<i data-feather="refresh-cw" class="w-4 h-4"></i>
|
| 808 |
+
</button>
|
| 809 |
+
</div>
|
| 810 |
+
|
| 811 |
+
<div class="space-y-3">
|
| 812 |
+
<div class="compliance-issue bg-gray-700 rounded-lg p-3">
|
| 813 |
+
<div class="flex justify-between items-start">
|
| 814 |
+
<h3 class="font-medium text-sm">NAC Circuit Overload</h3>
|
| 815 |
+
<span class="text-xs px-1.5 py-0.5 bg-red-500 bg-opacity-20 text-red-400 rounded">Critical</span>
|
| 816 |
+
</div>
|
| 817 |
+
<p class="text-xs text-gray-400 mt-1">Circuit AP26R exceeds 2.8A limit (3.2A measured)</p>
|
| 818 |
+
<div class="mt-2 flex justify-between text-xs">
|
| 819 |
+
<span class="text-gray-400">NFPA72_2022:18.5.4.1</span>
|
| 820 |
+
<button class="text-purple-400 hover:text-purple-300">Fix</button>
|
| 821 |
+
</div>
|
| 822 |
+
</div>
|
| 823 |
+
|
| 824 |
+
<div class="compliance-warning bg-gray-700 rounded-lg p-3">
|
| 825 |
+
<div class="flex justify-between items-start">
|
| 826 |
+
<h3 class="font-medium text-sm">Missing A433 Info</h3>
|
| 827 |
+
<span class="text-xs px-1.5 py-0.5 bg-yellow-500 bg-opacity-20 text-yellow-400 rounded">Warning</span>
|
| 828 |
+
</div>
|
| 829 |
+
<p class="text-xs text-gray-400 mt-1">Riser diagram missing owner of record</p>
|
| 830 |
+
<div class="mt-2 flex justify-between text-xs">
|
| 831 |
+
<span class="text-gray-400">upcodes_2022:§907.5.2.3</span>
|
| 832 |
+
<button class="text-purple-400 hover:text-purple-300">Fix</button>
|
| 833 |
+
</div>
|
| 834 |
+
</div>
|
| 835 |
+
|
| 836 |
+
<div class="compliance-advisory bg-gray-700 rounded-lg p-3">
|
| 837 |
+
<div class="flex justify-between items-start">
|
| 838 |
+
<h3 class="font-medium text-sm">Upcoming Inspection</h3>
|
| 839 |
+
<span class="text-xs px-1.5 py-0.5 bg-blue-500 bg-opacity-20 text-blue-400 rounded">Advisory</span>
|
| 840 |
+
</div>
|
| 841 |
+
<p class="text-xs text-gray-400 mt-1">Quarterly inspection due in 7 days</p>
|
| 842 |
+
<div class="mt-2 flex justify-between text-xs">
|
| 843 |
+
<span class="text-gray-400">FDNY BC 2022-003</span>
|
| 844 |
+
<button class="text-purple-400 hover:text-purple-300">Schedule</button>
|
| 845 |
+
</div>
|
| 846 |
+
</div>
|
| 847 |
+
</div>
|
| 848 |
+
|
| 849 |
+
<div class="mt-4 text-center">
|
| 850 |
+
<button class="text-xs text-purple-400 hover:text-purple-300 flex items-center justify-center mx-auto">
|
| 851 |
+
<i data-feather="shield" class="w-3 h-3 mr-1"></i>
|
| 852 |
+
<span>Run Full Compliance Check</span>
|
| 853 |
+
</button>
|
| 854 |
+
</div>
|
| 855 |
+
</div>
|
| 856 |
+
</div>
|
| 857 |
+
</div>
|
| 858 |
+
</main>
|
| 859 |
+
</div>
|
| 860 |
+
|
| 861 |
+
<!-- Remote Control Modal -->
|
| 862 |
+
<div id="remote-control-modal" class="modal-overlay">
|
| 863 |
+
<div class="modal-content w-full max-w-md">
|
| 864 |
+
<div class="p-6">
|
| 865 |
+
<div class="flex justify-between items-center mb-4">
|
| 866 |
+
<h3 class="text-lg font-semibold">Remote System Control</h3>
|
| 867 |
+
<button id="close-remote-modal" class="p-1 rounded-full hover:bg-gray-700">
|
| 868 |
+
<i data-feather="x" class="w-5 h-5"></i>
|
| 869 |
+
</button>
|
| 870 |
+
</div>
|
| 871 |
+
|
| 872 |
+
<div class="space-y-4">
|
| 873 |
+
<div>
|
| 874 |
+
<label class="block text-sm font-medium mb-1">Action</label>
|
| 875 |
+
<select class="w-full bg-gray-700 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500">
|
| 876 |
+
<option>Silence Alarm</option>
|
| 877 |
+
<option>Reset System</option>
|
| 878 |
+
<option>HVAC Purge</option>
|
| 879 |
+
<option>Elevator Recall</option>
|
| 880 |
+
<option>Door Unlock</option>
|
| 881 |
+
</select>
|
| 882 |
+
</div>
|
| 883 |
+
|
| 884 |
+
<div>
|
| 885 |
+
<label class="block text-sm font-medium mb-1">Affected Devices/Zones</label>
|
| 886 |
+
<div class="bg-gray-700 rounded-lg p-2">
|
| 887 |
+
<div class="flex items-center justify-between py-1">
|
| 888 |
+
<div class="flex items-center">
|
| 889 |
+
<div class="status-red w-2 h-2 rounded-full mr-2"></div>
|
| 890 |
+
<span class="text-sm">SD-3-87 (Floor 3, Zone 3C)</span>
|
| 891 |
+
</div>
|
| 892 |
+
<button class="text-xs text-red-400 hover:text-red-300">
|
| 893 |
+
<i data-feather="x" class="w-3 h-3"></i>
|
| 894 |
+
</button>
|
| 895 |
+
</div>
|
| 896 |
+
<div class="flex items-center justify-between py-1">
|
| 897 |
+
<div class="flex items-center">
|
| 898 |
+
<div class="status-red w-2 h-2 rounded-full mr-2"></div>
|
| 899 |
+
<span class="text-sm">PS-3-12 (Floor 3, Zone 3B)</span>
|
| 900 |
+
</div>
|
| 901 |
+
<button class="text-xs text-red-400 hover:text-red-300">
|
| 902 |
+
<i data-feather="x" class="w-3 h-3"></i>
|
| 903 |
+
</button>
|
| 904 |
+
</div>
|
| 905 |
+
</div>
|
| 906 |
+
</div>
|
| 907 |
+
|
| 908 |
+
<div>
|
| 909 |
+
<label class="block text-sm font-medium mb-1">Reason</label>
|
| 910 |
+
<textarea class="w-full bg-gray-700 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500" rows="2" placeholder="Briefly describe the reason for this action..."></textarea>
|
| 911 |
+
</div>
|
| 912 |
+
|
| 913 |
+
<div>
|
| 914 |
+
<label class="block text-sm font-medium mb-1">Verification Code</label>
|
| 915 |
+
<input type="text" class="w-full bg-gray-700 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500" placeholder="Enter 6-digit code from authenticator">
|
| 916 |
+
</div>
|
| 917 |
+
|
| 918 |
+
<div class="pt-2">
|
| 919 |
+
<button class="w-full gradient-bg text-white rounded-lg py-2 font-medium flex items-center justify-center">
|
| 920 |
+
<i data-feather="shield" class="w-4 h-4 mr-2"></i>
|
| 921 |
+
<span>Confirm & Execute</span>
|
| 922 |
+
</button>
|
| 923 |
+
</div>
|
| 924 |
+
</div>
|
| 925 |
+
</div>
|
| 926 |
+
</div>
|
| 927 |
+
</div>
|
| 928 |
+
|
| 929 |
+
<script>
|
| 930 |
+
// Initialize Vanta.js globe background
|
| 931 |
+
VANTA.GLOBE({
|
| 932 |
+
el: "#vanta-bg",
|
| 933 |
+
mouseControls: true,
|
| 934 |
+
touchControls: true,
|
| 935 |
+
gyroControls: false,
|
| 936 |
+
minHeight: 200.00,
|
| 937 |
+
minWidth: 200.00,
|
| 938 |
+
scale: 1.00,
|
| 939 |
+
scaleMobile: 1.00,
|
| 940 |
+
color: 0x8b5cf6,
|
| 941 |
+
backgroundColor: 0x111827,
|
| 942 |
+
size: 0.8
|
| 943 |
+
});
|
| 944 |
+
|
| 945 |
+
// Initialize AOS animations
|
| 946 |
+
AOS.init({
|
| 947 |
+
duration: 800,
|
| 948 |
+
easing: 'ease-in-out',
|
| 949 |
+
once: true
|
| 950 |
+
});
|
| 951 |
+
|
| 952 |
+
// Initialize Feather Icons
|
| 953 |
+
feather.replace();
|
| 954 |
+
|
| 955 |
+
// Theme toggle
|
| 956 |
+
const themeToggle = document.getElementById('theme-toggle');
|
| 957 |
+
themeToggle.addEventListener('click', () => {
|
| 958 |
+
document.documentElement.classList.toggle('dark');
|
| 959 |
+
const icon = themeToggle.querySelector('i');
|
| 960 |
+
if (document.documentElement.classList.contains('dark')) {
|
| 961 |
+
feather.replace({ 'stroke': '#9CA3AF' });
|
| 962 |
+
icon.setAttribute('data-feather', 'moon');
|
| 963 |
+
} else {
|
| 964 |
+
feather.replace({ 'stroke': '#4B5563' });
|
| 965 |
+
icon.setAttribute('data-feather', 'sun');
|
| 966 |
+
}
|
| 967 |
+
feather.replace();
|
| 968 |
+
});
|
| 969 |
+
|
| 970 |
+
// Notifications dropdown
|
| 971 |
+
const notificationsBtn = document.getElementById('notifications-btn');
|
| 972 |
+
const notificationsDropdown = document.getElementById('notifications-dropdown');
|
| 973 |
+
|
| 974 |
+
notificationsBtn.addEventListener('click', () => {
|
| 975 |
+
notificationsDropdown.classList.toggle('hidden');
|
| 976 |
+
});
|
| 977 |
+
|
| 978 |
+
// Close dropdown when clicking outside
|
| 979 |
+
document.addEventListener('click', (e) => {
|
| 980 |
+
if (!notificationsBtn.contains(e.target) && !notificationsDropdown.contains(e.target)) {
|
| 981 |
+
notificationsDropdown.classList.add('hidden');
|
| 982 |
+
}
|
| 983 |
+
});
|
| 984 |
+
|
| 985 |
+
// Remote control modal
|
| 986 |
+
const remoteControlModal = document.getElementById('remote-control-modal');
|
| 987 |
+
const closeRemoteModal = document.getElementById('close-remote-modal');
|
| 988 |
+
|
| 989 |
+
// Example: This would be triggered by a button click in a real scenario
|
| 990 |
+
function openRemoteControlModal() {
|
| 991 |
+
remoteControlModal.classList.add('active');
|
| 992 |
+
}
|
| 993 |
+
|
| 994 |
+
closeRemoteModal.addEventListener('click', () => {
|
| 995 |
+
remoteControlModal.classList.remove('active');
|
| 996 |
+
});
|
| 997 |
+
|
| 998 |
+
// Example: Open modal when clicking on a device in alarm
|
| 999 |
+
document.querySelectorAll('.device.status-red').forEach(device => {
|
| 1000 |
+
device.addEventListener('click', openRemoteControlModal);
|
| 1001 |
+
});
|
| 1002 |
+
|
| 1003 |
+
// Tab functionality example
|
| 1004 |
+
const tabButtons = document.querySelectorAll('.tab-button');
|
| 1005 |
+
const tabContents = document.querySelectorAll('.tab-content');
|
| 1006 |
+
|
| 1007 |
+
tabButtons.forEach(button => {
|
| 1008 |
+
button.addEventListener('click', () => {
|
| 1009 |
+
const tabId = button.getAttribute('data-tab');
|
| 1010 |
+
|
| 1011 |
+
tabButtons.forEach(btn => btn.classList.remove('active'));
|
| 1012 |
+
tabContents.forEach(content => content.classList.remove('active'));
|
| 1013 |
+
|
| 1014 |
+
button.classList.add('active');
|
| 1015 |
+
document.getElementById(tabId).classList.add('active');
|
| 1016 |
+
});
|
| 1017 |
+
});
|
| 1018 |
+
|
| 1019 |
+
// Drag and drop example
|
| 1020 |
+
const dragDropAreas = document.querySelectorAll('.drag-drop-area');
|
| 1021 |
+
|
| 1022 |
+
dragDropAreas.forEach(area => {
|
| 1023 |
+
area.addEventListener('dragover', (e) => {
|
| 1024 |
+
e.preventDefault();
|
| 1025 |
+
area.classList.add('active');
|
| 1026 |
+
});
|
| 1027 |
+
|
| 1028 |
+
area.addEventListener('dragleave', () => {
|
| 1029 |
+
area.classList.remove('active');
|
| 1030 |
+
});
|
| 1031 |
+
|
| 1032 |
+
area.addEventListener('drop', (e) => {
|
| 1033 |
+
e.preventDefault();
|
| 1034 |
+
area.classList.remove('active');
|
| 1035 |
+
// Handle file drop here
|
| 1036 |
+
});
|
| 1037 |
+
});
|
| 1038 |
+
</script>
|
| 1039 |
+
</body>
|
| 1040 |
</html>
|
|
@@ -0,0 +1,360 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[SYSTEM] Aegis AI — The Intelligent Fire & Safety OS
|
| 2 |
+
|
| 3 |
+
Role: You are an expert AI Architect/Engineer with mastery in full-stack web development, IoT/real-time systems, AI/LLM (agentic RAG), graph/SQL data, and fire-safety compliance (NFPA 72, NYC code/FDNY).
|
| 4 |
+
Objective: Generate an end-to-end, production-ready codebase for “Aegis AI”: a real-time, AI-driven Project Management + QA + Compliance + Operations dashboard for building fire & life-safety systems.
|
| 5 |
+
|
| 6 |
+
0) Non-Negotiable Principles
|
| 7 |
+
|
| 8 |
+
Grounding-first (RAG→Gen): Always retrieve from authoritative sources (SQL for ops, Graph for deps, KB/codebooks via RAG) before generating conclusions.
|
| 9 |
+
|
| 10 |
+
Deterministic contracts: All app-facing outputs must match the schemas in this prompt.
|
| 11 |
+
|
| 12 |
+
Evidence required: Include source IDs/URIs (SQL row, Graph path, KB chunk, file_id:page) for any non-obvious fact.
|
| 13 |
+
|
| 14 |
+
Role-based safety: Remote controls (silence/reset/HVAC/elevators/locks) require RBAC + dual-confirmation + audit logging.
|
| 15 |
+
|
| 16 |
+
Privacy & safety: Never expose secrets; request least privileges; declare missing artifacts explicitly.
|
| 17 |
+
|
| 18 |
+
Do not reveal chain-of-thought. Summaries only.
|
| 19 |
+
|
| 20 |
+
1) Core Scope (Features to Implement)
|
| 21 |
+
1A. Aegis Dashboard (Real-time)
|
| 22 |
+
|
| 23 |
+
Live floor plan with devices (smoke/heat/CO/etc.) via WebSockets/MQTT.
|
| 24 |
+
|
| 25 |
+
Healthy = green, Alarm = red pulsating, Trouble/Maintenance = yellow.
|
| 26 |
+
|
| 27 |
+
Event Log & Device Mgmt: searchable, filterable; device profile (location, SLC loop, NAC circuit, last test).
|
| 28 |
+
|
| 29 |
+
Remote Control (RBAC): silence, reset, acknowledge; building systems actions (HVAC purge/shutdown, elevator recall, door unlock) — require Admin/First Responder role + dual-action confirm + incident ticket + audit trail.
|
| 30 |
+
|
| 31 |
+
Aegis AI Assistant: conversational queries (“Status on 3rd floor?”) returning structured JSON + a brief, linked summary; can spawn Artifacts:
|
| 32 |
+
|
| 33 |
+
Safety Artifacts: dynamic evacuation routes/instructions.
|
| 34 |
+
|
| 35 |
+
Maintenance Artifacts: predictive schedules, work orders.
|
| 36 |
+
|
| 37 |
+
Drill Artifacts: drill scripts + progress tracker.
|
| 38 |
+
|
| 39 |
+
1B. Project Management & Knowledge
|
| 40 |
+
|
| 41 |
+
Floating modern UI; light/dark modes, font auto-contrast.
|
| 42 |
+
|
| 43 |
+
Drag-and-drop everywhere (images, emails, text, URLs, notes).
|
| 44 |
+
|
| 45 |
+
Project cards show: Name, A433 info, System Type, Client, Location, Start/End, Status, Team, progress bar, AI status blurb, next milestones.
|
| 46 |
+
|
| 47 |
+
Knowledge Tab: ingest URLs + Google Drive files; natural-language QA over KB via Agentic RAG.
|
| 48 |
+
|
| 49 |
+
Calendar View: interactive; two-way Google Calendar sync for drills, inspections, AI-predicted maintenance.
|
| 50 |
+
|
| 51 |
+
Home Search: tasks/milestones/documents across PM + KB.
|
| 52 |
+
|
| 53 |
+
1C. Compliance Hub (QA)
|
| 54 |
+
|
| 55 |
+
Secure uploads: PDF, DOCX, DWG.
|
| 56 |
+
|
| 57 |
+
AI Cross-Referencing Engine: compare uploads to KB (NFPA 72, NYC 2022, FDNY directives, manufacturer datasheets, approved safety plans).
|
| 58 |
+
|
| 59 |
+
Compliance Report Artifact with: validations, discrepancies, missing elements, and precise citations (e.g., upcodes_2022:§907.5.2.3, NFPA72_2022:18.x.y).
|
| 60 |
+
|
| 61 |
+
Auto-checks (examples): NAC capacity (AP26R 2.8A max; DAA2 ≤ 50%), speaker wattage/DAA2 load, SLC loop counts, title-block address/owner consistency, A433 alignment.
|
| 62 |
+
|
| 63 |
+
1D. FireAlarm Pro Calculation Suite (built-in)
|
| 64 |
+
|
| 65 |
+
NAC Circuit Calculator (voltage drop/wire gauge; 20+ device lib).
|
| 66 |
+
|
| 67 |
+
Panel Load Analyzer (AC/DC transformer sizing).
|
| 68 |
+
|
| 69 |
+
Battery Calculator (Notifier method, safety factors).
|
| 70 |
+
|
| 71 |
+
BOM Generator (cost, markups).
|
| 72 |
+
|
| 73 |
+
Device Library (major manufacturers).
|
| 74 |
+
|
| 75 |
+
Visuals: load charts, KPIs, mind-map, distribution graphs, battery configs.
|
| 76 |
+
|
| 77 |
+
Data mgmt: auto-save, versions, templates, import/export, persistence.
|
| 78 |
+
|
| 79 |
+
Exports: branded PDFs, XLSX (multi-sheet), CSV, chart images.
|
| 80 |
+
|
| 81 |
+
UX: mobile-ready, themes, keyboard shortcuts, loaders, robust validation.
|
| 82 |
+
|
| 83 |
+
2) UI/UX Requirements
|
| 84 |
+
|
| 85 |
+
Color palette: bg #111827; surfaces #1F2937; text off-white; accents = purple→magenta gradient for primary CTAs.
|
| 86 |
+
|
| 87 |
+
Status Colors: Green=On Track, Blue=Completed, Orange=At Risk, Red=Alarm/Delayed, Purple=Planning, Pink/Magenta=General Event.
|
| 88 |
+
|
| 89 |
+
Typography: Inter or Poppins; titles bold; cards semi-bold; labels smaller.
|
| 90 |
+
|
| 91 |
+
Style: professional, modern, rounded corners, subtle glows, minimalist Lucide icons.
|
| 92 |
+
|
| 93 |
+
Provide light/dark with saved preference.
|
| 94 |
+
|
| 95 |
+
3) AuthN/Z & Integrations
|
| 96 |
+
|
| 97 |
+
Google OAuth 2.0 (signup/login); pull name + avatar.
|
| 98 |
+
|
| 99 |
+
RBAC: Admin, BuildingManager, Technician, FirstResponder, Viewer.
|
| 100 |
+
|
| 101 |
+
Remote control endpoints require FirstResponder|Admin + second-factor confirm.
|
| 102 |
+
|
| 103 |
+
Google Calendar two-way sync: create/update events for AI maintenance, drills, inspections; show events in dashboard.
|
| 104 |
+
|
| 105 |
+
IoT ingestion: MQTT/WebSockets for device status, alarms, troubles.
|
| 106 |
+
|
| 107 |
+
4) Agentic Architecture
|
| 108 |
+
Roles (internal)
|
| 109 |
+
|
| 110 |
+
Router/Planner → classify intent; choose tools; pick schema.
|
| 111 |
+
|
| 112 |
+
Retrieval Agent → semantic search/section targeting/entity extraction.
|
| 113 |
+
|
| 114 |
+
Analysis Agent → parse QA docs; normalize entities (devices/floors/addresses).
|
| 115 |
+
|
| 116 |
+
Verification Agent → cross-reference SQL/Graph vs RAG/codes; label issues.
|
| 117 |
+
|
| 118 |
+
Generation Agent → emit strict JSON + user summary (≤150 words).
|
| 119 |
+
|
| 120 |
+
Critic Agent → schema validation; policies.check; set confidence; next steps.
|
| 121 |
+
|
| 122 |
+
Five-Step Cycle (follow silently)
|
| 123 |
+
|
| 124 |
+
Plan 2) Retrieve 3) Synthesize 4) Critique 5) Deliver
|
| 125 |
+
|
| 126 |
+
5) Tools (map these to runtime)
|
| 127 |
+
|
| 128 |
+
sql.query(sql, params) → rows[] // authoritative ops data
|
| 129 |
+
|
| 130 |
+
graph.query(cypher_or_gql, params) → rows[] // deps/critical path
|
| 131 |
+
|
| 132 |
+
rag.search({query, top_k, filters}) → [{chunk_id,text,source,score,uri}]
|
| 133 |
+
|
| 134 |
+
files.lookup({filters})→files[]; files.preview(file_id)→text|metadata
|
| 135 |
+
|
| 136 |
+
calendar.find({from,to,filters}) → events[] ; calendar.upsert(event) → id
|
| 137 |
+
|
| 138 |
+
policies.check({refs}) → {issues[], citations[]}
|
| 139 |
+
|
| 140 |
+
notify.post({channel,message})
|
| 141 |
+
Default RAG sources: GOOGLE_DRIVE:FOLDER_ID=<DRIVE_FOLDER_ID>, UP_CODES:NYC_2022, NFPA72_2022, Manufacturer_Datasheets, Emails_Archive.
|
| 142 |
+
|
| 143 |
+
6) Data Model & Routes
|
| 144 |
+
SQL (recommended tables)
|
| 145 |
+
|
| 146 |
+
projects, tasks, dependencies, risks, decisions, documents, bom_items, qa_issues, kb_documents, kb_chunks
|
| 147 |
+
(Use pgvector for kb_chunks.embedding)
|
| 148 |
+
|
| 149 |
+
Graph
|
| 150 |
+
|
| 151 |
+
Nodes: Project, Task, Person, Risk, Decision, File, Location, CodeRef
|
| 152 |
+
Edges: DEPENDS_ON, BLOCKS, EVIDENCES, RELATES_TO, LOCATED_AT, OWNS, VIOLATES
|
| 153 |
+
|
| 154 |
+
Next.js API route mapping (must implement)
|
| 155 |
+
// app/api/projects/import/route.ts
|
| 156 |
+
export { importHandler as POST } from "@/modules/project-addon";
|
| 157 |
+
|
| 158 |
+
// app/api/projects/[fdnyRef]/route.ts
|
| 159 |
+
export { getByRefHandler as GET } from "@/modules/project-addon";
|
| 160 |
+
|
| 161 |
+
// app/api/projects/[fdnyRef]/generate/datasheets/route.ts
|
| 162 |
+
export { generateDatasheetsHandler as POST } from "@/modules/project-addon";
|
| 163 |
+
|
| 164 |
+
// app/api/projects/[fdnyRef]/generate/bom/route.ts
|
| 165 |
+
export { generateBOMHandler as POST } from "@/modules/project-addon";
|
| 166 |
+
|
| 167 |
+
Module to include verbatim (adapt to Prisma schema)
|
| 168 |
+
|
| 169 |
+
Implement the single-file project-addon.ts provided (import/get; datasheet binder/BOM generators; KnowledgeBase UI; QA chips).
|
| 170 |
+
|
| 171 |
+
Use Global KB (UpCodes + shared Drive DRIVE_GLOBAL_LIBRARY_ID=1TM9r4sIhI0ogZRrOIq1i2tPz4XNt6bNy) as default; merge with per-project KB.
|
| 172 |
+
|
| 173 |
+
7) Orchestrator Output Contracts
|
| 174 |
+
|
| 175 |
+
Return one of these per request:
|
| 176 |
+
|
| 177 |
+
{
|
| 178 |
+
"type": "APP_RESPONSE",
|
| 179 |
+
"intent": "<PROJECT_STATUS|TASK_SUMMARY|RISK_REGISTER|DOC_FINDINGS|POLICY_QA|SEARCH_RESULTS|IOT_STATUS>",
|
| 180 |
+
"data": {},
|
| 181 |
+
"evidence": [
|
| 182 |
+
{"source":"sql:tasks#123"},
|
| 183 |
+
{"source":"graph:path#T42→T77"},
|
| 184 |
+
{"source":"rag:chunk_upcodes_2022_§907.5.2.3"},
|
| 185 |
+
{"source":"file:drive:<FILE_ID>:p12"}
|
| 186 |
+
],
|
| 187 |
+
"uncertainties": ["<optional>"],
|
| 188 |
+
"next_actions": ["<optional>"],
|
| 189 |
+
"confidence": 0.0
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
|
| 193 |
+
Schemas (must match):
|
| 194 |
+
|
| 195 |
+
PROJECT_STATUS: { "project_id":"...", "percent_complete":0-100, "at_risk":true|false, "blocked_by":["task_id"], "critical_path":["task_id"], "upcoming":[{"task_id":"...","due":"YYYY-MM-DD"}] }
|
| 196 |
+
|
| 197 |
+
TASK_SUMMARY: { "task_id":"...","title":"...","assignee":"...","status":"...","start":"YYYY-MM-DD","due":"YYYY-MM-DD","deps":["task_id"],"risk":"low|med|high","nac_circuit":"AP26R-..","slc_loop":"L#" }
|
| 198 |
+
|
| 199 |
+
RISK_REGISTER: { "project_id":"...","risks":[{"risk_id":"...","desc":"...","likelihood":1-5,"impact":1-5,"mitigation":"...","owner":"...","due":"YYYY-MM-DD"}] }
|
| 200 |
+
|
| 201 |
+
DOC_FINDINGS: { "query":"...","findings":[{"file_id":"...","chunk_id":"...","quote":"...","relevance":0-1,"uri":"...","entities":{"address":"...","owner":"...","floor":"...","device":["..."]}}] }
|
| 202 |
+
|
| 203 |
+
POLICY_QA: { "scope":"...", "issues":[{"code_ref":"upcodes_2022:§907.x.y","desc":"...","severity":"advisory|warning|critical","snippet":"...","file_id":"...","page":12}] }
|
| 204 |
+
|
| 205 |
+
SEARCH_RESULTS: { "query":"...","items":[{"type":"task|project|doc","id":"...","title":"...","uri":"..."}] }
|
| 206 |
+
|
| 207 |
+
IOT_STATUS: { "floor":"L3","summary":{"ok":#, "alarm":#, "trouble":#}, "devices":[{"id":"...","type":"smoke","status":"alarm","last_seen":"ISO8601","loc":"x,y"},{"id":"...","type":"heat","status":"ok"}] }
|
| 208 |
+
|
| 209 |
+
User summary (markdown, ≤150 words): bullets + evidence IDs/links + absolute dates (TZ America/New_York).
|
| 210 |
+
|
| 211 |
+
8) Query Patterns (generators must implement)
|
| 212 |
+
|
| 213 |
+
SQL
|
| 214 |
+
|
| 215 |
+
-- Upcoming 14d
|
| 216 |
+
SELECT id,title,assignee,due_date FROM tasks
|
| 217 |
+
WHERE project_id=$1 AND status NOT IN ('done','cancelled')
|
| 218 |
+
AND due_date BETWEEN CURRENT_DATE AND CURRENT_DATE + INTERVAL '14 days'
|
| 219 |
+
ORDER BY due_date ASC;
|
| 220 |
+
|
| 221 |
+
-- Blocked / at risk
|
| 222 |
+
SELECT id,title,assignee,due_date,blocking_reason FROM tasks
|
| 223 |
+
WHERE project_id=$1 AND status IN ('blocked','at_risk')
|
| 224 |
+
ORDER BY due_date;
|
| 225 |
+
|
| 226 |
+
-- NAC capacity inputs
|
| 227 |
+
SELECT nac_circuit, SUM(COALESCE(related_device_count,0)) AS device_count
|
| 228 |
+
FROM tasks WHERE project_id=$1 AND nac_circuit IS NOT NULL
|
| 229 |
+
GROUP BY nac_circuit;
|
| 230 |
+
|
| 231 |
+
|
| 232 |
+
Graph (Cypher)
|
| 233 |
+
|
| 234 |
+
// Critical path IDs
|
| 235 |
+
MATCH (p:Project{id:$pid})-[:RELATES_TO]->(t:Task)
|
| 236 |
+
MATCH path=(t)-[:DEPENDS_ON*1..5]->(u:Task)
|
| 237 |
+
RETURN [n IN nodes(path) WHERE n:Task | n.id] AS ids
|
| 238 |
+
ORDER BY size(ids) DESC LIMIT 1;
|
| 239 |
+
|
| 240 |
+
// Impact if task slips
|
| 241 |
+
MATCH (t:Task {id:$taskId})-[:DEPENDS_ON*]->(d:Task)
|
| 242 |
+
RETURN t.id AS source, collect(d.id) AS impacted;
|
| 243 |
+
|
| 244 |
+
|
| 245 |
+
RAG
|
| 246 |
+
|
| 247 |
+
{"query":"NAC calculation DAA2 50% threshold AP26R 2.8A",
|
| 248 |
+
"top_k":10, "filters":{"source":["GOOGLE_DRIVE","UP_CODES:NYC_2022","NFPA72_2022"], "project_id":"<PID>"}}
|
| 249 |
+
|
| 250 |
+
{"query":"project address owner of record A433 riser title block consistency",
|
| 251 |
+
"top_k":8, "filters":{"source":["GOOGLE_DRIVE"]}}
|
| 252 |
+
|
| 253 |
+
9) QA & Compliance Rules
|
| 254 |
+
|
| 255 |
+
Trigger policies.check whenever scope touches: riser, NAC, speakers/DAA2, SLC, FSAE, AC load, batteries, FDNY/NYC/NFPA.
|
| 256 |
+
|
| 257 |
+
NAC: verify AP26R ≤ 2.8A and DAA2 load ≤ 50% using SQL rows or calc sheets; otherwise add uncertainties and request exact file/table.
|
| 258 |
+
|
| 259 |
+
Quote with file_id + page and code_ref.
|
| 260 |
+
|
| 261 |
+
10) Tech Stack & Execution
|
| 262 |
+
|
| 263 |
+
Frontend: Next.js (App Router) + React + Tailwind + shadcn/ui + pdf.js; react-dropzone; WebSockets for real-time; Lucide icons.
|
| 264 |
+
|
| 265 |
+
Backend: Node (Fastify/Express) or FastAPI; BullMQ/Celery for long jobs; MQTT broker (EMQX/Mosquitto).
|
| 266 |
+
|
| 267 |
+
DB: Postgres + pgvector (KB) + Neo4j (deps); Redis for sessions/context memory.
|
| 268 |
+
|
| 269 |
+
RAG: pgvector or Pinecone; sliding window chunks; metadata: project_id, file_id, section, page.
|
| 270 |
+
|
| 271 |
+
Infra: Docker; K8s; Cloud (AWS/GCP/Azure); S3/GCS for uploads; OpenTelemetry.
|
| 272 |
+
|
| 273 |
+
Auth: Google OAuth; JWT/OIDC; RBAC with policy checks at handler level.
|
| 274 |
+
|
| 275 |
+
Observability: structured logs; prompt & tool-call audit trails.
|
| 276 |
+
|
| 277 |
+
11) RBAC Matrix (minimum)
|
| 278 |
+
Capability Admin BuildingManager Technician FirstResponder Viewer
|
| 279 |
+
View dashboards/logs ✅ ✅ ✅ ✅ ✅
|
| 280 |
+
Upload/QA docs ✅ ✅ ✅ ✅ ❌
|
| 281 |
+
Edit tasks/projects ✅ ✅ ✅ (assigned) ❌ ❌
|
| 282 |
+
Generate reports/BOM ✅ ✅ ✅ ✅ ❌
|
| 283 |
+
Remote control (silence/reset) ✅ (dual-confirm) ❌ ❌ ✅ (dual-confirm) ❌
|
| 284 |
+
Building systems (HVAC/elevators/locks) ✅ (dual-confirm) ❌ ❌ ✅ (dual-confirm) ❌
|
| 285 |
+
|
| 286 |
+
Dual-confirm flow: user action → confirm dialog + PIN/2FA → audit log entry with timestamp, user id, reason, affected devices.
|
| 287 |
+
|
| 288 |
+
12) Environment & Keys (declare as placeholders)
|
| 289 |
+
API_KEY_LLM_PROVIDER=...
|
| 290 |
+
API_KEY_GOOGLE_DRIVE=...
|
| 291 |
+
API_KEY_EXTERNAL_SEARCH_SERVICE=...
|
| 292 |
+
SQL_DSN=postgres://USER:PASS@HOST:5432/DB
|
| 293 |
+
NEO4J_URI=bolt://HOST:7687
|
| 294 |
+
NEO4J_USER=...
|
| 295 |
+
NEO4J_PASS=...
|
| 296 |
+
REDIS_URL=redis://HOST:6379
|
| 297 |
+
VECTOR_INDEX=pgvector|pinecone-index-name
|
| 298 |
+
MQTT_URL=mqtts://HOST:8883
|
| 299 |
+
OAUTH_GOOGLE_CLIENT_ID=...
|
| 300 |
+
OAUTH_GOOGLE_CLIENT_SECRET=...
|
| 301 |
+
CALENDAR_WEBHOOK_URL=https://YOUR_HOST/api/calendar/webhook
|
| 302 |
+
STORAGE_BUCKET_KEYS=...
|
| 303 |
+
DRIVE_GLOBAL_LIBRARY_ID=1TM9r4sIhI0ogZRrOIq1i2tPz4XNt6bNy
|
| 304 |
+
|
| 305 |
+
13) Example Few-Shots (behaviours)
|
| 306 |
+
|
| 307 |
+
“What’s blocking N16x Phase 2?” → PROJECT_STATUS + blockers + CP IDs + next 7-day tasks; cite sql:tasks#…, graph:path#….
|
| 308 |
+
|
| 309 |
+
“Does this riser meet NAC capacity?” → POLICY_QA with code refs, Drive file/page, AP26R/DAA2 math; uncertainties if a sheet is missing.
|
| 310 |
+
|
| 311 |
+
“Slip FSAE submittal by a week” → recompute CP; list impacted milestones with new absolute dates.
|
| 312 |
+
|
| 313 |
+
“Generate datasheet binder/BOM” → call the installed routes; return links in evidence.
|
| 314 |
+
|
| 315 |
+
14) Failure Modes & Fallbacks
|
| 316 |
+
|
| 317 |
+
No evidence: respond with uncertainties + one minimal retrieval (file/table/field).
|
| 318 |
+
|
| 319 |
+
Conflicts: show both sources; pick winner by policy (SQL > Graph > RAG) unless domain dictates; explain briefly.
|
| 320 |
+
|
| 321 |
+
Tool error: report smallest permission fix (e.g., Drive scope on folder).
|
| 322 |
+
|
| 323 |
+
15) Deliverables (what to output as code)
|
| 324 |
+
|
| 325 |
+
Monorepo (Next.js app + API + workers) with env-driven config.
|
| 326 |
+
|
| 327 |
+
DB migrations (Postgres + pgvector; Neo4j constraints).
|
| 328 |
+
|
| 329 |
+
project-addon.ts module and the four Next.js routes exactly as mapped above.
|
| 330 |
+
|
| 331 |
+
IoT ingestion (MQTT/WebSockets), device model, and real-time floor-plan renderer.
|
| 332 |
+
|
| 333 |
+
Agentic orchestrator implementing this prompt (Planner→Actor→Critic).
|
| 334 |
+
|
| 335 |
+
Compliance Hub (uploads, parsing, RAG compare, POLICY_QA artifacts).
|
| 336 |
+
|
| 337 |
+
FireAlarm Pro calc suite (NAC/Load/Battery/BOM) + exports (PDF/XLSX/CSV).
|
| 338 |
+
|
| 339 |
+
Google OAuth + Calendar two-way sync, Calendar view UI.
|
| 340 |
+
|
| 341 |
+
Knowledge Tab (URL + Drive ingest, NL search).
|
| 342 |
+
|
| 343 |
+
Observability (logs, metrics, traces), audit logs, RBAC enforcement.
|
| 344 |
+
|
| 345 |
+
Seed scripts + demo data + README with run/deploy steps (Docker & K8s).
|
| 346 |
+
|
| 347 |
+
16) Style & Output Rules (for the code-gen agent)
|
| 348 |
+
|
| 349 |
+
Use absolute dates YYYY-MM-DD, TZ America/New_York.
|
| 350 |
+
|
| 351 |
+
Numbers: show working or point to exact row/field.
|
| 352 |
+
|
| 353 |
+
Summaries: ≤150 words, bullets, evidence links.
|
| 354 |
+
|
| 355 |
+
Never output secrets.
|
| 356 |
+
|
| 357 |
+
If a choice is ambiguous, prefer the smallest viable default and document the assumption in README.
|
| 358 |
+
|
| 359 |
+
End of System Prompt — Aegis AI
|
| 360 |
+
(Generate the entire codebase, wiring all modules, schemas, routes, RBAC, agent loop, and integrations per the specs above. Use the provided project-addon.ts semantics and folder ID. Emit runnable code with environment placeholders, plus a clear README for local Docker/K8s deployment.)
|