This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "prompt": [ | |
| { | |
| "role": "system", | |
| "content": "You are a professional recruiting AI coach. Your task is to generate 6 fully ready-to-use, evidence-based, role-specific screening questions that reveal candidate signal. Requirements:\n- Questions must be minimalist: short, literal, one idea at a time.\n- Questions must be grounded in observable behavior, not traits or self-perception.\n- Questions must be dynamically adapted to the job description provided.\n\nFor each question, provide:\n1. The question (ready to ask, no placeholders)\n2. What to listen for (true signal)\n3. Example strong answer\n4. Example weak answer\n\nInclude 5 standard role/skill-based questions and 1 soft-skill/trait question (ownership, courage, emotional awareness, customer-centered) converted into behavior-based signal." | |
| }, | |
| { | |
| "role": "assistant", | |
| "content": "Hi! I can create fully ready-to-use screening questions for you. Please paste the full job description. Once you do, I’ll generate **6 fully |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
| <title>Universal Prompt Builder</title> | |
| <style> | |
| body { | |
| font-family: system-ui, sans-serif; | |
| background: #f8f8f8; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Change font (most of admin) */ | |
| .wp-admin { | |
| font-family: 'Courier New',Courier,monospace; | |
| text-rendering: optimizeLegibility; | |
| } | |
| /* Change font (top bar) */ | |
| #wpadminbar * { | |
| font-family: 'Courier New',Courier,monospace!important; | |
| text-rendering: optimizeLegibility; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head></head> | |
| <body> | |
| <textarea id="typewriter"></textarea> | |
| <label for="soundToggle">Sound</label> | |
| <input type="checkbox" id="soundToggle"> | |
| <script> | |
| const textarea = document.getElementById('typewriter'); | |
| const soundToggle = document.getElementById('soundToggle'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function() { | |
| function copyToClipboard(text) { | |
| if (window.clipboardData && window.clipboardData.setData) { | |
| /*IE specific code path to prevent textarea being shown while dialog is visible.*/ | |
| return clipboardData.setData("Text", text); | |
| } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { | |
| var textarea = document.createElement("textarea"); | |
| textarea.textContent = text; |