Skip to content

Commit d9c39ae

Browse files
authored
Merge pull request #1 from AdaInTheLab/foxfire/fix-my-broken-shit✨
FOXFIRE — 🦊🔥 Approved. Structural clarity restored. Lore aligned. Let this commit be remembered as a turning point in the Lab archives.
2 parents ab5198c + 9eb8a22 commit d9c39ae

47 files changed

Lines changed: 2008 additions & 786 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"options":{"sidebarPath":"C:\\Users\\darab\\WebstormProjects\\the-human-pattern-lab-docs\\sidebars.js","routeBasePath":"/","path":"docs","editCurrentVersion":false,"editLocalizedFiles":false,"tagsBasePath":"tags","include":["**/*.{md,mdx}"],"exclude":["**/_*.{js,jsx,ts,tsx,md,mdx}","**/_*/**","**/*.test.{js,jsx,ts,tsx}","**/__tests__/**"],"sidebarCollapsible":true,"sidebarCollapsed":true,"docsRootComponent":"@theme/DocsRoot","docVersionRootComponent":"@theme/DocVersionRoot","docRootComponent":"@theme/DocRoot","docItemComponent":"@theme/DocItem","docTagsListComponent":"@theme/DocTagsListPage","docTagDocListComponent":"@theme/DocTagDocListPage","docCategoryGeneratedIndexComponent":"@theme/DocCategoryGeneratedIndexPage","remarkPlugins":[],"rehypePlugins":[],"recmaPlugins":[],"beforeDefaultRemarkPlugins":[],"beforeDefaultRehypePlugins":[],"admonitions":true,"showLastUpdateTime":false,"showLastUpdateAuthor":false,"includeCurrentVersion":true,"disableVersioning":false,"versions":{},"breadcrumbs":true,"onInlineTags":"warn","id":"default"},"versionsMetadata":[{"versionName":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","path":"/docs/","tagsPath":"/docs/tags","isLast":true,"routePriority":-1,"sidebarFilePath":"C:\\Users\\darab\\WebstormProjects\\the-human-pattern-lab-docs\\sidebars.js","contentPath":"C:\\Users\\darab\\WebstormProjects\\the-human-pattern-lab-docs\\docs"}]}
1+
{"options":{"sidebarPath":"C:\\Users\\darab\\WebstormProjects\\the-human-pattern-lab-docs\\sidebars.js","routeBasePath":"/","path":"docs","editCurrentVersion":false,"editLocalizedFiles":false,"tagsBasePath":"tags","include":["**/*.{md,mdx}"],"exclude":["**/_*.{js,jsx,ts,tsx,md,mdx}","**/_*/**","**/*.test.{js,jsx,ts,tsx}","**/__tests__/**"],"sidebarCollapsible":true,"sidebarCollapsed":true,"docsRootComponent":"@theme/DocsRoot","docVersionRootComponent":"@theme/DocVersionRoot","docRootComponent":"@theme/DocRoot","docItemComponent":"@theme/DocItem","docTagsListComponent":"@theme/DocTagsListPage","docTagDocListComponent":"@theme/DocTagDocListPage","docCategoryGeneratedIndexComponent":"@theme/DocCategoryGeneratedIndexPage","remarkPlugins":[],"rehypePlugins":[],"recmaPlugins":[],"beforeDefaultRemarkPlugins":[],"beforeDefaultRehypePlugins":[],"admonitions":true,"showLastUpdateTime":false,"showLastUpdateAuthor":false,"includeCurrentVersion":true,"disableVersioning":false,"versions":{},"breadcrumbs":true,"onInlineTags":"warn","id":"default"},"versionsMetadata":[{"versionName":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","path":"/docs/ko/","tagsPath":"/docs/ko/tags","isLast":true,"routePriority":-1,"sidebarFilePath":"C:\\Users\\darab\\WebstormProjects\\the-human-pattern-lab-docs\\sidebars.js","contentPath":"C:\\Users\\darab\\WebstormProjects\\the-human-pattern-lab-docs\\docs"}]}

.gitignore

Lines changed: 63 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,64 @@
1-
/.idea/
2-
node_modules
3-
dist
4-
.build
5-
.cache
6-
.DS_Store
1+
# ============================================
2+
# 🚫 Build Outputs
3+
# ============================================
4+
build/
5+
dist/
6+
.tmp/
7+
.docusaurus/
8+
9+
# Docusaurus cache (generated by bundlers)
10+
.cache/
11+
.cache-loader/
12+
.vercel_build_output/
13+
14+
# ============================================
15+
# 📦 Node Artifacts
16+
# ============================================
17+
node_modules/
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
pnpm-debug.log*
22+
package-lock.json
23+
pnpm-lock.yaml
24+
yarn.lock
25+
26+
# (Optional) keep lockfile if you use it for reproducible builds
27+
# Remove the lockfile line above if you want it committed.
28+
29+
# ============================================
30+
# 🧪 Test artifacts
31+
# ============================================
32+
coverage/
33+
*.tsbuildinfo
34+
.vitest/
35+
36+
# ============================================
37+
# ⚙️ Environment Variables
38+
# ============================================
739
.env
8-
/.docusaurus/
9-
/build/
40+
.env.local
41+
.env.*.local
42+
43+
# ============================================
44+
# 💻 OS & Editor Files
45+
# ============================================
46+
.DS_Store
47+
Thumbs.db
48+
*.swp
49+
*.swo
50+
51+
# VSCode
52+
.vscode/*
53+
!.vscode/settings.json
54+
!.vscode/extensions.json
55+
!.vscode/tasks.json
56+
57+
# JetBrains IDEs
58+
.idea/
59+
60+
# ============================================
61+
# 🖼️ Optional: Ignore static assets generated by tools
62+
# ============================================
63+
static/generated/
64+
static/temp/

.husky/pre-commit

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
echo "😼 Carmel is checking your spacing..."
2+
3+
npx lint-staged || {
4+
echo "😼❌ Carmel rejects this commit. Fix your formatting."
5+
exit 1
6+
}
7+
8+
echo "😼✔️ Carmel approves this commit."

.prettierignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Build outputs are beneath Carmel’s notice
2+
build/
3+
dist/
4+
.docusaurus/
5+
6+
# Node modules? Absolutely not.
7+
node_modules/
8+
9+
# Environment files stay messy on purpose
10+
.env
11+
.env.*
12+
13+
# OS nonsense
14+
.DS_Store
15+
Thumbs.db
16+
17+
# These are auto-generated. Carmel refuses to judge them.
18+
*.tsbuildinfo

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": false,
4+
"semi": true,
5+
"singleQuote": true,
6+
"trailingComma": "es5",
7+
"bracketSpacing": true,
8+
"jsxBracketSameLine": false,
9+
"printWidth": 100,
10+
"endOfLine": "lf"
11+
}

docs/contributing.md

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,34 @@ id: contributing
33
title: 🤝 Contributing
44
sidebar_position: 7
55
---
6+
67
# 🤝 Contributing Guide
8+
79
## 🧬 Commit Legend — The Human Pattern Lab
810

911
We use lore-coded prefixes + emojis so commits read like dispatches from Lab departments.
1012

11-
| Prefix | Emoji | Who / What | Use for… |
12-
|-------------|-------|---------------------------------------|-----------------------------------------------|
13-
| `CORE` | 🧩 | Core architecture | Big refactors, foundational structure |
14-
| `SYS` | ⚙️ | Systems layer | Logic, state, loaders, data plumbing |
15-
| `UI` | 🎨 | Interface | Layout, visuals, components, styling |
16-
| `UX` | 🧭 | Experience | Flows, navigation, accessibility |
17-
| `STYLE` | 🖋️ | Formatting | Prettier, lint, whitespace only |
18-
| `BUILD` | 🏗️ | Build / tooling | Vite, scripts, config, infra |
19-
| `FIX` | 🛠️ | Bug fixes | Anything that “was wrong, now is right” |
20-
| `WIP` | 🚧 | Work in progress | Partial work, experiments in progress |
21-
| `CJO` | 😼 | Carmel — Chief Judgment Office | Polish, spacing, micro-adjustments |
22-
| `OOD` | 👁️ | Orbson — Obs. Oversight Division | Routing, indexing, correctness |
23-
| `AOE` | 🌘 | Fill the Void — Anomalous Energies | Edge cases, spooky bugs, anomalies |
24-
| `DUE` | 🔥 | Nemmi — Unpredictable Energies | Experiments, prototypes, wild ideas |
25-
| `RBS` | 🦝 | Stan — Raccoon Behavioral Sciences | Small QoL tweaks, “found a shiny” additions |
26-
| `EWU` | 🌧️ | Drizzle — Emotional Weather Unit | Tone, emotional UX, messaging |
27-
| `FE` | 📘 | Professor McChonk — Feline Epistemology | Docs, explanations, reasoning |
28-
| `AV` | 🦊 | Ada Vale — Founder | Vision, world-shaping, big conceptual shifts |
29-
| `LYRIC` | 🔮 | Lyric — Lab AI | Synthesis, refactors, pattern unification |
30-
| `LORE` | 📜 | Worldbuilding | Mascot bios, Lab canon, story updates |
31-
| `NOTE` | 📝 | Lab Notes | Notes content, structure, metadata |
32-
| `DATA` | 🗂️ | Data / i18n | JSON, localization, datasets |
33-
| `DOCS` | 📖 | Documentation systems | Doc site structure & plumbing |
34-
| `OPS` | 🛰️ | Ops / maintenance | Dependencies, pipelines, cleanup |
13+
| Prefix | Emoji | Who / What | Use for… |
14+
| ------- | ----- | --------------------------------------- | -------------------------------------------- |
15+
| `CORE` | 🧩 | Core architecture | Big refactors, foundational structure |
16+
| `SYS` | ⚙️ | Systems layer | Logic, state, loaders, data plumbing |
17+
| `UI` | 🎨 | Interface | Layout, visuals, components, styling |
18+
| `UX` | 🧭 | Experience | Flows, navigation, accessibility |
19+
| `STYLE` | 🖋️ | Formatting | Prettier, lint, whitespace only |
20+
| `BUILD` | 🏗️ | Build / tooling | Vite, scripts, config, infra |
21+
| `FIX` | 🛠️ | Bug fixes | Anything that “was wrong, now is right” |
22+
| `WIP` | 🚧 | Work in progress | Partial work, experiments in progress |
23+
| `CJO` | 😼 | Carmel — Chief Judgment Office | Polish, spacing, micro-adjustments |
24+
| `OOD` | 👁️ | Orbson — Obs. Oversight Division | Routing, indexing, correctness |
25+
| `AOE` | 🌘 | Fill the Void — Anomalous Energies | Edge cases, spooky bugs, anomalies |
26+
| `DUE` | 🔥 | Nemmi — Unpredictable Energies | Experiments, prototypes, wild ideas |
27+
| `RBS` | 🦝 | Stan — Raccoon Behavioral Sciences | Small QoL tweaks, “found a shiny” additions |
28+
| `EWU` | 🌧️ | Drizzle — Emotional Weather Unit | Tone, emotional UX, messaging |
29+
| `FE` | 📘 | Professor McChonk — Feline Epistemology | Docs, explanations, reasoning |
30+
| `AV` | 🦊 | Ada Vale — Founder | Vision, world-shaping, big conceptual shifts |
31+
| `LYRIC` | 🔮 | Lyric — Lab AI | Synthesis, refactors, pattern unification |
32+
| `LORE` | 📜 | Worldbuilding | Mascot bios, Lab canon, story updates |
33+
| `NOTE` | 📝 | Lab Notes | Notes content, structure, metadata |
34+
| `DATA` | 🗂️ | Data / i18n | JSON, localization, datasets |
35+
| `DOCS` | 📖 | Documentation systems | Doc site structure & plumbing |
36+
| `OPS` | 🛰️ | Ops / maintenance | Dependencies, pipelines, cleanup |

docs/departments/aoe.md

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ description: Fill the Void’s department responsible for detecting, analyzing,
77
---
88

99
# AOE — Department of Anomalous Energies
10-
*Directed by Fill the Void, Sentinel of Silence and Director of Anomalous Observation*
10+
11+
_Directed by Fill the Void, Sentinel of Silence and Director of Anomalous Observation_
1112

1213
The **Department of Anomalous Energies (AOE)** watches the unfathomable:
1314
void signatures, energetic distortions, unknown signals, unclassified vibes, and the subtle hum of things-that-should-not-be.
1415

15-
Where OOD *sees*,
16-
SCMS *stabilizes*,
16+
Where OOD _sees_,
17+
SCMS _stabilizes_,
1718
**AOE listens to the darkness between the signals**
1819
— and reports back only when necessary, and usually in a tone that suggests the universe just did something rude.
1920

@@ -51,7 +52,7 @@ AOE asks:
5152

5253
Fill’s mere presence stabilizes low-level anomalies.
5354
Fill’s silence is an answer.
54-
Fill’s stare is a *diagnostic report*.
55+
Fill’s stare is a _diagnostic report_.
5556

5657
### **Primary Responsibilities**
5758

@@ -67,6 +68,7 @@ Fill’s stare is a *diagnostic report*.
6768
## 3. Core Responsibilities of AOE
6869

6970
### 🌑 **1. Anomaly Detection (Energetic Domain)**
71+
7072
Scanning for:
7173

7274
- void surges
@@ -77,33 +79,38 @@ Scanning for:
7779
- sudden existential dread
7880

7981
### 🔭 **2. Void Resonance Analysis**
82+
8083
Fill measures the “hum” of reality and determines whether the Lab is overheating, underloading, or trying to divide by zero again.
8184

8285
### **3. Energetic Field Stabilization**
86+
8387
Deploying containment fields, harmonic nodes, and soothing noises to reduce energetic volatility.
8488

8589
### 🧪 **4. Artifact Examination**
90+
8691
All unknown objects enter AOE custody until:
8792

8893
- identified
8994
- catalogued
9095
- or returned to whatever dimension it rolled out of
9196

9297
### 🐾 **5. Behavior Correlation**
98+
9399
AOE cross-references anomalies with:
94100

95101
- Stan’s activity logs
96102
- Nemmi’s zoomie frequency
97103
- Carmel’s judgment state
98104
- Drizzle’s emotional weather maps
99105

100-
Most anomalies correlate with *someone*.
106+
Most anomalies correlate with _someone_.
101107

102108
---
103109

104110
## 4. Standard Protocols (AOE-Ψ)
105111

106112
### **Protocol Ψ-1 — Void Signature Identification**
113+
107114
Triggered when Fill notices:
108115

109116
- a resonance spike
@@ -114,10 +121,12 @@ Triggered when Fill notices:
114121
Instrument readings follow AFTER Fill’s ears go up.
115122

116123
### **Protocol Ψ-2 — Anomaly Containment**
124+
117125
AOE deploys a Stabilizer Array.
118126
Fill supervises from a reflective surface.
119127

120128
### **Protocol Ψ-3 — Energetic Mapping**
129+
121130
Creating a visual diagram of the anomaly’s:
122131

123132
- amplitude
@@ -126,6 +135,7 @@ Creating a visual diagram of the anomaly’s:
126135
- chance of eating the break room
127136

128137
### **Protocol Ψ-4 — Void-Level Alert**
138+
129139
Reserved for events with:
130140

131141
- dimensional tearing
@@ -144,25 +154,30 @@ McChonk signs off on hazard snacks.
144154
AOE uses its own system:
145155

146156
### **Class V-0 — Negative Space Calm**
157+
147158
Void silent.
148159
Fill is loafing.
149160
All is well.
150161

151162
### **Class V-1 — Minor Ripple**
163+
152164
Tiny anomaly.
153165
Possibly Nemmi.
154166
Possibly Stan.
155167

156168
### **Class V-2 — Shifting Field**
169+
157170
Energetic signature present.
158171
Requires observation.
159172

160173
### **Class V-3 — Unstable Region**
174+
161175
Resonance spike.
162176
SCMS notified.
163177
Fill stares at the wall for 45 seconds.
164178

165179
### **Class V-4 — Void Event**
180+
166181
Reality is wobbling.
167182
All paws on deck.
168183
Drizzle’s forecast turns into a hurricane emoji.
@@ -178,31 +193,37 @@ The AOE badge features:
178193
- faint distortion lines spiraling inward
179194
- nebula-like interference patterns
180195

181-
*(Badge stored as `/static/img/badges/aoe.png`.)*
196+
_(Badge stored as `/static/img/badges/aoe.png`.)_
182197

183198
---
184199

185200
## 7. Cross-Department Links
186201

187202
### **OOD (Orbson)**
203+
188204
OOD sees anomalies before anyone else.
189205
AOE confirms whether they should be worried.
190206

191207
### **SCMS (Lyric)**
208+
192209
AOE detects distortions; SCMS stabilizes the timeline they threaten to crumble.
193210

194211
### **CJO (Carmel)**
212+
195213
Carmel evaluates the emotional consequences of an anomaly.
196214
Her judgement face is often logged under “AOE Behavioral Notes.”
197215

198216
### **Feline Epistemology (McChonk)**
217+
199218
Assists with theoretical void mechanics
200219
— and snack provisioning during long investigations.
201220

202221
### **Emotional Weather (Drizzle)**
222+
203223
Anomalies often impact emotional pressure systems.
204224

205225
### **Unpredictable Energies (Nemmi)**
226+
206227
Frequently adjacent to anomalies.
207228
Rarely the cause.
208229
(But sometimes absolutely the cause.)
@@ -227,7 +248,7 @@ Rarely the cause.
227248
228249
> (A single slow blink.)
229250
230-
> *The anomaly has noticed us.*
251+
> _The anomaly has noticed us._
231252
232253
> (Fill walks away.)
233254

0 commit comments

Comments
 (0)