Skip to content

Commit ec978af

Browse files
author
Claude-Ops
committed
Charter visual polish: Three Concepts cards, colored Adoption cards, nav cleanup
Charter page: - Three Concepts table replaced with 3 colored cards (green=Philosophy/WHY, blue=Framework/HOW, red=Gap/WHAT) - Company Adoption: 2x2 grid forced via CSS, petal colors (green Map, blue Identify, gold See, pink Plan) - Individual Adoption: 3 cards with progression colors - All colors from v8 poster palette for consistency All pages: - Left nav hidden on story and about pages (reading experience) - Charter already had it hidden from prior commit CSS additions: - .concept-why/how/what card colors - .company-cards 2-col grid override - .individual-cards nth-child coloring
1 parent 20c5f45 commit ec978af

4 files changed

Lines changed: 91 additions & 8 deletions

File tree

docs/about.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
description: "About Nikhil Singhal, author of the HIP Charter. CTO, VP Engineering, AI Practitioner and Governance Strategist."
3+
hide:
4+
- navigation
35
---
46

57
# About

docs/charter.md

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,35 @@ The name itself carries the premise. "Human Intelligence Partnership Charter." N
5757

5858
## Three Concepts, One Thesis
5959

60-
| Concept | What it answers | Level |
61-
|---------|----------------|-------|
62-
| **Just Intelligence** | WHY you design this way | Philosophy |
63-
| **The HIP Charter** | HOW you design this way | Framework |
64-
| **The Intent Layer** | WHAT is missing at every pattern | Gap |
60+
<div class="grid cards" markdown>
61+
62+
- :material-lightbulb:{ .lg .middle } __Just Intelligence__{.concept-why}
63+
64+
---
65+
66+
**WHY** you design this way. The premise. Drop "artificial." Treat what you are working with as a different form of intelligence that deserves the same structural respect in communication.
67+
68+
*Philosophy*
69+
70+
- :material-view-grid:{ .lg .middle } __The HIP Charter__{.concept-how}
71+
72+
---
73+
74+
**HOW** you design this way. The framework. Four patterns of partnership, extensible, with overlaps that create depth and a center that represents full collaboration.
6575

66-
Separately, each is useful. Just Intelligence without the HIP Charter is philosophy with no blueprint. The HIP Charter without Just Intelligence is engineering with no soul. The Intent Layer without both is a problem statement with no solution direction.
76+
*Framework*
77+
78+
- :material-alert-circle:{ .lg .middle } __The Intent Layer__{.concept-what}
79+
80+
---
81+
82+
**WHAT** is missing at every pattern. The gap. The structural interface between human intent and machine execution that does not exist yet. Visible at every petal.
83+
84+
*Gap*
85+
86+
</div>
87+
88+
Separately, each is useful. Just Intelligence without the HIP Charter is philosophy with no blueprint. The HIP Charter without Just Intelligence is engineering with no soul. The Intent Layer without both is a problem statement with no direction.
6789

6890
Together: a worldview (intelligence deserves structural respect), a framework (four patterns of partnership), and a gap (the structural interface between two intelligences). They are inseparable.
6991

@@ -198,7 +220,7 @@ The HIP Charter is not just a description. It is a framework others can use.
198220

199221
The charter becomes an AI adoption roadmap. Instead of the vague question "how do we adopt AI?", companies can use the map:
200222

201-
<div class="grid cards" markdown>
223+
<div class="grid cards company-cards" markdown>
202224

203225
- :material-map-marker:{ .lg .middle } __Map__
204226

@@ -230,7 +252,7 @@ The charter becomes an AI adoption roadmap. Instead of the vague question "how d
230252

231253
The intersections become progression markers. Not a ladder to climb, but territory to explore.
232254

233-
<div class="grid cards" markdown>
255+
<div class="grid cards individual-cards" markdown>
234256

235257
- :material-account-check:{ .lg .middle } __Where I Am__
236258

docs/story.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: "How the HIP Charter Was Made"
33
description: "The 12-step naming process. 8 visual iterations. A year of daily partnership between human and AI intelligence. The story behind the charter."
4+
hide:
5+
- navigation
46
---
57

68
# How the HIP Charter Was Made

docs/stylesheets/extra.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,62 @@
118118
font-size: 0.8rem;
119119
}
120120

121+
/* --- Three Concepts Cards --- */
122+
.grid.cards .concept-why {
123+
border-left: 4px solid var(--hip-foundation);
124+
background: var(--hip-foundation-bg);
125+
}
126+
127+
.grid.cards .concept-how {
128+
border-left: 4px solid var(--hip-tooling);
129+
background: var(--hip-tooling-bg);
130+
}
131+
132+
.grid.cards .concept-what {
133+
border-left: 4px solid #B91C1C;
134+
background: #FEF2F2;
135+
}
136+
137+
/* --- Adoption: Company Cards (2x2 grid, petal colors) --- */
138+
.company-cards > ul {
139+
grid-template-columns: repeat(2, 1fr) !important;
140+
}
141+
142+
.company-cards > ul > li:nth-child(1) {
143+
border-left: 4px solid var(--hip-foundation);
144+
background: var(--hip-foundation-bg);
145+
}
146+
147+
.company-cards > ul > li:nth-child(2) {
148+
border-left: 4px solid var(--hip-tooling);
149+
background: var(--hip-tooling-bg);
150+
}
151+
152+
.company-cards > ul > li:nth-child(3) {
153+
border-left: 4px solid var(--hip-pipeline);
154+
background: var(--hip-pipeline-bg);
155+
}
156+
157+
.company-cards > ul > li:nth-child(4) {
158+
border-left: 4px solid var(--hip-integration);
159+
background: var(--hip-integration-bg);
160+
}
161+
162+
/* --- Adoption: Individual Cards (progression colors) --- */
163+
.individual-cards > ul > li:nth-child(1) {
164+
border-left: 4px solid var(--hip-foundation);
165+
background: var(--hip-foundation-bg);
166+
}
167+
168+
.individual-cards > ul > li:nth-child(2) {
169+
border-left: 4px solid var(--hip-tooling);
170+
background: var(--hip-tooling-bg);
171+
}
172+
173+
.individual-cards > ul > li:nth-child(3) {
174+
border-left: 4px solid var(--hip-pipeline);
175+
background: var(--hip-pipeline-bg);
176+
}
177+
121178
/* --- Import DM Serif Display for headings --- */
122179
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

0 commit comments

Comments
 (0)