ameno-cyberdyne 1.0.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 ameno-
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,144 @@
1
+ # 🔮 Ameno Cyberdyne
2
+
3
+ A high-contrast cyberpunk theme for [Pi](https://github.com/badlogic/pi) — the AI coding agent harness.
4
+
5
+ Inspired by synthwave aesthetics and neon-drenched code editors, this theme transforms your terminal into a futuristic coding environment with electric cyan, hot pink, acid green, and golden amber.
6
+
7
+ ![Theme Preview](https://raw.githubusercontent.com/ameno-/ameno-cyberdyne/main/preview.png)
8
+
9
+ ## ✨ Features
10
+
11
+ - **High Contrast**: Vibrant neon colors pop against deep void black
12
+ - **Semantic Coloring**: Each syntax element has distinct personality
13
+ - **Thinking Level Indicators**: Visual hierarchy from cyan (minimal) → magenta (extreme)
14
+ - **Tool State Feedback**: Success glows green, errors pulse magenta
15
+ - **Hot Reload Compatible**: Edit the theme and see changes instantly
16
+
17
+ ## 🎨 Color Palette
18
+
19
+ | Color | Hex | Usage |
20
+ |-------|-----|-------|
21
+ | **Electric Cyan** | `#00f5ff` | Keywords, accent, primary actions |
22
+ | **Hot Pink** | `#ff2a6d` | Variables, links |
23
+ | **Acid Green** | `#39ff14` | Strings, success states |
24
+ | **Golden Amber** | `#ffb800` | Functions, warnings |
25
+ | **Violet** | `#bd00ff` | Types, numbers |
26
+ | **Magenta** | `#ff0080` | Errors, extreme thinking |
27
+ | **Void Black** | `#0a0a0f` | Background base |
28
+
29
+ ### 🔄 Variations
30
+
31
+ Having trouble with the bright cyan on certain backgrounds? Try these alternatives:
32
+
33
+ | Variant | Primary Color | Best For | File |
34
+ |---------|--------------|----------|------|
35
+ | **Teal** (`#00d4aa`) | Deep teal | Reduced eye strain, all backgrounds | `ameno-cyberdyne-teal.json` |
36
+ | **Blue** (`#0080ff`) | Electric blue | Classic terminal look | `ameno-cyberdyne-blue.json` |
37
+ | **Soft** (`#4dd0e1`) | Soft cyan | Modern, subtle elegance | `ameno-cyberdyne-soft.json` |
38
+
39
+ See [COLOR_VARIATIONS.md](./COLOR_VARIATIONS.md) for detailed comparison and background compatibility matrix.
40
+
41
+ ## 📦 Installation
42
+
43
+ ### Option 1: Global Installation (Recommended)
44
+
45
+ Install once, use everywhere:
46
+
47
+ ```bash
48
+ # Clone the repository
49
+ git clone https://github.com/ameno-/ameno-cyberdyne.git
50
+
51
+ # Copy to Pi's global themes directory
52
+ mkdir -p ~/.pi/agent/themes
53
+ cp ameno-cyberdyne/themes/ameno-cyberdyne.json ~/.pi/agent/themes/
54
+ ```
55
+
56
+ Or use npm:
57
+
58
+ ```bash
59
+ npm install -g ameno-cyberdyne
60
+ # The theme will be automatically discovered via pi.themes
61
+ ```
62
+
63
+ ### Option 2: Project-Local Installation
64
+
65
+ Add to a specific project:
66
+
67
+ ```bash
68
+ # Copy to your project's .pi directory
69
+ mkdir -p .pi/themes
70
+ cp ameno-cyberdyne/themes/ameno-cyberdyne.json .pi/themes/
71
+ ```
72
+
73
+ ### Option 3: Manual Download
74
+
75
+ ```bash
76
+ # Direct download
77
+ curl -o ~/.pi/agent/themes/ameno-cyberdyne.json \
78
+ https://raw.githubusercontent.com/ameno-/ameno-cyberdyne/main/themes/ameno-cyberdyne.json
79
+ ```
80
+
81
+ ## 🚀 Activation
82
+
83
+ 1. In Pi, type `/settings`
84
+ 2. Change the **Theme** dropdown to `ameno-cyberdyne`
85
+ 3. The theme applies immediately
86
+
87
+ Or edit your Pi settings directly:
88
+
89
+ ```json
90
+ {
91
+ "theme": "ameno-cyberdyne"
92
+ }
93
+ ```
94
+
95
+ ## 🔧 Customization
96
+
97
+ The theme supports hot reloading. Edit `~/.pi/agent/themes/ameno-cyberdyne.json` while Pi is running to see changes instantly.
98
+
99
+ ### Customizing Colors
100
+
101
+ The theme uses CSS variables in the `vars` section:
102
+
103
+ ```json
104
+ {
105
+ "vars": {
106
+ "cyan": "#00f5ff",
107
+ "pink": "#ff2a6d",
108
+ "acid": "#39ff14"
109
+ }
110
+ }
111
+ ```
112
+
113
+ Reference these variables in the `colors` section:
114
+
115
+ ```json
116
+ {
117
+ "colors": {
118
+ "accent": "cyan",
119
+ "syntaxKeyword": "pink"
120
+ }
121
+ }
122
+ ```
123
+
124
+ ## 📋 Requirements
125
+
126
+ - [Pi](https://github.com/badlogic/pi) v0.1.0 or higher
127
+ - A terminal with truecolor support (iTerm2, Kitty, WezTerm, Windows Terminal, VS Code)
128
+
129
+ ## 📝 License
130
+
131
+ MIT © [ameno-](https://github.com/ameno-)
132
+
133
+ ## 🙏 Credits
134
+
135
+ - Color palette inspired by synthwave themes and cyberpunk aesthetics
136
+ - Built for the [Pi coding agent](https://github.com/badlogic/pi) by [Mario Zechner](https://github.com/badlogic)
137
+
138
+ ---
139
+
140
+ <div align="center">
141
+
142
+ Made with 💜 and neon lights
143
+
144
+ </div>
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "ameno-cyberdyne",
3
+ "version": "1.0.0",
4
+ "description": "A high-contrast cyberpunk Pi theme inspired by synthwave aesthetics - electric cyan, hot pink, acid green, and golden amber",
5
+ "main": "themes/ameno-cyberdyne.json",
6
+ "exports": {
7
+ ".": "./themes/ameno-cyberdyne.json",
8
+ "./teal": "./themes/ameno-cyberdyne-teal.json",
9
+ "./blue": "./themes/ameno-cyberdyne-blue.json",
10
+ "./soft": "./themes/ameno-cyberdyne-soft.json"
11
+ },
12
+ "keywords": [
13
+ "pi",
14
+ "pi-theme",
15
+ "cyberpunk",
16
+ "synthwave",
17
+ "neon",
18
+ "dark-theme",
19
+ "terminal-theme",
20
+ "cli"
21
+ ],
22
+ "author": "ameno-",
23
+ "license": "MIT",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/ameno-/ameno-cyberdyne.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/ameno-/ameno-cyberdyne/issues"
30
+ },
31
+ "homepage": "https://github.com/ameno-/ameno-cyberdyne#readme",
32
+ "pi": {
33
+ "themes": [
34
+ "themes/ameno-cyberdyne.json",
35
+ "themes/ameno-cyberdyne-teal.json",
36
+ "themes/ameno-cyberdyne-blue.json",
37
+ "themes/ameno-cyberdyne-soft.json"
38
+ ]
39
+ },
40
+ "files": [
41
+ "themes/",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "scripts": {
46
+ "install:global": "mkdir -p ~/.pi/agent/themes && cp themes/*.json ~/.pi/agent/themes/",
47
+ "install:local": "mkdir -p .pi/themes && cp themes/*.json .pi/themes/"
48
+ }
49
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "ameno-cyberdyne-blue",
4
+ "vars": {
5
+ "void": "#0a0a0f",
6
+ "blue": "#0080ff",
7
+ "magenta": "#ff0080",
8
+ "acid": "#39ff14",
9
+ "amber": "#ffb800",
10
+ "purple": "#bd00ff",
11
+ "pink": "#ff2a6d",
12
+ "cyan": "#00d4e8",
13
+ "slate": "#1a1a2e"
14
+ },
15
+ "colors": {
16
+ "accent": "blue",
17
+ "border": "blue",
18
+ "borderAccent": "pink",
19
+ "borderMuted": 240,
20
+ "success": "acid",
21
+ "error": "magenta",
22
+ "warning": "amber",
23
+ "muted": 242,
24
+ "dim": 240,
25
+ "text": "",
26
+ "thinkingText": "blue",
27
+ "selectedBg": "#1a1a2e",
28
+ "userMessageBg": "#0f0f17",
29
+ "userMessageText": "",
30
+ "customMessageBg": "#0f0f17",
31
+ "customMessageText": "",
32
+ "customMessageLabel": "blue",
33
+ "toolPendingBg": "#0a0a12",
34
+ "toolSuccessBg": "#0a1510",
35
+ "toolErrorBg": "#1f0a12",
36
+ "toolTitle": "amber",
37
+ "toolOutput": "",
38
+ "mdHeading": "amber",
39
+ "mdLink": "pink",
40
+ "mdLinkUrl": "cyan",
41
+ "mdCode": "cyan",
42
+ "mdCodeBlock": "",
43
+ "mdCodeBlockBorder": 240,
44
+ "mdQuote": 242,
45
+ "mdQuoteBorder": 242,
46
+ "mdHr": 240,
47
+ "mdListBullet": "blue",
48
+ "toolDiffAdded": "#2d5a3d",
49
+ "toolDiffRemoved": "#5a2d2d",
50
+ "toolDiffContext": 242,
51
+ "syntaxComment": 242,
52
+ "syntaxKeyword": "blue",
53
+ "syntaxFunction": "amber",
54
+ "syntaxVariable": "pink",
55
+ "syntaxString": "acid",
56
+ "syntaxNumber": "purple",
57
+ "syntaxType": "purple",
58
+ "syntaxOperator": "blue",
59
+ "syntaxPunctuation": "cyan",
60
+ "thinkingOff": 240,
61
+ "thinkingMinimal": "cyan",
62
+ "thinkingLow": "blue",
63
+ "thinkingMedium": "amber",
64
+ "thinkingHigh": "purple",
65
+ "thinkingXhigh": "magenta",
66
+ "bashMode": "amber"
67
+ }
68
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "ameno-cyberdyne-soft",
4
+ "vars": {
5
+ "void": "#0a0a0f",
6
+ "softcyan": "#4dd0e1",
7
+ "magenta": "#ff0080",
8
+ "acid": "#39ff14",
9
+ "amber": "#ffb800",
10
+ "purple": "#bd00ff",
11
+ "pink": "#ff2a6d",
12
+ "teal": "#26a69a",
13
+ "slate": "#1a1a2e"
14
+ },
15
+ "colors": {
16
+ "accent": "softcyan",
17
+ "border": "softcyan",
18
+ "borderAccent": "pink",
19
+ "borderMuted": 240,
20
+ "success": "acid",
21
+ "error": "magenta",
22
+ "warning": "amber",
23
+ "muted": 242,
24
+ "dim": 240,
25
+ "text": "",
26
+ "thinkingText": "softcyan",
27
+ "selectedBg": "#1a1a2e",
28
+ "userMessageBg": "#0f0f17",
29
+ "userMessageText": "",
30
+ "customMessageBg": "#0f0f17",
31
+ "customMessageText": "",
32
+ "customMessageLabel": "softcyan",
33
+ "toolPendingBg": "#0a0a12",
34
+ "toolSuccessBg": "#0a1510",
35
+ "toolErrorBg": "#1f0a12",
36
+ "toolTitle": "amber",
37
+ "toolOutput": "",
38
+ "mdHeading": "amber",
39
+ "mdLink": "pink",
40
+ "mdLinkUrl": "softcyan",
41
+ "mdCode": "teal",
42
+ "mdCodeBlock": "",
43
+ "mdCodeBlockBorder": 240,
44
+ "mdQuote": 242,
45
+ "mdQuoteBorder": 242,
46
+ "mdHr": 240,
47
+ "mdListBullet": "softcyan",
48
+ "toolDiffAdded": "#2d5a3d",
49
+ "toolDiffRemoved": "#5a2d2d",
50
+ "toolDiffContext": 242,
51
+ "syntaxComment": 242,
52
+ "syntaxKeyword": "softcyan",
53
+ "syntaxFunction": "amber",
54
+ "syntaxVariable": "pink",
55
+ "syntaxString": "acid",
56
+ "syntaxNumber": "purple",
57
+ "syntaxType": "purple",
58
+ "syntaxOperator": "softcyan",
59
+ "syntaxPunctuation": "teal",
60
+ "thinkingOff": 240,
61
+ "thinkingMinimal": "softcyan",
62
+ "thinkingLow": "teal",
63
+ "thinkingMedium": "amber",
64
+ "thinkingHigh": "purple",
65
+ "thinkingXhigh": "magenta",
66
+ "bashMode": "amber"
67
+ }
68
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "ameno-cyberdyne-teal",
4
+ "vars": {
5
+ "void": "#0a0a0f",
6
+ "teal": "#00d4aa",
7
+ "magenta": "#ff0080",
8
+ "acid": "#39ff14",
9
+ "amber": "#ffb800",
10
+ "purple": "#bd00ff",
11
+ "pink": "#ff2a6d",
12
+ "cyber": "#00b894",
13
+ "slate": "#1a1a2e"
14
+ },
15
+ "colors": {
16
+ "accent": "teal",
17
+ "border": "teal",
18
+ "borderAccent": "pink",
19
+ "borderMuted": 240,
20
+ "success": "acid",
21
+ "error": "magenta",
22
+ "warning": "amber",
23
+ "muted": 242,
24
+ "dim": 240,
25
+ "text": "",
26
+ "thinkingText": "teal",
27
+ "selectedBg": "#1a1a2e",
28
+ "userMessageBg": "#0f0f17",
29
+ "userMessageText": "",
30
+ "customMessageBg": "#0f0f17",
31
+ "customMessageText": "",
32
+ "customMessageLabel": "teal",
33
+ "toolPendingBg": "#0a0a12",
34
+ "toolSuccessBg": "#0a1510",
35
+ "toolErrorBg": "#1f0a12",
36
+ "toolTitle": "amber",
37
+ "toolOutput": "",
38
+ "mdHeading": "amber",
39
+ "mdLink": "pink",
40
+ "mdLinkUrl": "teal",
41
+ "mdCode": "cyber",
42
+ "mdCodeBlock": "",
43
+ "mdCodeBlockBorder": 240,
44
+ "mdQuote": 242,
45
+ "mdQuoteBorder": 242,
46
+ "mdHr": 240,
47
+ "mdListBullet": "teal",
48
+ "toolDiffAdded": "#2d5a3d",
49
+ "toolDiffRemoved": "#5a2d2d",
50
+ "toolDiffContext": 242,
51
+ "syntaxComment": 242,
52
+ "syntaxKeyword": "teal",
53
+ "syntaxFunction": "amber",
54
+ "syntaxVariable": "pink",
55
+ "syntaxString": "acid",
56
+ "syntaxNumber": "purple",
57
+ "syntaxType": "purple",
58
+ "syntaxOperator": "teal",
59
+ "syntaxPunctuation": "cyber",
60
+ "thinkingOff": 240,
61
+ "thinkingMinimal": "teal",
62
+ "thinkingLow": "cyber",
63
+ "thinkingMedium": "amber",
64
+ "thinkingHigh": "purple",
65
+ "thinkingXhigh": "magenta",
66
+ "bashMode": "amber"
67
+ }
68
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "ameno-cyberdyne",
4
+ "vars": {
5
+ "void": "#0a0a0f",
6
+ "cyan": "#00f5ff",
7
+ "magenta": "#ff0080",
8
+ "acid": "#39ff14",
9
+ "amber": "#ffb800",
10
+ "purple": "#bd00ff",
11
+ "pink": "#ff2a6d",
12
+ "cyber": "#05d9e8",
13
+ "slate": "#1a1a2e"
14
+ },
15
+ "colors": {
16
+ "accent": "cyan",
17
+ "border": "cyan",
18
+ "borderAccent": "pink",
19
+ "borderMuted": 240,
20
+ "success": "acid",
21
+ "error": "magenta",
22
+ "warning": "amber",
23
+ "muted": 242,
24
+ "dim": 240,
25
+ "text": "",
26
+ "thinkingText": "cyan",
27
+ "selectedBg": "#1a1a2e",
28
+ "userMessageBg": "#0f0f17",
29
+ "userMessageText": "",
30
+ "customMessageBg": "#0f0f17",
31
+ "customMessageText": "",
32
+ "customMessageLabel": "cyan",
33
+ "toolPendingBg": "#0a0a12",
34
+ "toolSuccessBg": "#0a1510",
35
+ "toolErrorBg": "#1f0a12",
36
+ "toolTitle": "amber",
37
+ "toolOutput": "",
38
+ "mdHeading": "amber",
39
+ "mdLink": "pink",
40
+ "mdLinkUrl": "cyan",
41
+ "mdCode": "cyber",
42
+ "mdCodeBlock": "",
43
+ "mdCodeBlockBorder": 240,
44
+ "mdQuote": 242,
45
+ "mdQuoteBorder": 242,
46
+ "mdHr": 240,
47
+ "mdListBullet": "cyan",
48
+ "toolDiffAdded": "#2d5a3d",
49
+ "toolDiffRemoved": "#5a2d2d",
50
+ "toolDiffContext": 242,
51
+ "syntaxComment": 242,
52
+ "syntaxKeyword": "cyan",
53
+ "syntaxFunction": "amber",
54
+ "syntaxVariable": "pink",
55
+ "syntaxString": "acid",
56
+ "syntaxNumber": "purple",
57
+ "syntaxType": "purple",
58
+ "syntaxOperator": "cyan",
59
+ "syntaxPunctuation": "cyber",
60
+ "thinkingOff": 240,
61
+ "thinkingMinimal": "cyan",
62
+ "thinkingLow": "cyber",
63
+ "thinkingMedium": "amber",
64
+ "thinkingHigh": "purple",
65
+ "thinkingXhigh": "magenta",
66
+ "bashMode": "amber"
67
+ }
68
+ }