Spaces:
Running
Running
Reorder tool buttons
Browse filesNew order: SEND, TEND, SOMA, FEEL, NEED, PRACTICE NVC, REPAIR, WISDOM, LOVE
Renamed NVC button to PRACTICE NVC
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- static/index.html +8 -8
static/index.html
CHANGED
|
@@ -914,15 +914,15 @@
|
|
| 914 |
|
| 915 |
<!-- Tool Buttons Row -->
|
| 916 |
<div class="tool-buttons">
|
| 917 |
-
<button class="tool-btn tend" onclick="useTool('tend')">TEND</button>
|
| 918 |
<button class="tool-btn send" onclick="sendMessage()">SEND</button>
|
| 919 |
-
<button class="tool-btn" onclick="useTool('
|
|
|
|
| 920 |
<button class="tool-btn" onclick="useTool('feel')">FEEL</button>
|
| 921 |
<button class="tool-btn" onclick="useTool('need')">NEED</button>
|
|
|
|
| 922 |
<button class="tool-btn" onclick="useTool('repair')">REPAIR</button>
|
| 923 |
-
<button class="tool-btn" onclick="useTool('soma')">SOMA</button>
|
| 924 |
-
<button class="tool-btn love" onclick="useTool('love')">LOVE</button>
|
| 925 |
<button class="tool-btn wisdom" onclick="useTool('wisdom')">WISDOM</button>
|
|
|
|
| 926 |
</div>
|
| 927 |
|
| 928 |
<!-- Message Input -->
|
|
@@ -967,13 +967,13 @@
|
|
| 967 |
|
| 968 |
const TOOL_MAP = {
|
| 969 |
tend: { name: 'TEND Transform', icon: 'β¨', api: 'tend' },
|
| 970 |
-
|
| 971 |
feel: { name: 'Feelings Check', icon: 'π', api: null, interactive: true },
|
| 972 |
need: { name: 'Needs Check', icon: 'π―', api: null, interactive: true },
|
|
|
|
| 973 |
repair: { name: 'Repair Support', icon: 'π', api: 'repair_support' },
|
| 974 |
-
|
| 975 |
-
love: { name: 'Slow Down', icon: 'π', api: null }
|
| 976 |
-
wisdom: { name: 'Sacred Wisdom', icon: 'ποΈ', api: 'wisdom', interactive: true }
|
| 977 |
};
|
| 978 |
|
| 979 |
// Wisdom traditions
|
|
|
|
| 914 |
|
| 915 |
<!-- Tool Buttons Row -->
|
| 916 |
<div class="tool-buttons">
|
|
|
|
| 917 |
<button class="tool-btn send" onclick="sendMessage()">SEND</button>
|
| 918 |
+
<button class="tool-btn tend" onclick="useTool('tend')">TEND</button>
|
| 919 |
+
<button class="tool-btn" onclick="useTool('soma')">SOMA</button>
|
| 920 |
<button class="tool-btn" onclick="useTool('feel')">FEEL</button>
|
| 921 |
<button class="tool-btn" onclick="useTool('need')">NEED</button>
|
| 922 |
+
<button class="tool-btn" onclick="useTool('nvc')">PRACTICE NVC</button>
|
| 923 |
<button class="tool-btn" onclick="useTool('repair')">REPAIR</button>
|
|
|
|
|
|
|
| 924 |
<button class="tool-btn wisdom" onclick="useTool('wisdom')">WISDOM</button>
|
| 925 |
+
<button class="tool-btn love" onclick="useTool('love')">LOVE</button>
|
| 926 |
</div>
|
| 927 |
|
| 928 |
<!-- Message Input -->
|
|
|
|
| 967 |
|
| 968 |
const TOOL_MAP = {
|
| 969 |
tend: { name: 'TEND Transform', icon: 'β¨', api: 'tend' },
|
| 970 |
+
soma: { name: 'Somatic Check-in', icon: 'π«', api: 'somatic_checkin' },
|
| 971 |
feel: { name: 'Feelings Check', icon: 'π', api: null, interactive: true },
|
| 972 |
need: { name: 'Needs Check', icon: 'π―', api: null, interactive: true },
|
| 973 |
+
nvc: { name: 'Practice NVC', icon: 'π', api: 'guided_nvc' },
|
| 974 |
repair: { name: 'Repair Support', icon: 'π', api: 'repair_support' },
|
| 975 |
+
wisdom: { name: 'Sacred Wisdom', icon: 'ποΈ', api: 'wisdom', interactive: true },
|
| 976 |
+
love: { name: 'Slow Down', icon: 'π', api: null }
|
|
|
|
| 977 |
};
|
| 978 |
|
| 979 |
// Wisdom traditions
|