From 61a4d37d941434894589bc98b391e35a60b1b9b4 Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 21 Mar 2026 20:57:16 -0500 Subject: [PATCH] Update AGENTS.md --- AGENTS.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index b80e443..fcd947f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -420,23 +420,22 @@ Triggered by clicking any port indicator dot on applicable modules. - Inline VLAN quick-create (add new VLAN ID + name without leaving modal) - Save / Cancel -**Devices with interactive ports:** `SWITCH`, `AGGREGATE_SWITCH`, `ROUTER`, `FIREWALL`, `PATCH_PANEL`, `AP`, `MODEM` -**Devices without ports:** `NAS`, `PDU`, `BLANK` (SERVER optionally has ports) +**Devices with interactive ports:** `SWITCH`, `AGGREGATE_SWITCH`, `ROUTER`, `FIREWALL`, `PATCH_PANEL`, `AP`, `MODEM`, `NAS`, `PDU`, (SERVER optionally has ports) (Ability to add custom rack items) (Ability to assign number of ports and what type they are to network devices) (Constants are good for rapid deployment bu all devices beed to be fully configurable) ### Port Count & U-Size Defaults (`constants.ts`) ```ts export const MODULE_PORT_DEFAULTS: Record = { SWITCH: 24, - AGGREGATE_SWITCH: 48, + AGGREGATE_SWITCH: 8, ROUTER: 4, FIREWALL: 8, PATCH_PANEL: 24, AP: 1, MODEM: 2, SERVER: 2, - NAS: 0, - PDU: 0, + NAS: 1, + PDU: 12, BLANK: 0, OTHER: 0, };