kongbrain 0.3.5 → 0.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.clawhubignore CHANGED
@@ -20,5 +20,10 @@ package-lock.json
20
20
  .env.*
21
21
  .kongbrain-handoff.json
22
22
 
23
+ # README source files (prepack handles the swap)
24
+ README.npm.md
25
+ README.github.md
26
+
23
27
  # Internal docs
24
28
  UPSTREAM-PROPOSALS.md
29
+ publish.sh
@@ -0,0 +1,414 @@
1
+ <div align="center">
2
+
3
+ # KongBrain
4
+
5
+ ![KongBrain](KongClaw.png)
6
+
7
+ [![npm](https://img.shields.io/npm/v/kongbrain?style=for-the-badge&logo=npm&color=cb3837)](https://www.npmjs.com/package/kongbrain)
8
+ [![ClawHub](https://img.shields.io/badge/ClawHub-kongbrain-ff6b35?style=for-the-badge)](https://clawhub.ai/packages/kongbrain)
9
+ [![GitHub Stars](https://img.shields.io/github/stars/42U/kongbrain?style=for-the-badge&logo=github&color=gold)](https://github.com/42U/kongbrain)
10
+ [![License: MIT](https://img.shields.io/github/license/42U/kongbrain?style=for-the-badge&logo=opensourceinitiative&color=blue)](https://opensource.org/licenses/MIT)
11
+ [![Node.js](https://img.shields.io/badge/Node.js-20+-339933?style=for-the-badge&logo=node.js&logoColor=white)](https://nodejs.org)
12
+ [![SurrealDB](https://img.shields.io/badge/SurrealDB-3.0-ff00a0?style=for-the-badge&logo=surrealdb&logoColor=white)](https://surrealdb.com)
13
+ [![OpenClaw](https://img.shields.io/badge/OpenClaw-Plugin-ff6b35?style=for-the-badge)](https://github.com/openclaw/openclaw)
14
+ [![Tests](https://img.shields.io/badge/Tests-88_passing-brightgreen?style=for-the-badge&logo=vitest&logoColor=white)](https://vitest.dev)
15
+
16
+ **A graph-backed cognitive engine for [OpenClaw](https://github.com/openclaw/openclaw).**
17
+
18
+ [Quick Start](#quick-start) | [Architecture](#architecture) | [How It Works](#how-it-works) | [Tools](#tools) | [Development](#development)
19
+
20
+ </div>
21
+
22
+ > *OpenClaw ships with a lobster brain. It works. Lobsters have survived 350 million years, but they also solve problems by walking backwards and occasionally eating each other.*
23
+ >
24
+ > *When a conversation gets too long, the lobster brain does what lobsters do best: it panics, truncates everything before message 47, and carries on like nothing happened. Your carefully explained architecture? Gone. That bug you described in detail twenty minutes ago? Never heard of it.*
25
+ >
26
+ > *KongBrain is a brain transplant. You're replacing that crustacean context window with a primate cortex backed by a graph database, vector embeddings, and the kind of persistent memory that lets your AI remember what you said last Tuesday. And judge you for it.*
27
+ >
28
+ > *Apes remember. Apes use tools. Apes hold grudges about your code style and learn from them. Lobsters eat garbage off the ocean floor and forget about it immediately.*
29
+ >
30
+ > *The surgery takes about 2 minutes. No anesthesia required.*
31
+
32
+ Persistent memory graph. Vector-embedded, self-scoring, wired to learn across sessions. It extracts skills from what worked, traces causal chains through what broke, reflects on its own failures, and earns an identity through real experience. Every session compounds on the last.
33
+
34
+ Your assistant stops forgetting. Then it starts getting smarter.
35
+
36
+ ---
37
+
38
+ ## What Changes
39
+
40
+ | | Lobster Brain (default) | Ape Brain (KongBrain) |
41
+ |---|---|---|
42
+ | **Memory** | Sliding window. Old messages fall off a cliff. | Graph-persistent. Every turn, concept, skill, and causal chain stored with vector embeddings. |
43
+ | **Recall** | Whatever fits in the context window right now. | Cosine similarity + graph expansion + learned attention scoring across your entire history. |
44
+ | **Adaptation** | Same retrieval budget every turn, regardless of intent. | 10 intent categories. Simple question? Minimal retrieval. Complex debugging? Full graph search + elevated thinking. |
45
+ | **Learning** | None. Every session starts from zero. | Skills extracted from successful workflows, causal chains graduated into reusable procedures, corrections remembered permanently. |
46
+ | **Self-awareness** | Thermostat-level. | Periodic cognitive checks grade its own retrieval quality, detect contradictions, suppress noise, and extract your preferences. Eventually graduates a soul document. |
47
+ | **Compaction** | LLM-summarizes your conversation mid-flow (disruptive). | Graph retrieval IS the compaction. No interruptions, no lossy summaries. |
48
+
49
+ ## Quick Start
50
+
51
+ From zero to ape brain in under 5 minutes.
52
+
53
+ ### 1. Install OpenClaw (if you haven't already)
54
+
55
+ ```bash
56
+ npm install -g openclaw
57
+ ```
58
+
59
+ ### 2. Start SurrealDB
60
+
61
+ Install SurrealDB via your platform's package manager (see [surrealdb.com/install](https://surrealdb.com/docs/surrealdb/installation)):
62
+
63
+ ```bash
64
+ # macOS
65
+ brew install surrealdb/tap/surreal
66
+
67
+ # Linux (Debian/Ubuntu)
68
+ curl -sSf https://install.surrealdb.com | sh
69
+ export PATH="$HOME/.surrealdb:$PATH"
70
+ ```
71
+
72
+ Then start it locally, **change the credentials before use**:
73
+
74
+ ```bash
75
+ surreal start --user youruser --pass yourpass --bind 127.0.0.1:8042 surrealkv:~/.kongbrain/surreal.db
76
+ ```
77
+
78
+ Or with Docker:
79
+
80
+ ```bash
81
+ docker run -d --name surrealdb -p 127.0.0.1:8042:8000 \
82
+ -v ~/.kongbrain/surreal-data:/data \
83
+ surrealdb/surrealdb:latest start \
84
+ --user youruser --pass yourpass surrealkv:/data/surreal.db
85
+ ```
86
+
87
+ > **Security note:** Always bind to `127.0.0.1` (not `0.0.0.0`) unless you need remote access. Never use default credentials in production.
88
+
89
+ ### 3. Install KongBrain
90
+
91
+ ```bash
92
+ # From ClawHub (recommended)
93
+ openclaw plugins install clawhub:kongbrain
94
+
95
+ # From npm (fallback)
96
+ openclaw plugins install kongbrain
97
+ ```
98
+
99
+ > **Note:** Bare `openclaw plugins install kongbrain` checks ClawHub first, then falls back to npm. Use the `clawhub:` prefix to install from ClawHub explicitly.
100
+
101
+ ### 4. Activate
102
+
103
+ Add to your OpenClaw config (`~/.openclaw/openclaw.json`):
104
+
105
+ ```json
106
+ {
107
+ "plugins": {
108
+ "allow": ["kongbrain"],
109
+ "slots": {
110
+ "contextEngine": "kongbrain"
111
+ }
112
+ }
113
+ }
114
+ ```
115
+
116
+ ### 5. Talk to your ape
117
+
118
+ ```bash
119
+ openclaw tui
120
+ ```
121
+
122
+ That's it. KongBrain uses whatever LLM provider and model you already have configured in OpenClaw (Anthropic, OpenAI, Google, Ollama, whatever). No separate API keys needed for the brain itself.
123
+
124
+ The BGE-M3 embedding model (~420MB) downloads automatically on first startup from [Hugging Face](https://huggingface.co/BAAI/bge-m3). All database tables and indexes are created automatically on first run. No manual setup required.
125
+
126
+ <details>
127
+ <summary><strong>Configuration Options</strong></summary>
128
+
129
+ All options have sensible defaults. Override via plugin config or environment variables:
130
+
131
+ | Option | Env Var | Default |
132
+ |--------|---------|---------|
133
+ | `surreal.url` | `SURREAL_URL` | `ws://127.0.0.1:8042/rpc` |
134
+ | `surreal.user` | `SURREAL_USER` | (required) |
135
+ | `surreal.pass` | `SURREAL_PASS` | (required) |
136
+ | `surreal.ns` | `SURREAL_NS` | `kong` |
137
+ | `surreal.db` | `SURREAL_DB` | `memory` |
138
+ | `embedding.modelPath` | `KONGBRAIN_EMBEDDING_MODEL` | Auto-downloaded BGE-M3 Q4_K_M |
139
+ | `embedding.dimensions` | - | `1024` |
140
+
141
+ Full config example:
142
+
143
+ ```json
144
+ {
145
+ "plugins": {
146
+ "allow": ["kongbrain"],
147
+ "slots": {
148
+ "contextEngine": "kongbrain"
149
+ },
150
+ "entries": {
151
+ "kongbrain": {
152
+ "config": {
153
+ "surreal": {
154
+ "url": "ws://127.0.0.1:8042/rpc",
155
+ "user": "youruser",
156
+ "pass": "yourpass",
157
+ "ns": "kong",
158
+ "db": "memory"
159
+ }
160
+ }
161
+ }
162
+ }
163
+ }
164
+ }
165
+ ```
166
+
167
+ </details>
168
+
169
+ ---
170
+
171
+ ## Architecture
172
+
173
+ ### The IKONG Pillars
174
+
175
+ KongBrain's cognitive architecture follows five functional pillars:
176
+
177
+ | Pillar | Role | What it does |
178
+ |--------|------|-------------|
179
+ | **I**ntelligence | Adaptive reasoning | Intent classification, complexity estimation, thinking depth, orchestrator preflight |
180
+ | **K**nowledge | Persistent memory | Memory graph, concepts, skills, reflections, identity chunks, core memory tiers |
181
+ | **O**peration | Execution | Tool orchestration, skill procedures, causal chain tracking, artifact management |
182
+ | **N**etwork | Graph traversal | Cross-pillar edge following, neighbor expansion, causal path walking |
183
+ | **G**raph | Persistence | SurrealDB storage, BGE-M3 vector search, HNSW indexes, embedding pipeline |
184
+
185
+ A 6th pillar, **Persona**, is unlocked at soul graduation: *"You have a Soul, an identity grounded in real experience. Be unique, be genuine, be yourself."*
186
+
187
+ ### Structural Pillars
188
+
189
+ The graph entity model in SurrealDB:
190
+
191
+ | Pillar | Table | What it anchors |
192
+ |--------|-------|-----------------|
193
+ | 1. Agent | `agent` | Who is operating (name, model) |
194
+ | 2. Project | `project` | What we're working on (status, tags) |
195
+ | 3. Task | `task` | Individual sessions as units of work |
196
+ | 4. Artifact | `artifact` | Files and outputs tracked across sessions |
197
+ | 5. Concept | `concept` | Semantic knowledge nodes extracted from sessions |
198
+
199
+ On startup, the agent bootstraps the full chain: `Agent → owns → Project`, `Agent → performed → Task`, `Task → task_part_of → Project`, `Session → session_task → Task`. Graph expansion traverses these edges during retrieval.
200
+
201
+ ### The Knowledge Graph
202
+
203
+ SurrealDB with HNSW vector indexes (1024-dim cosine). Everything is embedded and queryable.
204
+
205
+ | Table | What it stores |
206
+ |-------|---------------|
207
+ | `turn` | Every conversation message (role, text, embedding, token count, model, usage) |
208
+ | `memory` | Compacted episodic knowledge (importance 0-10, confidence, access tracking) |
209
+ | `skill` | Learned procedures with steps, preconditions, success/failure counts |
210
+ | `reflection` | Metacognitive lessons (efficiency, failure patterns, approach strategy) |
211
+ | `causal_chain` | Cause-effect patterns (trigger, outcome, chain type, success, confidence) |
212
+ | `identity_chunk` | Agent self-knowledge fragments (source, importance, embedding) |
213
+ | `monologue` | Thinking traces preserved across sessions |
214
+ | `core_memory` | Tier 0 (always loaded) + Tier 1 (session-pinned) directives |
215
+ | `soul` | Emergent identity document, earned through graduation |
216
+
217
+ <details>
218
+ <summary><strong>Adaptive Reasoning</strong>, per-turn intent classification and budget allocation</summary>
219
+
220
+ Every turn gets classified by intent and assigned an adaptive config:
221
+
222
+ | Intent | Thinking | Tool Limit | Token Budget | Retrieval Share |
223
+ |--------|----------|------------|--------------|-----------------|
224
+ | `simple-question` | low | 3 | 4K | 10% |
225
+ | `code-read` | medium | 5 | 6K | 15% |
226
+ | `code-write` | high | 8 | 8K | 20% |
227
+ | `code-debug` | high | 10 | 8K | 20% |
228
+ | `deep-explore` | medium | 15 | 6K | 15% |
229
+ | `reference-prior` | medium | 5 | 10K | 25% |
230
+ | `meta-session` | low | 2 | 3K | 7% (skip retrieval) |
231
+ | `multi-step` | high | 12 | 8K | 20% |
232
+ | `continuation` | low | 8 | 4K | skip retrieval |
233
+
234
+ **Fast path:** Short inputs (<20 chars, no `?`) skip classification entirely.
235
+ **Confidence gate:** Below 0.40 confidence, falls back to conservative config.
236
+
237
+ </details>
238
+
239
+ <details>
240
+ <summary><strong>Context Injection Pipeline</strong></summary>
241
+
242
+ 1. **Embed** user input via BGE-M3 (or hit prefetch cache at 0.85 cosine threshold)
243
+ 2. **Vector search** across 6 tables (turn, identity_chunk, concept, memory, artifact, monologue)
244
+ 3. **Graph expand**: fetch neighbors via structural + semantic edges, compute cosine similarity
245
+ 4. **Score** all candidates with WMR (Working Memory Ranker):
246
+ ```
247
+ score = W * [similarity, recency, importance, access, neighbor_bonus, utility, reflection_boost]
248
+ ```
249
+ 5. **Budget trim**: inject Tier 0/1 core memory first (15% of context), then ranked results up to 21% retrieval budget
250
+ 6. **Stage** retrieval snapshot for post-hoc quality evaluation
251
+
252
+ </details>
253
+
254
+ <details>
255
+ <summary><strong>ACAN</strong>, learned cross-attention scorer</summary>
256
+
257
+ A ~130K-parameter cross-attention network that replaces the fixed WMR weights once enough data accumulates.
258
+
259
+ - **Activation:** 5,000+ labeled retrieval outcomes
260
+ - **Training:** Pure TypeScript SGD with manual backprop, 80 epochs
261
+ - **Staleness:** Retrains when data grows 50%+ or weights age > 7 days
262
+
263
+ </details>
264
+
265
+ <details>
266
+ <summary><strong>Soul & Graduation</strong>, earned identity, not assigned</summary>
267
+
268
+ The agent earns an identity document through accumulated experience. Graduation requires **all 7 thresholds met** AND a **quality score >= 0.6**:
269
+
270
+ | Signal | Threshold |
271
+ |--------|-----------|
272
+ | Sessions completed | 15 |
273
+ | Reflections stored | 10 |
274
+ | Causal chains traced | 5 |
275
+ | Concepts extracted | 30 |
276
+ | Memory compactions | 5 |
277
+ | Monologue traces | 5 |
278
+ | Time span | 3 days |
279
+
280
+ **Quality scoring** from 4 real performance signals: retrieval utilization (30%), skill success rate (25%), critical reflection rate (25%), tool failure rate (20%).
281
+
282
+ **Maturity stages:** nascent (0-3/7) → developing (4/7) → emerging (5/7) → maturing (6/7) → ready (7/7 + quality gate). The agent and user are notified at each stage transition.
283
+
284
+ **Soul evolution:** Every 10 sessions after graduation, the soul is re-evaluated against new experience and revised if the agent has meaningfully changed.
285
+
286
+ **Soul document structure:** Working style, self-observations, earned values (grounded in specific evidence), revision history. Seeded as Tier 0 core memory, loaded every single turn.
287
+
288
+ </details>
289
+
290
+ <details>
291
+ <summary><strong>Reflection System</strong>, metacognitive self-correction</summary>
292
+
293
+ Triggers at session end when metrics indicate problems:
294
+
295
+ | Condition | Threshold |
296
+ |-----------|-----------|
297
+ | Retrieval utilization | < 20% average |
298
+ | Tool failure rate | > 20% |
299
+ | Steering candidates | any detected |
300
+ | Context waste | > 0.5% of context window |
301
+
302
+ The LLM generates a 2-4 sentence reflection: root cause, error pattern, what to do differently. Stored with importance 7.0, deduped at 0.85 cosine similarity.
303
+
304
+ </details>
305
+
306
+ ---
307
+
308
+ ## How It Works
309
+
310
+ ### Every Turn
311
+
312
+ ```
313
+ User Input
314
+ |
315
+ v
316
+ Preflight ──────── Intent classification (25ms, zero-shot BGE-M3 cosine)
317
+ | 10 categories: simple-question, code-read, code-write,
318
+ | code-debug, deep-explore, reference-prior, meta-session,
319
+ | multi-step, continuation, unknown
320
+ v
321
+ Prefetch ────────── Predictive background vector searches (LRU cache, 5-min TTL)
322
+ |
323
+ v
324
+ Context Injection ─ Vector search -> graph expand -> 6-signal scoring -> budget trim
325
+ | Searches: turns, concepts, memories, artifacts, identity, monologues
326
+ | Scores: similarity, recency, importance, access, neighbor, utility
327
+ | Budget: 21% of context window reserved for retrieval
328
+ v
329
+ Agent Loop ──────── LLM + tool execution
330
+ | Planning gate: announces plan before touching tools
331
+ | Smart truncation: preserves tail of large tool outputs
332
+ v
333
+ Turn Storage ────── Every message embedded + stored + linked via graph edges
334
+ | responds_to, part_of, mentions, produced
335
+ v
336
+ Quality Eval ────── Measures retrieval utilization (text overlap, trigrams, unigrams)
337
+ | Tracks tool success, context waste, feeds ACAN training
338
+ v
339
+ Memory Daemon ───── Worker thread extracts 9 knowledge types via LLM:
340
+ | causal chains, monologues, concepts, corrections,
341
+ | preferences, artifacts, decisions, skills, resolved memories
342
+ v
343
+ Postflight ──────── Records orchestrator metrics (non-blocking)
344
+ ```
345
+
346
+ ### Between Sessions
347
+
348
+ At session end, KongBrain runs a combined extraction pass: skill graduation, metacognitive reflection, causal chain consolidation, soul graduation check, and soul evolution. A handoff note is written so the next session wakes up knowing what happened.
349
+
350
+ At session start, a wake-up briefing is synthesized from the handoff, recent monologues, soul content (if graduated), and identity state, then injected as inner speech so the agent knows who it is and what it was doing.
351
+
352
+ <details>
353
+ <summary><strong>Memory Daemon</strong>, background knowledge extraction</summary>
354
+
355
+ A worker thread running throughout the session. Batches turns every ~12K tokens, calls the configured LLM to extract:
356
+
357
+ - **Causal chains**: trigger/outcome sequences with success/confidence
358
+ - **Monologue traces**: thinking blocks that reveal problem-solving approach
359
+ - **Concepts**: semantic nodes (architecture patterns, domain terms)
360
+ - **Corrections**: user-provided fixes (importance: 9)
361
+ - **Preferences**: behavioral rules learned from feedback
362
+ - **Artifacts**: file paths created or modified
363
+ - **Decisions**: important conclusions reached
364
+ - **Skills**: multi-step procedures (if 5+ tool calls in session)
365
+ - **Resolved memories**: completed tasks and confirmed facts
366
+
367
+ </details>
368
+
369
+ ---
370
+
371
+ ## Tools
372
+
373
+ Three tools are registered for the LLM:
374
+
375
+ - **`recall`** Search graph memory by query
376
+ - **`core_memory`** Read/write persistent core directives (tiered: always-loaded vs session-pinned)
377
+ - **`introspect`** Inspect database state, verify memory counts, run diagnostics, check graduation status, migrate workspace files
378
+
379
+ ---
380
+
381
+ ## Development
382
+
383
+ ```bash
384
+ git clone https://github.com/42U/kongbrain.git
385
+ cd kongbrain
386
+ pnpm install
387
+ pnpm build
388
+ pnpm test
389
+ ```
390
+
391
+ Link your local build to OpenClaw:
392
+
393
+ ```bash
394
+ openclaw plugins install . --link
395
+ ```
396
+
397
+ Then set `plugins.slots.contextEngine` to `"kongbrain"` in `~/.openclaw/openclaw.json` and run `openclaw`.
398
+
399
+ ## Contributing
400
+
401
+ 1. Clone the repo and install dependencies (`pnpm install`)
402
+ 2. Make your changes
403
+ 3. Build (`pnpm build`) and run tests (`pnpm test`)
404
+ 4. Open a PR against `master`
405
+
406
+ The lobster doesn't accept contributions. The ape does.
407
+
408
+ ---
409
+
410
+ <div align="center">
411
+
412
+ MIT License | Built by [42U](https://github.com/42U)
413
+
414
+ </div>
package/README.md CHANGED
@@ -1,9 +1,5 @@
1
- <div align="center">
2
-
3
1
  # KongBrain
4
2
 
5
- ![KongBrain](KongClaw.png)
6
-
7
3
  [![npm](https://img.shields.io/npm/v/kongbrain?style=for-the-badge&logo=npm&color=cb3837)](https://www.npmjs.com/package/kongbrain)
8
4
  [![ClawHub](https://img.shields.io/badge/ClawHub-kongbrain-ff6b35?style=for-the-badge)](https://clawhub.ai/packages/kongbrain)
9
5
  [![GitHub Stars](https://img.shields.io/github/stars/42U/kongbrain?style=for-the-badge&logo=github&color=gold)](https://github.com/42U/kongbrain)
@@ -11,17 +7,21 @@
11
7
  [![Node.js](https://img.shields.io/badge/Node.js-20+-339933?style=for-the-badge&logo=node.js&logoColor=white)](https://nodejs.org)
12
8
  [![SurrealDB](https://img.shields.io/badge/SurrealDB-3.0-ff00a0?style=for-the-badge&logo=surrealdb&logoColor=white)](https://surrealdb.com)
13
9
  [![OpenClaw](https://img.shields.io/badge/OpenClaw-Plugin-ff6b35?style=for-the-badge)](https://github.com/openclaw/openclaw)
14
- [![Tests](https://img.shields.io/badge/Tests-68_passing-brightgreen?style=for-the-badge&logo=vitest&logoColor=white)](https://vitest.dev)
10
+ [![Tests](https://img.shields.io/badge/Tests-88_passing-brightgreen?style=for-the-badge&logo=vitest&logoColor=white)](https://vitest.dev)
15
11
 
16
12
  **A graph-backed cognitive engine for [OpenClaw](https://github.com/openclaw/openclaw).**
17
13
 
18
- Replace the default sliding-window context with a persistent memory graph. Vector-embedded, self-scoring, and wired to learn across sessions. KongBrain extracts skills from what worked, traces causal chains through what broke, reflects on its own failures, and earns an identity through real experience. Every session compounds on the last.
14
+ > *OpenClaw ships with a lobster brain. It works lobsters have survived 350 million years but they also solve problems by walking backwards and occasionally eating each other.*
15
+ >
16
+ > *When a conversation gets too long, the lobster brain does what lobsters do best: it panics, truncates everything before message 47, and carries on like nothing happened. Your carefully explained architecture? Gone. That bug you described in detail twenty minutes ago? Never heard of it.*
17
+ >
18
+ > *KongBrain is a brain transplant. You're replacing that crustacean context window with a primate cortex — backed by a graph database, vector embeddings, and the kind of persistent memory that lets your AI remember what you said last Tuesday — and judge you for it.*
19
19
 
20
- Your assistant stops forgetting. Then it starts getting better.
20
+ Persistent memory graph. Vector-embedded, self-scoring, wired to learn across sessions. It extracts skills from what worked, traces causal chains through what broke, reflects on its own failures, and earns an identity through real experience. Every session compounds on the last.
21
21
 
22
- [Quick Start](#quick-start) | [Architecture](#architecture) | [How It Works](#how-it-works) | [Tools](#tools) | [Development](#development)
22
+ Your assistant stops forgetting. Then it starts getting smarter.
23
23
 
24
- </div>
24
+ [Quick Start](#quick-start) | [Architecture](#architecture) | [How It Works](#how-it-works) | [Tools](#tools) | [Development](#development)
25
25
 
26
26
  ---
27
27
 
@@ -397,8 +397,4 @@ The lobster doesn't accept contributions. The ape does.
397
397
 
398
398
  ---
399
399
 
400
- <div align="center">
401
-
402
400
  MIT License | Built by [42U](https://github.com/42U)
403
-
404
- </div>