This commit is contained in:
2026-04-26 11:55:07 +03:00
parent d78bb58faf
commit 07d4b2b971
3 changed files with 12 additions and 4 deletions

View File

@@ -31,9 +31,6 @@ This is the **Single Source of Truth** for ALL AI agents. Refer to [PROJECT_ARCH
- **Layout**: Main pages MUST use `max-w-7xl`. - **Layout**: Main pages MUST use `max-w-7xl`.
- **Unified Headers**: Icon box (`p-4 bg-primary/10 border-primary/20`) + Title (`text-3xl font-normal`). - **Unified Headers**: Icon box (`p-4 bg-primary/10 border-primary/20`) + Title (`text-3xl font-normal`).
- **Iconography**: Use **Lucide Icons** exclusively. - **Iconography**: Use **Lucide Icons** exclusively.
- **Design**: Convert design from `DESIGN.md` file system into a tailwind.config.js file. Create global CSS variables from rules from `DESIGN.md` file.
## 4. REFACTORING & TESTING STRATEGY (MANDATORY) ## 4. REFACTORING & TESTING STRATEGY (MANDATORY)
- **TEST-FIRST**: All tests must be written and passing BEFORE refactoring any code. - **TEST-FIRST**: All tests must be written and passing BEFORE refactoring any code.

View File

@@ -14,3 +14,13 @@ Be concise! Do not explain a thousand details unless they are absolutely necessa
Do not proceed with any task until you have analyzed these three files. Do not proceed with any task until you have analyzed these three files.
DO NOT, EVER, USE "uppercase" or "toUpper" in any UI/UX context, nowhere. This SHOULD NOT be used in UI/UX anywhere, no text should be displayed in CAPITAL LETTERS! But do not replace "toUpper" with "toLower" or "uppercase" with "lowercase" either, leave text in UI/UX as is. DO NOT, EVER, USE "uppercase" or "toUpper" in any UI/UX context, nowhere. This SHOULD NOT be used in UI/UX anywhere, no text should be displayed in CAPITAL LETTERS! But do not replace "toUpper" with "toLower" or "uppercase" with "lowercase" either, leave text in UI/UX as is.
## graphify
This project has a graphify knowledge graph at graphify-out/.
Rules:
- Before answering architecture or codebase questions, read graphify-out/GRAPH_REPORT.md for god nodes and community structure
- If graphify-out/wiki/index.md exists, navigate it instead of reading raw files
- For cross-module "how does X relate to Y" questions, prefer `graphify query "<question>"`, `graphify path "<A>" "<B>"`, or `graphify explain "<concept>"` over grep — these traverse the graph's EXTRACTED + INFERRED edges instead of scanning files
- After modifying code files in this session, run `graphify update .` to keep the graph current (AST-only, no API cost)

View File

@@ -5,7 +5,7 @@
@tailwind utilities; @tailwind utilities;
@layer base { @layer base {
:root { :root {
/* Base colors from DESIGN.md - AUTO-GENERATED from colors.mjs */ /* Base colors from DESIGN.md - AUTO-GENERATED from colors.mjs */
/* Base colors from DESIGN.md */ /* Base colors from DESIGN.md */
@@ -88,6 +88,7 @@
* { * {
@apply border-border; @apply border-border;
border-radius: 0 !important; border-radius: 0 !important;