@whykusanagi/corrupted-theme 0.1.3 → 0.1.4
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 +24 -0
- package/docs/governance/DESIGN_SYSTEM_GOVERNANCE.md +2 -2
- package/docs/governance/VERSION_REFERENCES.md +25 -25
- package/docs/platforms/NPM_PACKAGE.md +6 -6
- package/examples/button.html +1 -1
- package/examples/card.html +1 -1
- package/examples/form.html +1 -1
- package/examples/index.html +2 -2
- package/examples/layout.html +1 -1
- package/examples/nikke-team-builder.html +1 -1
- package/examples/showcase-complete.html +7 -7
- package/examples/showcase.html +1 -1
- package/package.json +13 -2
- package/docs/CAPABILITIES.md +0 -209
- package/docs/FUTURE_WORK.md +0 -189
- package/docs/IMPLEMENTATION_VALIDATION.md +0 -401
- package/docs/LLM_PROVIDERS.md +0 -345
- package/docs/PERSONALITY.md +0 -128
- package/docs/ROUTING.md +0 -324
- package/docs/platforms/CLI_IMPLEMENTATION.md +0 -1025
package/CHANGELOG.md
CHANGED
|
@@ -21,6 +21,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
21
21
|
|
|
22
22
|
---
|
|
23
23
|
|
|
24
|
+
## [0.1.4] - 2025-12-15
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
- **Navigation Consistency** - Moved index.html to root, fixed all navigation paths
|
|
28
|
+
- **Asset Loading** - Corrected CSS and documentation paths for root-level index
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- **Complete Corruption Phrase Library** - Added 67 official phrases to character-corruption.js
|
|
32
|
+
- 30 technical phrases (6 categories: loading, processing, analyzing, corrupting, watching, void)
|
|
33
|
+
- 30 personality phrases (English, Japanese, Romaji)
|
|
34
|
+
- `getRandomPhrase()` helper function
|
|
35
|
+
- **Animation Utilities Showcase** - Added comprehensive examples for all 21+ animation classes
|
|
36
|
+
- **VERSION_REFERENCES.md** - Complete version tracking documentation for future releases
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
- **npm Package** - Excluded 7 internal docs from npm release (IMPLEMENTATION_VALIDATION, FUTURE_WORK, CAPABILITIES, PERSONALITY, ROUTING, LLM_PROVIDERS, CLI_IMPLEMENTATION)
|
|
40
|
+
- **Documentation** - Extended CORRUPTION_PHRASES.md with Celeste demon/succubus personality phrases
|
|
41
|
+
|
|
42
|
+
### Documentation
|
|
43
|
+
- Added 33 governance, brand, component, and platform documentation files
|
|
44
|
+
- All version references updated consistently across project
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
24
48
|
## [0.1.3] - 2025-12-15
|
|
25
49
|
|
|
26
50
|
### Added
|
|
@@ -220,8 +220,8 @@ Reviewers verify:
|
|
|
220
220
|
|
|
221
221
|
| Type | Frequency | Version Bump | Example |
|
|
222
222
|
|------|-----------|--------------|---------|
|
|
223
|
-
| **Patch** | As needed | 0.0.x | 0.1.2 → 0.1.
|
|
224
|
-
| **Minor** | Monthly | 0.x.0 | 0.1.
|
|
223
|
+
| **Patch** | As needed | 0.0.x | 0.1.2 → 0.1.4 |
|
|
224
|
+
| **Minor** | Monthly | 0.x.0 | 0.1.4 → 0.2.0 |
|
|
225
225
|
| **Major** | Quarterly | x.0.0 | 0.2.0 → 1.0.0 |
|
|
226
226
|
|
|
227
227
|
### Release Phases
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Purpose**: Complete list of all files containing version numbers that must be updated when releasing a new version.
|
|
4
4
|
|
|
5
|
-
**Current Version**: 0.1.
|
|
5
|
+
**Current Version**: 0.1.4
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
**Location**: `/package.json`
|
|
13
13
|
**Line**: 3
|
|
14
14
|
```json
|
|
15
|
-
"version": "0.1.
|
|
15
|
+
"version": "0.1.4"
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
### 2. CHANGELOG.md
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
### 7. showcase-complete.html
|
|
63
63
|
**Location**: `/examples/showcase-complete.html`
|
|
64
64
|
**Lines to update**:
|
|
65
|
-
- Line 1135: "NEW v0.1.
|
|
66
|
-
- Line 1317: "NEW v0.1.
|
|
65
|
+
- Line 1135: "NEW v0.1.4" badge (keep for current release, change to version number after)
|
|
66
|
+
- Line 1317: "NEW v0.1.4" badge (keep for current release, change to version number after)
|
|
67
67
|
- Line 1697: Footer version `v0.1.X`
|
|
68
|
-
- Line 1835: Comment `<!-- NEW v0.1.
|
|
68
|
+
- Line 1835: Comment `<!-- NEW v0.1.4: ... -->`
|
|
69
69
|
- Line 1922: Toast message `Welcome to Corrupted Theme v0.1.X!`
|
|
70
70
|
|
|
71
71
|
### 8. Other Example Pages
|
|
@@ -77,13 +77,13 @@ All have footer version references like:
|
|
|
77
77
|
<p>... • Corrupted Theme v0.1.0</p>
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
**Update these to current version** (currently showing v0.1.0, should be v0.1.
|
|
80
|
+
**Update these to current version** (currently showing v0.1.0, should be v0.1.4)
|
|
81
81
|
|
|
82
82
|
---
|
|
83
83
|
|
|
84
84
|
## Version Bump Procedure
|
|
85
85
|
|
|
86
|
-
When releasing a new version (e.g., 0.1.
|
|
86
|
+
When releasing a new version (e.g., 0.1.4 → 0.1.4):
|
|
87
87
|
|
|
88
88
|
### Step 1: Core Files
|
|
89
89
|
```bash
|
|
@@ -115,7 +115,7 @@ npm version patch # or minor, or major
|
|
|
115
115
|
# - Footer
|
|
116
116
|
|
|
117
117
|
# 7. Update showcase-complete.html
|
|
118
|
-
# - Change "NEW v0.1.
|
|
118
|
+
# - Change "NEW v0.1.4" badges to just version number
|
|
119
119
|
# - Update footer
|
|
120
120
|
# - Update toast message
|
|
121
121
|
|
|
@@ -171,19 +171,19 @@ When updating, search for these patterns:
|
|
|
171
171
|
|
|
172
172
|
```bash
|
|
173
173
|
# Version with v prefix
|
|
174
|
-
"v0.1.
|
|
174
|
+
"v0.1.4"
|
|
175
175
|
"v0\.1\.3"
|
|
176
176
|
|
|
177
177
|
# Version without v prefix
|
|
178
|
-
"0.1.
|
|
178
|
+
"0.1.4"
|
|
179
179
|
"0\.1\.3"
|
|
180
180
|
|
|
181
181
|
# NPM package version
|
|
182
|
-
"@whykusanagi/corrupted-theme@0.1.
|
|
182
|
+
"@whykusanagi/corrupted-theme@0.1.4"
|
|
183
183
|
|
|
184
184
|
# NEW badge references
|
|
185
|
-
"NEW v0.1.
|
|
186
|
-
"NEW in v0.1.
|
|
185
|
+
"NEW v0.1.4"
|
|
186
|
+
"NEW in v0.1.4"
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
---
|
|
@@ -192,18 +192,18 @@ When updating, search for these patterns:
|
|
|
192
192
|
|
|
193
193
|
**Files showing OLD versions that need updating:**
|
|
194
194
|
|
|
195
|
-
1. `/examples/showcase.html` - Shows v0.1.0 (should be v0.1.
|
|
196
|
-
2. `/examples/form.html` - Shows v0.1.0 (should be v0.1.
|
|
197
|
-
3. `/examples/layout.html` - Shows v0.1.0 (should be v0.1.
|
|
198
|
-
4. `/examples/card.html` - Shows v0.1.0 (should be v0.1.
|
|
199
|
-
5. `/examples/button.html` - Shows v0.1.0 (should be v0.1.
|
|
200
|
-
6. `/examples/nikke-team-builder.html` - Shows v0.1.0 (should be v0.1.
|
|
201
|
-
7. `/examples/showcase-complete.html` footer - Shows v0.1.0 (should be v0.1.
|
|
202
|
-
8. `/examples/index.html` - Shows v0.1.2 (should be v0.1.
|
|
203
|
-
9. `/docs/platforms/NPM_PACKAGE.md` - Shows v0.1.2 (should be v0.1.
|
|
204
|
-
10. `/docs/governance/VERSION_MANAGEMENT.md` - Shows v0.1.2 (should be v0.1.
|
|
205
|
-
|
|
206
|
-
**Action Required**: Update all example footers and documentation to v0.1.
|
|
195
|
+
1. `/examples/showcase.html` - Shows v0.1.0 (should be v0.1.4)
|
|
196
|
+
2. `/examples/form.html` - Shows v0.1.0 (should be v0.1.4)
|
|
197
|
+
3. `/examples/layout.html` - Shows v0.1.0 (should be v0.1.4)
|
|
198
|
+
4. `/examples/card.html` - Shows v0.1.0 (should be v0.1.4)
|
|
199
|
+
5. `/examples/button.html` - Shows v0.1.0 (should be v0.1.4)
|
|
200
|
+
6. `/examples/nikke-team-builder.html` - Shows v0.1.0 (should be v0.1.4)
|
|
201
|
+
7. `/examples/showcase-complete.html` footer - Shows v0.1.0 (should be v0.1.4)
|
|
202
|
+
8. `/examples/index.html` - Shows v0.1.2 (should be v0.1.4)
|
|
203
|
+
9. `/docs/platforms/NPM_PACKAGE.md` - Shows v0.1.2 (should be v0.1.4)
|
|
204
|
+
10. `/docs/governance/VERSION_MANAGEMENT.md` - Shows v0.1.2 (should be v0.1.4)
|
|
205
|
+
|
|
206
|
+
**Action Required**: Update all example footers and documentation to v0.1.4
|
|
207
207
|
|
|
208
208
|
---
|
|
209
209
|
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
```json
|
|
32
32
|
{
|
|
33
33
|
"name": "@whykusanagi/corrupted-theme",
|
|
34
|
-
"version": "0.1.
|
|
34
|
+
"version": "0.1.4",
|
|
35
35
|
"description": "Premium corrupted AI aesthetic with glassmorphism and translation-failure linguistics",
|
|
36
36
|
"author": "Kusanagi <you@example.com>",
|
|
37
37
|
"license": "MIT",
|
|
@@ -80,7 +80,7 @@ pnpm add @whykusanagi/corrupted-theme
|
|
|
80
80
|
|
|
81
81
|
```html
|
|
82
82
|
<!-- Full theme (8.2KB gzipped) -->
|
|
83
|
-
<link rel="stylesheet" href="https://unpkg.com/@whykusanagi/corrupted-theme@0.1.
|
|
83
|
+
<link rel="stylesheet" href="https://unpkg.com/@whykusanagi/corrupted-theme@0.1.4/dist/theme.css">
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
### Local Development
|
|
@@ -664,7 +664,7 @@ The package follows [Semantic Versioning 2.0.0](https://semver.org/):
|
|
|
664
664
|
```
|
|
665
665
|
MAJOR.MINOR.PATCH
|
|
666
666
|
|
|
667
|
-
Example: 0.1.
|
|
667
|
+
Example: 0.1.4
|
|
668
668
|
│ │ └─ Patch: Bug fixes (backward compatible)
|
|
669
669
|
│ └─── Minor: New features (backward compatible)
|
|
670
670
|
└───── Major: Breaking changes
|
|
@@ -674,7 +674,7 @@ Example: 0.1.2
|
|
|
674
674
|
|
|
675
675
|
| Version | Date | Changes | Migration |
|
|
676
676
|
|---------|------|---------|-----------|
|
|
677
|
-
| **0.1.
|
|
677
|
+
| **0.1.4** | 2025-12-10 | Current stable release | N/A |
|
|
678
678
|
| 0.1.1 | 2025-11-15 | Added interactive states | None required |
|
|
679
679
|
| 0.1.0 | 2025-10-01 | Initial public release | N/A |
|
|
680
680
|
|
|
@@ -691,7 +691,7 @@ npm update @whykusanagi/corrupted-theme
|
|
|
691
691
|
npm install @whykusanagi/corrupted-theme@^0.2.0
|
|
692
692
|
|
|
693
693
|
# Update to specific version
|
|
694
|
-
npm install @whykusanagi/corrupted-theme@0.1.
|
|
694
|
+
npm install @whykusanagi/corrupted-theme@0.1.4
|
|
695
695
|
|
|
696
696
|
# Update to latest (including major - may have breaking changes)
|
|
697
697
|
npm install @whykusanagi/corrupted-theme@latest
|
|
@@ -849,6 +849,6 @@ import '@whykusanagi/corrupted-theme/src/css/components.css';
|
|
|
849
849
|
|
|
850
850
|
**Last Updated**: 2025-12-13
|
|
851
851
|
**Version**: 1.0.0
|
|
852
|
-
**Package Version**: 0.1.
|
|
852
|
+
**Package Version**: 0.1.4
|
|
853
853
|
**Maintainer**: Celeste Brand System
|
|
854
854
|
**Status**: ✅ Production Ready
|
package/examples/button.html
CHANGED
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
</section>
|
|
439
439
|
|
|
440
440
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
441
|
-
<p>Button Component Documentation • Corrupted Theme v0.1.
|
|
441
|
+
<p>Button Component Documentation • Corrupted Theme v0.1.4</p>
|
|
442
442
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
443
443
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
444
444
|
</p>
|
package/examples/card.html
CHANGED
|
@@ -681,7 +681,7 @@
|
|
|
681
681
|
</section>
|
|
682
682
|
|
|
683
683
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
684
|
-
<p>Card Components Documentation • Corrupted Theme v0.1.
|
|
684
|
+
<p>Card Components Documentation • Corrupted Theme v0.1.4</p>
|
|
685
685
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
686
686
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
687
687
|
</p>
|
package/examples/form.html
CHANGED
|
@@ -550,7 +550,7 @@
|
|
|
550
550
|
</section>
|
|
551
551
|
|
|
552
552
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
553
|
-
<p>Form Components Documentation • Corrupted Theme v0.1.
|
|
553
|
+
<p>Form Components Documentation • Corrupted Theme v0.1.4</p>
|
|
554
554
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
555
555
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
556
556
|
</p>
|
package/examples/index.html
CHANGED
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
<div class="hero-content">
|
|
474
474
|
<div class="hero-badge">
|
|
475
475
|
<i class="fas fa-sparkles"></i>
|
|
476
|
-
<span>v0.1.
|
|
476
|
+
<span>v0.1.4 — Production Ready</span>
|
|
477
477
|
</div>
|
|
478
478
|
<h1>Corrupted Theme</h1>
|
|
479
479
|
<p class="hero-description">
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
<a href="https://www.npmjs.com/package/@whykusanagi/corrupted-theme" target="_blank"><i class="fab fa-npm"></i> npm</a>
|
|
723
723
|
</div>
|
|
724
724
|
<p class="footer-meta">
|
|
725
|
-
Corrupted Theme v0.1.
|
|
725
|
+
Corrupted Theme v0.1.4 • Built with <i class="fas fa-heart" style="color: var(--accent);"></i> by
|
|
726
726
|
<a href="https://whykusanagi.xyz" target="_blank">@whykusanagi</a>
|
|
727
727
|
</p>
|
|
728
728
|
</div>
|
package/examples/layout.html
CHANGED
|
@@ -511,7 +511,7 @@
|
|
|
511
511
|
</section>
|
|
512
512
|
|
|
513
513
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
514
|
-
<p>Layout Patterns Documentation • Corrupted Theme v0.1.
|
|
514
|
+
<p>Layout Patterns Documentation • Corrupted Theme v0.1.4</p>
|
|
515
515
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
516
516
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
517
517
|
</p>
|
|
@@ -563,7 +563,7 @@
|
|
|
563
563
|
</section>
|
|
564
564
|
|
|
565
565
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
566
|
-
<p>Nikke Team Builder Example • Corrupted Theme v0.1.
|
|
566
|
+
<p>Nikke Team Builder Example • Corrupted Theme v0.1.4</p>
|
|
567
567
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
568
568
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a> •
|
|
569
569
|
<a href="../docs/COMPONENTS_REFERENCE.md#nikke-components" style="color: var(--accent); text-decoration: none;">Documentation</a>
|
|
@@ -1130,9 +1130,9 @@ const theme = {
|
|
|
1130
1130
|
</div>
|
|
1131
1131
|
</section>
|
|
1132
1132
|
|
|
1133
|
-
<!-- Character-Level Corruption (NEW in v0.1.
|
|
1133
|
+
<!-- Character-Level Corruption (NEW in v0.1.4) -->
|
|
1134
1134
|
<section class="showcase-section" id="character-corruption">
|
|
1135
|
-
<h2><i class="fas fa-language"></i> Character-Level Corruption <span class="badge success" style="margin-left: var(--spacing-sm);">NEW v0.1.
|
|
1135
|
+
<h2><i class="fas fa-language"></i> Character-Level Corruption <span class="badge success" style="margin-left: var(--spacing-sm);">NEW v0.1.4</span></h2>
|
|
1136
1136
|
<p style="color: var(--text-secondary); margin-bottom: var(--spacing-lg);">
|
|
1137
1137
|
<strong>CLI Brand Parity:</strong> Matches Celeste CLI's translation-failure aesthetic. Japanese characters are mixed <strong>INTO</strong> English words at the character level (not word replacement).
|
|
1138
1138
|
</p>
|
|
@@ -1312,9 +1312,9 @@ const theme = {
|
|
|
1312
1312
|
</div>
|
|
1313
1313
|
</section>
|
|
1314
1314
|
|
|
1315
|
-
<!-- New Bootstrap Components (v0.1.
|
|
1315
|
+
<!-- New Bootstrap Components (v0.1.4) -->
|
|
1316
1316
|
<section class="showcase-section" id="new-components">
|
|
1317
|
-
<h2><i class="fas fa-plus-circle"></i> New Bootstrap Components <span class="badge success" style="margin-left: var(--spacing-sm);">NEW v0.1.
|
|
1317
|
+
<h2><i class="fas fa-plus-circle"></i> New Bootstrap Components <span class="badge success" style="margin-left: var(--spacing-sm);">NEW v0.1.4</span></h2>
|
|
1318
1318
|
<p style="color: var(--text-secondary); margin-bottom: var(--spacing-lg);">
|
|
1319
1319
|
<strong>1:1 Bootstrap Parity:</strong> 25+ new components added for complete coverage. Build sites without writing custom CSS!
|
|
1320
1320
|
</p>
|
|
@@ -1694,7 +1694,7 @@ const theme = {
|
|
|
1694
1694
|
|
|
1695
1695
|
<!-- Footer -->
|
|
1696
1696
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
1697
|
-
<p><strong>Corrupted Theme</strong> v0.1.
|
|
1697
|
+
<p><strong>Corrupted Theme</strong> v0.1.4 • Built with <i class="fas fa-heart" style="color: var(--accent);"></i> by whykusanagi</p>
|
|
1698
1698
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
1699
1699
|
<a href="../README.md" class="link">Documentation</a> •
|
|
1700
1700
|
<a href="../docs/COMPONENTS_REFERENCE.md#customization" class="link">Customization</a> •
|
|
@@ -1832,7 +1832,7 @@ const theme = {
|
|
|
1832
1832
|
document.addEventListener('DOMContentLoaded', initGlitchKanji);
|
|
1833
1833
|
</script>
|
|
1834
1834
|
|
|
1835
|
-
<!-- NEW v0.1.
|
|
1835
|
+
<!-- NEW v0.1.4: Character Corruption & Components -->
|
|
1836
1836
|
<script type="module">
|
|
1837
1837
|
// Import character corruption module
|
|
1838
1838
|
import { corruptTextJapanese, INTENSITY, initAutoCorruption } from '../src/lib/character-corruption.js';
|
|
@@ -1919,7 +1919,7 @@ const theme = {
|
|
|
1919
1919
|
|
|
1920
1920
|
// Auto-show welcome message on page load
|
|
1921
1921
|
setTimeout(() => {
|
|
1922
|
-
toast.success('Welcome to Corrupted Theme v0.1.
|
|
1922
|
+
toast.success('Welcome to Corrupted Theme v0.1.4!', 'Welcome', 5000);
|
|
1923
1923
|
}, 1000);
|
|
1924
1924
|
</script>
|
|
1925
1925
|
</body>
|
package/examples/showcase.html
CHANGED
|
@@ -462,7 +462,7 @@ const theme = {
|
|
|
462
462
|
|
|
463
463
|
<!-- Footer -->
|
|
464
464
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
465
|
-
<p><strong>Corrupted Theme</strong> v0.1.
|
|
465
|
+
<p><strong>Corrupted Theme</strong> v0.1.4 • Built with <i class="fas fa-heart" style="color: var(--accent);"></i> by whykusanagi</p>
|
|
466
466
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
467
467
|
<a href="../README.md" class="link">Documentation</a> •
|
|
468
468
|
<a href="../docs/COMPONENTS_REFERENCE.md#customization" class="link">Customization</a> •
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whykusanagi/corrupted-theme",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A dark, glassmorphic design system with pink/purple accents. Perfect for creating modern, visually striking web applications.",
|
|
6
6
|
"main": "src/css/theme.css",
|
|
@@ -28,7 +28,18 @@
|
|
|
28
28
|
"files": [
|
|
29
29
|
"src",
|
|
30
30
|
"scripts",
|
|
31
|
-
"docs",
|
|
31
|
+
"docs/brand",
|
|
32
|
+
"docs/components",
|
|
33
|
+
"docs/governance",
|
|
34
|
+
"docs/standards",
|
|
35
|
+
"docs/platforms/NPM_PACKAGE.md",
|
|
36
|
+
"docs/platforms/WEB_IMPLEMENTATION.md",
|
|
37
|
+
"docs/platforms/COMPONENT_MAPPING.md",
|
|
38
|
+
"docs/COMPONENTS_REFERENCE.md",
|
|
39
|
+
"docs/CORRUPTION_PHRASES.md",
|
|
40
|
+
"docs/CHARACTER_LEVEL_CORRUPTION.md",
|
|
41
|
+
"docs/STYLE_GUIDE.md",
|
|
42
|
+
"docs/ROADMAP.md",
|
|
32
43
|
"examples",
|
|
33
44
|
"Dockerfile",
|
|
34
45
|
"docker-entrypoint.sh",
|
package/docs/CAPABILITIES.md
DELETED
|
@@ -1,209 +0,0 @@
|
|
|
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
|