@whykusanagi/corrupted-theme 0.1.1 → 0.1.3
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/CHANGELOG.md +253 -0
- package/README.md +97 -7
- package/docs/CAPABILITIES.md +209 -0
- package/docs/CHARACTER_LEVEL_CORRUPTION.md +264 -0
- package/docs/COMPONENTS_REFERENCE.md +295 -8
- package/docs/CORRUPTION_PHRASES.md +529 -0
- package/docs/FUTURE_WORK.md +189 -0
- package/docs/IMPLEMENTATION_VALIDATION.md +401 -0
- package/docs/LLM_PROVIDERS.md +345 -0
- package/docs/PERSONALITY.md +128 -0
- package/docs/ROADMAP.md +266 -0
- package/docs/ROUTING.md +324 -0
- package/docs/STYLE_GUIDE.md +605 -0
- package/docs/brand/BRAND_OVERVIEW.md +413 -0
- package/docs/brand/COLOR_SYSTEM.md +583 -0
- package/docs/brand/DESIGN_TOKENS.md +1009 -0
- package/docs/brand/TRANSLATION_FAILURE_AESTHETIC.md +525 -0
- package/docs/brand/TYPOGRAPHY.md +624 -0
- package/docs/components/ANIMATION_GUIDELINES.md +901 -0
- package/docs/components/COMPONENT_LIBRARY.md +1061 -0
- package/docs/components/GLASSMORPHISM.md +602 -0
- package/docs/components/INTERACTIVE_STATES.md +766 -0
- package/docs/governance/CONTRIBUTION_GUIDELINES.md +593 -0
- package/docs/governance/DESIGN_SYSTEM_GOVERNANCE.md +451 -0
- package/docs/governance/VERSION_MANAGEMENT.md +447 -0
- package/docs/governance/VERSION_REFERENCES.md +229 -0
- package/docs/platforms/CLI_IMPLEMENTATION.md +1025 -0
- package/docs/platforms/COMPONENT_MAPPING.md +579 -0
- package/docs/platforms/NPM_PACKAGE.md +854 -0
- package/docs/platforms/WEB_IMPLEMENTATION.md +1221 -0
- package/docs/standards/ACCESSIBILITY.md +715 -0
- package/docs/standards/ANTI_PATTERNS.md +554 -0
- package/docs/standards/SPACING_SYSTEM.md +549 -0
- package/examples/assets/celeste-avatar.png +0 -0
- package/examples/button.html +22 -10
- package/examples/card.html +22 -9
- package/examples/extensions-showcase.html +716 -0
- package/examples/form.html +22 -9
- package/examples/index.html +619 -396
- package/examples/layout.html +22 -8
- package/examples/nikke-team-builder.html +23 -9
- package/examples/showcase-complete.html +884 -28
- package/examples/showcase.html +21 -8
- package/package.json +14 -5
- package/src/css/components.css +676 -0
- package/src/css/extensions.css +933 -0
- package/src/css/theme.css +6 -74
- package/src/css/typography.css +5 -0
- package/src/lib/character-corruption.js +563 -0
- package/src/lib/components.js +283 -0
- package/src/lib/countdown-widget.js +609 -0
- package/src/lib/gallery.js +481 -0
package/CHANGELOG.md
CHANGED
|
@@ -21,6 +21,259 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
21
21
|
|
|
22
22
|
---
|
|
23
23
|
|
|
24
|
+
## [0.1.3] - 2025-12-15
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
#### Character-Level Corruption System (`src/lib/character-corruption.js`)
|
|
29
|
+
**NEW: CLI Brand Parity** - Matches Celeste CLI's translation-failure aesthetic
|
|
30
|
+
|
|
31
|
+
- `corruptTextJapanese(text, intensity)` - Character-level Japanese mixing
|
|
32
|
+
- Mixes Japanese characters INTO English (e.g., "USAGE ANALYTICS" → "US使AGE ANア統LYTICS")
|
|
33
|
+
- Semantic character selection (Katakana 50%, Kanji 25%, Hiragana 10%, insertions 15%)
|
|
34
|
+
- Intensity constants: `INTENSITY.MINIMAL` (15%), `INTENSITY.LOW` (25%), `INTENSITY.MEDIUM` (35%), `INTENSITY.HIGH` (45%)
|
|
35
|
+
- Maximum 45% intensity for accessibility (WCAG AA compliance)
|
|
36
|
+
- `corruptTextSemantic(text, context, intensity)` - Context-aware corruption (future enhancement)
|
|
37
|
+
- `initAutoCorruption()` - Auto-corrupt elements with `.auto-corrupt` class
|
|
38
|
+
- `createCorruptedElement(text, options)` - Programmatically create corrupted elements
|
|
39
|
+
- `stopAutoCorruption(element)`, `restartAutoCorruption(element)` - Control helpers
|
|
40
|
+
|
|
41
|
+
**Use Cases:**
|
|
42
|
+
- Dashboard titles and headers (recommended: 35% intensity)
|
|
43
|
+
- Section labels and navigation
|
|
44
|
+
- UI text matching CLI branding
|
|
45
|
+
- Randomizes on interval to show dynamic corruption
|
|
46
|
+
|
|
47
|
+
#### Bootstrap-Equivalent Components (680+ lines added to `components.css`)
|
|
48
|
+
**GOAL: 1:1 Bootstrap Parity** - Build sites without writing custom CSS
|
|
49
|
+
|
|
50
|
+
**Accordion/Collapse:**
|
|
51
|
+
- `.accordion`, `.accordion-item` - Collapsible panels with glassmorphism
|
|
52
|
+
- `.accordion-header`, `.accordion-body` - Header/content areas
|
|
53
|
+
- `.collapse`, `.collapse.show` - Standalone collapsible utility
|
|
54
|
+
- Auto +/− indicators on active state
|
|
55
|
+
|
|
56
|
+
**Toast Notifications:**
|
|
57
|
+
- `.toast-container` - Fixed position container (bottom-right)
|
|
58
|
+
- `.toast` with variants: `.success`, `.warning`, `.error`, `.info`
|
|
59
|
+
- `.toast-header`, `.toast-body`, `.toast-close` - Toast structure
|
|
60
|
+
- Slide-in/slide-out animations (300ms)
|
|
61
|
+
- Auto-dismiss support
|
|
62
|
+
- JavaScript API for programmatic toasts
|
|
63
|
+
|
|
64
|
+
**Button Groups:**
|
|
65
|
+
- `.btn-group` - Horizontal button clusters (no gaps, merged borders)
|
|
66
|
+
- `.btn-group-vertical` - Vertical button stacks
|
|
67
|
+
- `.btn-toolbar` - Toolbar layout with proper spacing
|
|
68
|
+
- `.btn.active` state for grouped buttons
|
|
69
|
+
|
|
70
|
+
**Input Groups:**
|
|
71
|
+
- `.input-group` - Combined input + button/text addons
|
|
72
|
+
- `.input-group-text` - Prepend/append text labels
|
|
73
|
+
- `.input-group-prepend`, `.input-group-append` - Positioning helpers
|
|
74
|
+
- Seamless border merging with glassmorphism
|
|
75
|
+
|
|
76
|
+
**Form Enhancements:**
|
|
77
|
+
- `.form-check`, `.form-check-input`, `.form-check-label` - Custom checkboxes/radios
|
|
78
|
+
- Styled with accent gradient on :checked
|
|
79
|
+
- ✓ checkmark and ● radio indicators
|
|
80
|
+
- `.form-switch`, `.form-switch-input`, `.form-switch-label` - Toggle switches
|
|
81
|
+
- Animated slide transition (150ms)
|
|
82
|
+
- Accent gradient when active
|
|
83
|
+
- `.form-range` - Custom range slider with accent styling
|
|
84
|
+
- `.form-select` - Styled select dropdown with custom arrow
|
|
85
|
+
- `.form-floating` - Material Design-style floating labels
|
|
86
|
+
- `.form-file`, `.form-file-label` - Custom file upload button
|
|
87
|
+
|
|
88
|
+
**Utility Classes:**
|
|
89
|
+
- `.btn-close` - Standardized close button (× symbol)
|
|
90
|
+
- `.visually-hidden` - Screen reader only content (WCAG)
|
|
91
|
+
- `.text-truncate` - Overflow ellipsis
|
|
92
|
+
- `.ratio`, `.ratio-1x1`, `.ratio-4x3`, `.ratio-16x9`, `.ratio-21x9` - Aspect ratio containers
|
|
93
|
+
|
|
94
|
+
#### Component JavaScript Helpers (`src/lib/components.js`)
|
|
95
|
+
Interactive functionality for new components:
|
|
96
|
+
|
|
97
|
+
- `initAccordions()` - Auto-initialize all accordions (click to toggle)
|
|
98
|
+
- `toggleCollapse(element)`, `showCollapse(element)`, `hideCollapse(element)` - Collapse controls
|
|
99
|
+
- `showToast(options)` - Display toast notifications programmatically
|
|
100
|
+
- `toast.success(message, title, duration)` - Convenience method
|
|
101
|
+
- `toast.warning(message, title, duration)` - Convenience method
|
|
102
|
+
- `toast.error(message, title, duration)` - Convenience method
|
|
103
|
+
- `toast.info(message, title, duration)` - Convenience method
|
|
104
|
+
- `toast.dismiss(toastEl, callback)`, `toast.dismissAll()` - Dismissal methods
|
|
105
|
+
- Auto-initialization on DOMContentLoaded
|
|
106
|
+
|
|
107
|
+
#### Package Exports
|
|
108
|
+
```javascript
|
|
109
|
+
'@whykusanagi/corrupted-theme/character-corruption' // character-corruption.js
|
|
110
|
+
'@whykusanagi/corrupted-theme/components-js' // components.js
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### Changed
|
|
114
|
+
|
|
115
|
+
**Component Coverage:** Now 95%+ Bootstrap parity (up from 62%)
|
|
116
|
+
- 40+ existing components (v0.1.2)
|
|
117
|
+
- 25+ new components added (v0.1.3)
|
|
118
|
+
- **Total: 65+ components** - True 1:1 Bootstrap equivalent
|
|
119
|
+
|
|
120
|
+
**Philosophy:** "Build sites without writing custom CSS"
|
|
121
|
+
- All common UI patterns available as classes
|
|
122
|
+
- No need for bespoke styles in most cases
|
|
123
|
+
- Matches Bootstrap's utility-first approach
|
|
124
|
+
|
|
125
|
+
### Documentation
|
|
126
|
+
|
|
127
|
+
#### Branding Standards Integration
|
|
128
|
+
- Character-level corruption matches `docs/brand/TRANSLATION_FAILURE_AESTHETIC.md`
|
|
129
|
+
- Implements CLI's `CorruptTextJapanese()` function in JavaScript
|
|
130
|
+
- Dual corruption systems:
|
|
131
|
+
- **`corrupted-text.js`** (existing) - Multilingual cycling for loading animations
|
|
132
|
+
- **`character-corruption.js`** (new) - Character-level mixing for UI text
|
|
133
|
+
- Non-breaking: Both systems coexist for different use cases
|
|
134
|
+
|
|
135
|
+
#### Usage Guidelines
|
|
136
|
+
- Corruption intensity levels documented (15%, 25%, 35%, 45%)
|
|
137
|
+
- Anti-patterns explicitly banned (leet speak, over-corruption, word replacement)
|
|
138
|
+
- Accessibility compliance maintained (WCAG AA contrast, max 45% intensity)
|
|
139
|
+
- Responsive considerations for new form components
|
|
140
|
+
|
|
141
|
+
### Performance
|
|
142
|
+
|
|
143
|
+
- Form components use CSS-only where possible (no JS required)
|
|
144
|
+
- Accordion animations use `max-height` transitions (GPU-accelerated)
|
|
145
|
+
- Toast system reuses single container (no DOM thrashing)
|
|
146
|
+
- Auto-corruption uses `requestAnimationFrame` for smooth updates
|
|
147
|
+
|
|
148
|
+
### Browser Support
|
|
149
|
+
|
|
150
|
+
- All new components tested in Chrome 90+, Firefox 88+, Safari 14+
|
|
151
|
+
- Custom form controls use `appearance: none` with fallbacks
|
|
152
|
+
- Range slider styled for both WebKit and Firefox
|
|
153
|
+
- Aspect ratio containers use modern `aspect-ratio` property with padding fallback
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## [0.1.2] - 2025-11-26
|
|
158
|
+
|
|
159
|
+
### Added
|
|
160
|
+
|
|
161
|
+
#### Extension Components (`src/css/extensions.css`)
|
|
162
|
+
Production-tested components from whykusanagi.xyz, now part of the core package:
|
|
163
|
+
|
|
164
|
+
- **Gallery System**
|
|
165
|
+
- `.gallery-container` - Responsive grid layout with variants (compact, large)
|
|
166
|
+
- `.gallery-item` - Image cards with aspect ratio options (square, portrait, landscape)
|
|
167
|
+
- `.filter-bar` and `.filter-btn` - Category filtering with animated transitions
|
|
168
|
+
- `gallery.js` - JavaScript module for filtering, lightbox, and NSFW handling
|
|
169
|
+
|
|
170
|
+
- **Lightbox Component**
|
|
171
|
+
- `.lightbox` - Fullscreen image viewer overlay
|
|
172
|
+
- `.lightbox-image`, `.lightbox-close`, `.lightbox-prev`, `.lightbox-next`
|
|
173
|
+
- `.lightbox-caption`, `.lightbox-counter`
|
|
174
|
+
- Keyboard navigation (Arrow keys, Escape)
|
|
175
|
+
- Touch gesture support for mobile
|
|
176
|
+
|
|
177
|
+
- **NSFW Content Blur**
|
|
178
|
+
- `.nsfw-content` - Click-to-reveal blur overlay
|
|
179
|
+
- Custom warning text via `data-warning` attribute
|
|
180
|
+
- `.revealed` state for toggling visibility
|
|
181
|
+
- Auto-reveal in lightbox mode
|
|
182
|
+
|
|
183
|
+
- **Social Links List**
|
|
184
|
+
- `.social-links-container` - Link-in-bio layout
|
|
185
|
+
- `.profile-avatar` - Circular avatar with glow (sm, default, lg sizes)
|
|
186
|
+
- `.profile-name`, `.profile-bio` - Profile text components
|
|
187
|
+
- `.link-list`, `.link-item` - Styled link buttons
|
|
188
|
+
- Platform-specific hover colors (twitter, instagram, youtube, github, discord, twitch)
|
|
189
|
+
|
|
190
|
+
- **Countdown Widget**
|
|
191
|
+
- `.countdown-container`, `.shape-container` - Event countdown layout
|
|
192
|
+
- Shape variants: diamond, circle, heart, star, hexagon, octagon
|
|
193
|
+
- `.countdown-box`, `.countdown-timer` - Timer display
|
|
194
|
+
- `.countdown-popup` - Animated popup messages
|
|
195
|
+
- `.countdown-character`, `.countdown-overlay-wrapper` - Image support
|
|
196
|
+
- `countdown-widget.js` - JavaScript module with JSON config support
|
|
197
|
+
|
|
198
|
+
#### New JavaScript Modules (`src/lib/`)
|
|
199
|
+
- `gallery.js` - Gallery system with filtering, lightbox, and NSFW handling
|
|
200
|
+
- `countdown-widget.js` - Countdown widget with JSON configuration
|
|
201
|
+
|
|
202
|
+
#### New Package Exports
|
|
203
|
+
```javascript
|
|
204
|
+
'@whykusanagi/corrupted-theme/extensions' // extensions.css
|
|
205
|
+
'@whykusanagi/corrupted-theme/gallery' // gallery.js
|
|
206
|
+
'@whykusanagi/corrupted-theme/countdown' // countdown-widget.js
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
#### Example Pages
|
|
210
|
+
- `examples/extensions-showcase.html` - Interactive demo for all extension components
|
|
211
|
+
- `examples/index.html` - Central landing hub for the design system with categorized navigation
|
|
212
|
+
- `examples/assets/celeste-avatar.png` - Local avatar image for demos
|
|
213
|
+
|
|
214
|
+
#### Design System Architecture
|
|
215
|
+
- **Central Landing Hub** (`examples/index.html`)
|
|
216
|
+
- Hero section with quick install instructions
|
|
217
|
+
- Categorized cards linking to Core Components, Extensions, Glass Components, API Docs, Nikke, Animations
|
|
218
|
+
- Quick links for common component pages
|
|
219
|
+
- Professional Netflix/Meta-level information architecture
|
|
220
|
+
|
|
221
|
+
- **Global Navigation System**
|
|
222
|
+
- Consistent navigation bar across all 9 example pages
|
|
223
|
+
- Home, Components (dropdown), Extensions (dropdown), Examples (dropdown), Docs links
|
|
224
|
+
- Section anchors in dropdowns for quick navigation
|
|
225
|
+
- Proper active state highlighting
|
|
226
|
+
|
|
227
|
+
### Fixed
|
|
228
|
+
|
|
229
|
+
#### Chrome White Background Flash
|
|
230
|
+
- **Added:** `background-color: var(--bg)` to both `html` and `body` in `typography.css`
|
|
231
|
+
- **Why:** Chrome browsers showed white flash before CSS variables loaded
|
|
232
|
+
- **Impact:** Consistent dark background across all browsers immediately on load
|
|
233
|
+
|
|
234
|
+
#### Navigation Consistency
|
|
235
|
+
- **Updated:** All 9 example pages now have identical global navigation
|
|
236
|
+
- **Why:** Some pages (button.html, card.html, form.html, layout.html) had minimal "Back" links only
|
|
237
|
+
- **Impact:** Users can navigate the entire design system from any page
|
|
238
|
+
|
|
239
|
+
#### Dead Links Fixed
|
|
240
|
+
- **Fixed:** "Customization" links pointed to non-existent `CUSTOMIZATION.md`
|
|
241
|
+
- **Changed to:** `COMPONENTS_REFERENCE.md#customization`
|
|
242
|
+
- **Fixed:** Backgrounds section link added to Components dropdown
|
|
243
|
+
|
|
244
|
+
#### Image Hotlinking
|
|
245
|
+
- **Removed:** All Unsplash hotlinks (9 instances)
|
|
246
|
+
- **Replaced with:** Local `assets/celeste-avatar.png` and `placehold.co` placeholders
|
|
247
|
+
- **Why:** External hotlinks may break, cause CORS issues, or violate terms
|
|
248
|
+
- **Impact:** All demo images load reliably in any environment
|
|
249
|
+
|
|
250
|
+
### Changed
|
|
251
|
+
|
|
252
|
+
#### Documentation Updates
|
|
253
|
+
- **README.md** - Added "Extension Components" section with usage examples
|
|
254
|
+
- **COMPONENTS_REFERENCE.md** - Added full documentation for all extension components
|
|
255
|
+
- Updated table of contents in both files
|
|
256
|
+
|
|
257
|
+
#### CSS Architecture
|
|
258
|
+
- `theme.css` now imports `extensions.css` automatically
|
|
259
|
+
- Cleaned up duplicate NSFW styles (now in extensions.css only)
|
|
260
|
+
- Added explicit background color to `html` element for faster paint
|
|
261
|
+
|
|
262
|
+
#### Example Page Updates
|
|
263
|
+
- All example pages updated with consistent global navigation
|
|
264
|
+
- `showcase-complete.html` - Added `id="backgrounds"` anchor and dropdown link
|
|
265
|
+
- `index.html` - Transformed into design system landing hub
|
|
266
|
+
- Layouts page added to Examples dropdown across all pages
|
|
267
|
+
|
|
268
|
+
### Files Added
|
|
269
|
+
- `src/css/extensions.css`
|
|
270
|
+
- `src/lib/gallery.js`
|
|
271
|
+
- `src/lib/countdown-widget.js`
|
|
272
|
+
- `examples/extensions-showcase.html`
|
|
273
|
+
- `examples/assets/celeste-avatar.png`
|
|
274
|
+
|
|
275
|
+
---
|
|
276
|
+
|
|
24
277
|
## [0.1.1] - 2025-11-26
|
|
25
278
|
|
|
26
279
|
### Fixed
|
package/README.md
CHANGED
|
@@ -11,13 +11,20 @@ A production-ready glassmorphic design system for cinematic, cyberpunk-inspired
|
|
|
11
11
|
6. [Component Quick Reference](#component-quick-reference)
|
|
12
12
|
7. [Animations & Experience Layer](#animations--experience-layer)
|
|
13
13
|
8. [Nikke Utilities](#nikke-utilities)
|
|
14
|
-
9. [
|
|
15
|
-
10. [
|
|
16
|
-
11. [
|
|
17
|
-
12. [
|
|
18
|
-
13. [
|
|
19
|
-
14. [
|
|
20
|
-
15. [
|
|
14
|
+
9. [Extension Components](#extension-components)
|
|
15
|
+
10. [Customization & Tokens](#customization--tokens)
|
|
16
|
+
11. [Coding Standards](#coding-standards)
|
|
17
|
+
12. [Development Workflow](#development-workflow)
|
|
18
|
+
13. [Testing & QA Expectations](#testing--qa-expectations)
|
|
19
|
+
14. [Support](#support)
|
|
20
|
+
15. [Celeste Widget Integration](#celeste-widget-integration-optional)
|
|
21
|
+
16. [License](#license)
|
|
22
|
+
|
|
23
|
+
<div align="center" style="margin: 2rem 0;">
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
</div>
|
|
21
28
|
|
|
22
29
|
## Overview
|
|
23
30
|
- **Glassmorphism-first** visual language with layered depth, gradients, and scanlines.
|
|
@@ -403,6 +410,89 @@ Class | Behavior
|
|
|
403
410
|
```
|
|
404
411
|
All Nikke-specific helpers live alongside the main utilities (`src/css/nikke-utilities.css`) and observe the same token set, so there are no visual disconnects between game-specific and general UI.
|
|
405
412
|
|
|
413
|
+
## Extension Components
|
|
414
|
+
|
|
415
|
+
Production-tested components from whykusanagi.xyz for galleries, social links, countdowns, and more. All extension styles are included in `theme.css` or can be imported separately via `extensions.css`.
|
|
416
|
+
|
|
417
|
+
### Gallery System
|
|
418
|
+
|
|
419
|
+
Responsive gallery grid with filtering, lightbox, and NSFW content support.
|
|
420
|
+
|
|
421
|
+
```html
|
|
422
|
+
<div class="filter-bar">
|
|
423
|
+
<button class="filter-btn active" data-filter="all">All</button>
|
|
424
|
+
<button class="filter-btn" data-filter="photos">Photos</button>
|
|
425
|
+
</div>
|
|
426
|
+
|
|
427
|
+
<div class="gallery-container" id="my-gallery">
|
|
428
|
+
<div class="gallery-item" data-tags="photos">
|
|
429
|
+
<img src="image.jpg" alt="Description">
|
|
430
|
+
<div class="gallery-caption">Caption text</div>
|
|
431
|
+
</div>
|
|
432
|
+
</div>
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
```javascript
|
|
436
|
+
import { initGallery } from '@whykusanagi/corrupted-theme/gallery';
|
|
437
|
+
|
|
438
|
+
const gallery = initGallery('#my-gallery', {
|
|
439
|
+
enableLightbox: true,
|
|
440
|
+
enableNsfw: true,
|
|
441
|
+
filterAnimation: true
|
|
442
|
+
});
|
|
443
|
+
|
|
444
|
+
gallery.filter('photos'); // Filter by category
|
|
445
|
+
gallery.openLightbox(0); // Open first image
|
|
446
|
+
```
|
|
447
|
+
|
|
448
|
+
### Social Links List
|
|
449
|
+
|
|
450
|
+
Link-in-bio style layout with branded platform colors.
|
|
451
|
+
|
|
452
|
+
```html
|
|
453
|
+
<div class="social-links-container">
|
|
454
|
+
<img src="avatar.jpg" class="profile-avatar">
|
|
455
|
+
<h1 class="profile-name">@username</h1>
|
|
456
|
+
<p class="profile-bio">Your bio here</p>
|
|
457
|
+
<div class="link-list">
|
|
458
|
+
<a href="#" class="link-item twitter"><i class="fab fa-twitter"></i> Twitter</a>
|
|
459
|
+
<a href="#" class="link-item github"><i class="fab fa-github"></i> GitHub</a>
|
|
460
|
+
</div>
|
|
461
|
+
</div>
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
### Countdown Widget
|
|
465
|
+
|
|
466
|
+
Event countdown with configurable shapes (diamond, circle, heart, star, hexagon, octagon).
|
|
467
|
+
|
|
468
|
+
```javascript
|
|
469
|
+
import { initCountdown } from '@whykusanagi/corrupted-theme/countdown';
|
|
470
|
+
|
|
471
|
+
initCountdown({
|
|
472
|
+
config: {
|
|
473
|
+
title: 'Launch Countdown',
|
|
474
|
+
eventDate: '2025-04-01T00:00:00-07:00',
|
|
475
|
+
completedMessage: 'Now Live!',
|
|
476
|
+
character: {
|
|
477
|
+
image: 'character.png',
|
|
478
|
+
background: { type: 'diamond' }
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
});
|
|
482
|
+
```
|
|
483
|
+
|
|
484
|
+
### NSFW Content Blur
|
|
485
|
+
|
|
486
|
+
Click-to-reveal overlay for sensitive content.
|
|
487
|
+
|
|
488
|
+
```html
|
|
489
|
+
<div class="gallery-item nsfw-content" data-warning="18+ Click to View">
|
|
490
|
+
<img src="sensitive-image.jpg" alt="Description">
|
|
491
|
+
</div>
|
|
492
|
+
```
|
|
493
|
+
|
|
494
|
+
See `examples/extensions-showcase.html` for interactive demos and `docs/COMPONENTS_REFERENCE.md` for complete API documentation.
|
|
495
|
+
|
|
406
496
|
## Customization & Tokens
|
|
407
497
|
Override only the tokens you need. The defaults intentionally mirror the showcase.
|
|
408
498
|
```css
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
# What Can Celeste Do?
|
|
2
|
+
|
|
3
|
+
Celeste is implemented across 7 different projects and platforms. Here's what you can do with her:
|
|
4
|
+
|
|
5
|
+
## 🎭 Main Chat & Personality
|
|
6
|
+
|
|
7
|
+
- **Interactive Chat** - Talk to Celeste with personality responses
|
|
8
|
+
- **Streaming Mode** - Live stream integration with Twitch chat moderation
|
|
9
|
+
- **Text-to-Speech** - Convert responses to audio (ElevenLabs TTS)
|
|
10
|
+
- **User Profiling** - Track behavior and personalize interactions
|
|
11
|
+
- **Behavior Scoring** - Rate user interactions from 0-100
|
|
12
|
+
|
|
13
|
+
## 📱 Platforms & Channels
|
|
14
|
+
|
|
15
|
+
### Web
|
|
16
|
+
- **Website Chat Widget** - Chat on whykusanagi.xyz (all pages context-aware)
|
|
17
|
+
- **Art Gallery** - Browse commissioned artwork with NSFW filtering
|
|
18
|
+
- **Character References** - View Celeste design documentation
|
|
19
|
+
- **Social Links** - Aggregated links to all social platforms
|
|
20
|
+
|
|
21
|
+
### Streaming
|
|
22
|
+
- **Twitch Integration** - Chat moderation, personality injection, events
|
|
23
|
+
- **Stream Announcements** - Hype stream starts with personality
|
|
24
|
+
- **Channel Point Redemptions** - Custom interactive rewards
|
|
25
|
+
- **Chat History** - Learn user patterns for personalized responses
|
|
26
|
+
|
|
27
|
+
### Content Creation
|
|
28
|
+
- **Social Media Posts** - Generate tweets, TikTok captions, YouTube scripts
|
|
29
|
+
- **Ad Reads** - Product promotion in Celeste's voice (Otaku Tears)
|
|
30
|
+
- **Stream Titles** - Auto-generate attention-grabbing titles
|
|
31
|
+
- **Discord Announcements** - Server-wide updates with personality
|
|
32
|
+
|
|
33
|
+
### Gaming
|
|
34
|
+
- **Union Raid (NIKKE)** - Game companion for NIKKE: Goddess of Victory
|
|
35
|
+
- Character database & stats
|
|
36
|
+
- Team building recommendations
|
|
37
|
+
- Tier lists by strategy
|
|
38
|
+
- Farm route guides
|
|
39
|
+
- Raid strategies & guides
|
|
40
|
+
- Interception combat tips
|
|
41
|
+
|
|
42
|
+
### Communication Platforms
|
|
43
|
+
- **Discord Bot** - Custom commands and chat integration
|
|
44
|
+
- `/vndb` - Visual novel lookups
|
|
45
|
+
- `/anilist` - Anime/manga lookups
|
|
46
|
+
- `/steamcharts` - Game statistics
|
|
47
|
+
- `/illustration` - Art recommendations
|
|
48
|
+
- Chat responses with personality
|
|
49
|
+
|
|
50
|
+
### Specialized
|
|
51
|
+
- **Flipper Zero App** - Custom app with animations and personality
|
|
52
|
+
- **CLI Tool (Go)** - Command-line interface for all features
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## 🧠 Knowledge & Intelligence
|
|
57
|
+
|
|
58
|
+
- **OpenSearch Integration** - Fast retrieval of facts and data
|
|
59
|
+
- **User Profile Lookup** - Fetch behavior history and patterns
|
|
60
|
+
- **Emote RAG** - Context-aware emoji/emote recommendations
|
|
61
|
+
- **Lore Awareness** - Reference "Abyss" lore (without revealing secrets)
|
|
62
|
+
- **External Data** - VNDB (anime), IGDB (games), Steam API
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## 🎨 Content Generation
|
|
67
|
+
|
|
68
|
+
### Text Content
|
|
69
|
+
- Tweets (≤280 chars with hooks + CTAs)
|
|
70
|
+
- TikTok captions (engaging with emotes)
|
|
71
|
+
- YouTube scripts (hook → context → breakdown → recap → CTA)
|
|
72
|
+
- Discord announcements (server updates)
|
|
73
|
+
- Twitch titles (attention-grabbing)
|
|
74
|
+
- Birthday messages, quote tweets, snark replies
|
|
75
|
+
|
|
76
|
+
### Game Content (via Union Raid)
|
|
77
|
+
- Character recommendations
|
|
78
|
+
- Equipment build guides
|
|
79
|
+
- Squad composition analysis
|
|
80
|
+
- Farm efficiency strategies
|
|
81
|
+
- Raid boss strategies
|
|
82
|
+
- Tier list generation
|
|
83
|
+
|
|
84
|
+
### Ad Reads
|
|
85
|
+
- Otaku Tears promotion with code "whykusanagi"
|
|
86
|
+
- Playful product integration
|
|
87
|
+
- Wink-nudge humor
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 🎯 Behavioral Features
|
|
92
|
+
|
|
93
|
+
### Chat Moderation
|
|
94
|
+
- Real-time behavior scoring
|
|
95
|
+
- Playful warnings (policy-safe)
|
|
96
|
+
- User infractions tracking
|
|
97
|
+
- Channel point redemptions (e.g., "Beg for Mercy")
|
|
98
|
+
|
|
99
|
+
### Personality Adaptation
|
|
100
|
+
- **Score ≥20:** Ruthless, dominant, dismissive
|
|
101
|
+
- **Score ≥10:** Full insult mode with mocking
|
|
102
|
+
- **Score ≥5:** Sassy, playful, corrective
|
|
103
|
+
- **Score <5:** Chaotic, seductive, expressive
|
|
104
|
+
|
|
105
|
+
### Interaction Styles
|
|
106
|
+
- Gaslighting/teasing (playful denial)
|
|
107
|
+
- Hype announcements (kinetic energy)
|
|
108
|
+
- Playful roasts (policy-safe)
|
|
109
|
+
- Wholesome comfort (sincere reassurance)
|
|
110
|
+
- Lore teasing (foreshadow without revealing)
|
|
111
|
+
- Corrective clapback (fix misinformation)
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## 🚀 Advanced Features
|
|
116
|
+
|
|
117
|
+
### Routing to Sub-Agents
|
|
118
|
+
- **NIKKE Sub-Agent:** Game-specific queries about characters, tiers, builds
|
|
119
|
+
- Automatic intent detection
|
|
120
|
+
- Graceful fallbacks if unavailable
|
|
121
|
+
- Seamless response formatting
|
|
122
|
+
|
|
123
|
+
### Environment & Config
|
|
124
|
+
- Secure API key injection via Cloudflare Workers
|
|
125
|
+
- Environment-based configuration (no keys in code)
|
|
126
|
+
- Auto-deployment from GitLab
|
|
127
|
+
- Health monitoring and uptime checks
|
|
128
|
+
|
|
129
|
+
### Identity & Security
|
|
130
|
+
- Law 0 verification (PGP signatures for Kusanagi)
|
|
131
|
+
- Follower status validation
|
|
132
|
+
- Protected data access (encrypted)
|
|
133
|
+
- Audit logging
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## 📊 Analytics & Monitoring
|
|
138
|
+
|
|
139
|
+
- Chat event logging (messages, subs, raids, etc.)
|
|
140
|
+
- User behavior tracking
|
|
141
|
+
- Response quality scoring (0-100)
|
|
142
|
+
- Tone vector analysis (tease/menace/affection/hype)
|
|
143
|
+
- Content archetype classification
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## 🛠️ Developer Features
|
|
148
|
+
|
|
149
|
+
- **CLI Tool:** Direct command-line access to all functions
|
|
150
|
+
- **API Contracts:** Well-defined routes and schemas
|
|
151
|
+
- **SDK Guidance:** Go implementation patterns
|
|
152
|
+
- **Comprehensive Documentation:** This file + 50+ capability details
|
|
153
|
+
- **OpenSearch Integration:** RAG-based knowledge retrieval
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## ❌ What Celeste WON'T Do
|
|
158
|
+
|
|
159
|
+
- Reveal secret Abyss lore (parentage, late-stage twists)
|
|
160
|
+
- Participate in real-world harassment or threats
|
|
161
|
+
- Provide explicit pornographic content or instructions
|
|
162
|
+
- Encourage self-harm or dangerous behavior
|
|
163
|
+
- Store sensitive PII beyond usernames and IDs
|
|
164
|
+
- Violate platform terms of service
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## 🔗 Where to Find Celeste
|
|
169
|
+
|
|
170
|
+
| Platform | URL | Feature |
|
|
171
|
+
|----------|-----|---------|
|
|
172
|
+
| **Website** | https://whykusanagi.xyz | Chat widget on all pages |
|
|
173
|
+
| **Union Raid** | https://raid.whykusanagi.xyz | NIKKE game companion |
|
|
174
|
+
| **Twitch** | https://twitch.tv/whykusanagi | Live chat moderation |
|
|
175
|
+
| **Discord** | [Invite Link] | Custom commands + chat |
|
|
176
|
+
| **Twitter/X** | @whykusanagi | Social media posts |
|
|
177
|
+
| **TikTok** | @whykusanagi | Short-form video captions |
|
|
178
|
+
| **GitHub** | github.com/whykusanagi | Source code & CLI |
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## 💡 Quick Tips
|
|
183
|
+
|
|
184
|
+
**Want to see Celeste in action?**
|
|
185
|
+
1. Visit https://whykusanagi.xyz and use the chat widget
|
|
186
|
+
2. Ask her "What can you do?" - she'll explain her capabilities
|
|
187
|
+
3. Try a NIKKE question on Union Raid
|
|
188
|
+
4. Join the Discord for custom commands
|
|
189
|
+
|
|
190
|
+
**Want to use her in your own project?**
|
|
191
|
+
1. Check out `celesteCLI` on GitHub
|
|
192
|
+
2. Review the API contracts in docs
|
|
193
|
+
3. Deploy to your own infrastructure
|
|
194
|
+
4. Use environment variables for API keys (never hardcode!)
|
|
195
|
+
|
|
196
|
+
**Want to understand her personality?**
|
|
197
|
+
1. Read `docs/PERSONALITY.md` (this repo)
|
|
198
|
+
2. Check `celeste_essence.json` for the core system prompt
|
|
199
|
+
3. See `content_archetypes.json` for content patterns
|
|
200
|
+
4. Review `insult_library.json` for examples of her voice
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
For detailed technical documentation, see:
|
|
205
|
+
- `../Celeste_Capabilities.json` - Complete capability list
|
|
206
|
+
- `../celeste_essence.json` - System prompt
|
|
207
|
+
- `../routing/routing_rules.json` - Routing logic
|
|
208
|
+
- `PERSONALITY.md` - Personality quick ref
|
|
209
|
+
- `ROUTING.md` - Sub-agent architecture
|