jostlebot commited on
Commit
75d18fd
Β·
1 Parent(s): 2fe5e9d

Remove LISTEN/Receive Mode tool

Browse files
Files changed (1) hide show
  1. static/index.html +0 -14
static/index.html CHANGED
@@ -812,11 +812,6 @@
812
  <p>Extract underlying needs. What's really being asked for?</p>
813
  </div>
814
 
815
- <div class="tool-desc" onclick="showToolInfo('listen')">
816
- <h4>LISTEN</h4>
817
- <p>Receive mode. Hear their message before reacting.</p>
818
- </div>
819
-
820
  <div class="tool-desc" onclick="showToolInfo('repair')">
821
  <h4>REPAIR</h4>
822
  <p>After ruptures. Help craft genuine reconnection.</p>
@@ -924,7 +919,6 @@
924
  <button class="tool-btn" onclick="useTool('nvc')">NVC</button>
925
  <button class="tool-btn" onclick="useTool('feel')">FEEL</button>
926
  <button class="tool-btn" onclick="useTool('need')">NEED</button>
927
- <button class="tool-btn" onclick="useTool('listen')">LISTEN</button>
928
  <button class="tool-btn" onclick="useTool('repair')">REPAIR</button>
929
  <button class="tool-btn" onclick="useTool('soma')">SOMA</button>
930
  <button class="tool-btn love" onclick="useTool('love')">LOVE</button>
@@ -976,7 +970,6 @@
976
  nvc: { name: 'Guided NVC', icon: 'πŸ“', api: 'guided_nvc' },
977
  feel: { name: 'Feelings Check', icon: 'πŸ’œ', api: null, interactive: true },
978
  need: { name: 'Needs Check', icon: '🎯', api: null, interactive: true },
979
- listen: { name: 'Receive Mode', icon: 'πŸ‘‚', api: 'receive_mode' },
980
  repair: { name: 'Repair Support', icon: 'πŸ™', api: 'repair_support' },
981
  soma: { name: 'Somatic Check-in', icon: '🫁', api: 'somatic_checkin' },
982
  love: { name: 'Slow Down', icon: 'πŸ’—', api: null },
@@ -1300,13 +1293,6 @@
1300
  case 'need':
1301
  inputText = `Identify the NEEDS in this: "${userInput || lastPartnerMessage || 'the current situation'}"`;
1302
  break;
1303
- case 'listen':
1304
- if (!lastPartnerMessage) {
1305
- addToolMsg('tool', 'Start a conversation first to use LISTEN on their message.');
1306
- return;
1307
- }
1308
- inputText = 'Help me receive and understand this message before I react.';
1309
- break;
1310
  case 'repair':
1311
  inputText = userInput || 'Help me craft a genuine repair.';
1312
  break;
 
812
  <p>Extract underlying needs. What's really being asked for?</p>
813
  </div>
814
 
 
 
 
 
 
815
  <div class="tool-desc" onclick="showToolInfo('repair')">
816
  <h4>REPAIR</h4>
817
  <p>After ruptures. Help craft genuine reconnection.</p>
 
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>
 
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 },
 
1293
  case 'need':
1294
  inputText = `Identify the NEEDS in this: "${userInput || lastPartnerMessage || 'the current situation'}"`;
1295
  break;
 
 
 
 
 
 
 
1296
  case 'repair':
1297
  inputText = userInput || 'Help me craft a genuine repair.';
1298
  break;