jostlebot Claude Opus 4.5 commited on
Commit
d0a6e1f
Β·
1 Parent(s): 6f7d981

Reorder tool buttons

Browse files

New 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>

Files changed (1) hide show
  1. 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('nvc')">NVC</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('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
- nvc: { name: 'Guided NVC', icon: 'πŸ“', api: 'guided_nvc' },
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
- soma: { name: 'Somatic Check-in', icon: '🫁', api: 'somatic_checkin' },
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