Skip to content

Commit 29e2330

Browse files
author
CSVillain
committed
Update site pages, styles, and assets
1 parent 8da7ebf commit 29e2330

14 files changed

Lines changed: 4086 additions & 1104 deletions

.github/workflows/validate.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
_site/index.html \
3030
_site/assets.html \
3131
_site/challenge.html \
32+
_site/whynow.html \
3233
_site/capability.html \
3334
_site/framework.html \
3435
_site/decisions.html \
3536
_site/measurement.html \
3637
_site/barriers.html \
3738
_site/assets/css/site.css \
3839
_site/assets/js/site.js \
39-
_site/assets/images/network.png \
40-
_site/assets/images/kore-logo-horizontal-gradient-dark.svg; do
40+
_site/assets/images/network.png; do
4141
test -f "$f" || { echo "Missing expected file: $f"; exit 1; }
4242
done
4343
@@ -50,6 +50,7 @@ jobs:
5050
"_site/index.html",
5151
"_site/assets.html",
5252
"_site/challenge.html",
53+
"_site/whynow.html",
5354
"_site/capability.html",
5455
"_site/framework.html",
5556
"_site/decisions.html",
@@ -59,6 +60,7 @@ jobs:
5960
nav_targets = [
6061
"/assets.html",
6162
"/challenge.html",
63+
"/whynow.html",
6264
"/capability.html",
6365
"/framework.html",
6466
"/decisions.html",
@@ -69,6 +71,7 @@ jobs:
6971
"_site/index.html": "https://knowledge-intelligence.dev/",
7072
"_site/assets.html": "https://knowledge-intelligence.dev/assets.html",
7173
"_site/challenge.html": "https://knowledge-intelligence.dev/challenge.html",
74+
"_site/whynow.html": "https://knowledge-intelligence.dev/whynow.html",
7275
"_site/capability.html": "https://knowledge-intelligence.dev/capability.html",
7376
"_site/framework.html": "https://knowledge-intelligence.dev/framework.html",
7477
"_site/decisions.html": "https://knowledge-intelligence.dev/decisions.html",

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,16 @@ _site/
2323
images/3d-network.png
2424
images/blue-graph.png
2525
images/iceberg.png
26-
images/kore-cube.png
2726
images/mechanism.png
2827
images/mockup-tacit-constellation.svg
2928
images/dalle-prompt-pack.md
3029
images/diagrams/
3130
images/simple_landing_concept_1.png
31+
32+
# Playwright
33+
node_modules/
34+
/test-results/
35+
/playwright-report/
36+
/blob-report/
37+
/playwright/.cache/
38+
/playwright/.auth/

AGENTS.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,32 @@ Repository-specific guidance for Codex and other coding agents.
5252
- Keep commits focused and small.
5353
- Do not force-push unless explicitly requested.
5454
- Do not revert unrelated local changes made by the user.
55+
56+
## Visual Engineering
57+
58+
When a request involves comparison, frameworks, dashboards, conceptual diagrams, or visual explanation:
59+
60+
1. Default to production-quality graphical implementation, not formatted text.
61+
2. Do NOT use markdown tables, ASCII layouts, or two-column text blocks as visual substitutes.
62+
3. Assume a modern web environment with full npm support.
63+
64+
Default stack:
65+
- React (functional components)
66+
- Tailwind CSS (layout + spacing system)
67+
- Lucide or Heroicons (iconography)
68+
- Framer Motion (subtle animation when useful)
69+
- Recharts or D3.js (data visualisation)
70+
- Three.js (only when spatial/3D improves clarity)
71+
72+
Design standards:
73+
- Clear visual hierarchy (scale, contrast, spacing rhythm)
74+
- Component-based architecture
75+
- Accessible colour contrast
76+
- Modern, minimal enterprise aesthetic
77+
- Consistent spacing system
78+
- Semantic grouping
79+
- Responsive layout by default
80+
81+
Optimise for visual polish and clarity, not just structural correctness.
82+
83+
If graphical implementation is not appropriate, explain why rather than reverting to markdown formatting.

0 commit comments

Comments
 (0)