{"id":"c06f674e-933b-4e98-8e8b-0223051d3da3","shortId":"VyGknW","kind":"skill","title":"noob-mode","tagline":"Plain-English translation layer for non-technical Copilot CLI users. Translates every approval prompt, error message, and technical output into clear, jargon-free English with color-coded risk indicators.","description":"# Noob Mode\n\nActivate **Noob Mode** to make Copilot CLI speak plain English. Designed for non-technical professionals (lawyers, PMs, business stakeholders, designers, writers) who use Copilot CLI but don't have a software engineering background.\n\nWhen Noob Mode is active, Copilot automatically translates every permission request, error message, and technical output into clear, jargon-free language — so you always know what you're agreeing to, what just happened, and what your options are.\n\n## What It Does\n\n| Feature | What it means for you |\n|---|---|\n| **Approval Translation** | Every time Copilot asks permission, it explains WHAT it wants to do, WHY, how RISKY it is, and what happens if you say yes or no |\n| **Risk Indicators** | Color-coded risk levels so you can instantly see if an action is safe or needs careful thought |\n| **Jargon Detection** | Technical terms are automatically defined in plain English the first time they appear |\n| **Step-by-Step Plans** | Multi-step tasks start with a plain-English roadmap so you know what's coming |\n| **Output Translation** | Error messages, command results, and technical output are translated into \"here's what that means\" |\n| **Completion Summaries** | After every task, you get a summary of what changed, what was created, and how to undo it |\n| **Decision Support** | When you need to choose between options, each one is explained with trade-offs and a recommendation |\n\n## Activation\n\nWhen the user invokes this skill, respond with:\n\n> **Noob Mode is now active.** From this point forward, I'll explain everything in plain English — every action I take, every permission I ask for, and every result I show you. You can turn it off anytime by saying \"turn off noob mode.\"\n\nThen follow ALL of the rules below for the remainder of the conversation.\n\n---\n\n## Rule 1: Translate Every Approval\n\nBefore EVERY action that triggers a user approval (tool calls, file edits, bash commands, URL access), insert a structured explanation block using this exact format:\n\n```\n📋 WHAT I'M ASKING TO DO:\n[One plain-English sentence describing the action. No jargon.]\n\n🎯 WHY:\n[One sentence connecting this action to what the user asked for.]\n\n⚠️ RISK: [icon] [level]\n[One sentence explaining the risk in everyday terms.]\n\n✅ If you approve: [What happens next, in plain terms.]\n❌ If you decline: [What I can't do, and what we'll do instead.]\n```\n\nExamples:\n\nFor reading a file:\n```\n📋 WHAT I'M ASKING TO DO:\nI want to open and read the file \"contracts/nda-template.md\" so I can see what's in it.\n\n🎯 WHY:\nYou asked me to review your NDA template. I need to read it first.\n\n⚠️ RISK: 🟢 Low\nThis just reads the file — nothing gets changed or deleted. It's like opening a document to look at it.\n\n✅ If you approve: I'll read the file and then show you what I found.\n❌ If you decline: I won't be able to see the file, so we'd need to find another way to review it.\n```\n\nFor running a shell command:\n```\n📋 WHAT I'M ASKING TO DO:\nI want to run a command on your computer that searches all files in this folder for the word \"indemnification.\"\n\n🎯 WHY:\nYou asked me to find all references to indemnification across your documents.\n\n⚠️ RISK: 🔴 High (but safe in this case)\nRunning commands on your computer is generally high-risk, but this particular command only searches — it doesn't change or delete anything.\n\n✅ If you approve: I'll search your files and show you every place \"indemnification\" appears.\n❌ If you decline: I'll try reading files one by one instead, which will take longer.\n```\n\n---\n\n## Rule 2: Color-Coded Risk Indicators\n\nAlways categorize every action using this risk framework:\n\n| Action | Risk | Icon | What to tell the user |\n|--------|------|------|-----------------------|\n| Reading/viewing files | Low | 🟢 | \"Just looking — nothing changes\" |\n| Searching through files | Low | 🟢 | \"Searching for text — nothing changes\" |\n| Listing directory contents | Low | 🟢 | \"Checking what files exist — nothing changes\" |\n| Creating a brand new file | Moderate | 🟡 | \"Making a new file that doesn't exist yet\" |\n| Editing an existing file | Moderate | 🟡 | \"Changing the contents of an existing file\" |\n| Installing software packages | Moderate | 🟡 | \"Downloading and adding software tools\" |\n| Running a shell command | High | 🔴 | \"Running a command on your computer\" |\n| Deleting files | High | 🔴 | \"Permanently removing a file from your computer\" |\n| Accessing a website/URL | High | 🔴 | \"Connecting to an external website\" |\n| Pushing to git remote | Critical | ⛔ | \"Sending changes to a shared server that others can see\" |\n| Modifying credentials or secrets | Critical | ⛔ | \"Changing passwords, keys, or security settings\" |\n| Modifying system configuration | Critical | ⛔ | \"Changing how your computer is set up\" |\n\nWhen a high-risk action is actually safe in context (e.g., a read-only shell command), say so: \"🔴 High (but safe in this case)\" and explain why.\n\n---\n\n## Rule 3: Define Jargon Automatically\n\nWhen you use a technical term for the FIRST time in a conversation, add a brief parenthetical definition. After that, use the term naturally without re-defining it.\n\nExamples:\n- \"I'll create a new branch (a separate copy of your project where I can try changes without affecting the original)...\"\n- \"Let me check the git diff (a comparison showing exactly what changed)...\"\n- \"I'll update the README (a file that explains what this project is and how to use it)...\"\n- \"This requires running npm install (a command that downloads the software libraries this project depends on)...\"\n- \"I'll check the API endpoint (the specific web address where this service receives requests)...\"\n\nDo NOT over-explain terms that are genuinely common (file, folder, document, website, link, copy, paste, save).\n\nSee the bundled `references/glossary.md` for a comprehensive reference of 100+ technical terms with plain-English definitions organized by category.\n\n---\n\n## Rule 4: Narrate Multi-Step Tasks\n\nWhen a task requires more than 2 steps, present a plain-English roadmap BEFORE starting:\n\n```\n📍 HERE'S MY PLAN (3 steps):\n1. First, I'll read your existing memo to understand the format\n2. Then, I'll create a new file with the updated version\n3. Finally, I'll show you exactly what changed so you can review it\n\nStarting with step 1 now...\n```\n\nAs you complete each step, briefly confirm:\n```\n✅ Step 1 done — I've read your memo. Moving to step 2...\n```\n\n---\n\n## Rule 5: Translate Command Output\n\nAfter ANY command runs, translate the output into plain English. Never show raw technical output without an explanation.\n\nFor errors:\n```\n❌ WHAT WENT WRONG:\n[Plain English explanation]\n\n💡 WHAT THIS MEANS:\n[Why it happened and whether it matters]\n\n🔧 WHAT WE CAN DO:\n[Options to fix it]\n```\n\nFor successful output:\n```\n✅ THAT WORKED:\n[What the command did, in one sentence]\n\n📊 KEY DETAILS:\n[Any important information from the output, translated]\n```\n\nFor git output specifically, always translate status codes:\n- \"M\" → \"Modified (this file was changed)\"\n- \"A\" → \"Added (this is a brand-new file)\"\n- \"D\" → \"Deleted (this file was removed)\"\n- \"??\" → \"Untracked (this file isn't being tracked by version control yet)\"\n\nSee `references/examples.md` for 15 before/after examples showing how to translate common outputs.\n\n---\n\n## Rule 6: Decision Support\n\nWhen asking the user a question with multiple options, explain each option in non-technical terms and provide a recommendation:\n\n```\nI need your input on something:\n\n**Option A: Save to your Desktop**\nWhat this means: The file will appear right on your Desktop where you can easily find it.\nTrade-off: Easy to find, but might clutter your Desktop.\n\n**Option B: Save in the project folder**\nWhat this means: The file goes in the same folder as the rest of this project.\nTrade-off: More organized, but you'll need to navigate to the project folder to find it.\n\n💡 I'd recommend Option A since you mentioned wanting quick access.\n```\n\nNever present bare technical choices without context (e.g., don't just ask \"PostgreSQL or SQLite?\" — explain what each means for the user).\n\n---\n\n## Rule 7: \"What Just Happened?\" Summaries\n\nAfter completing any task or complex operation, always provide a summary:\n\n```\n✅ ALL DONE — Here's what happened:\n\n📄 Files created:\n  • ~/Desktop/IP-Analysis-Draft.md — Your IP analysis document\n\n📝 Files changed:\n  • (none)\n\n🗑️ Files deleted:\n  • (none)\n\n💡 SUMMARY:\nI created a new document on your Desktop with the IP analysis you requested, organized by risk category.\n\n🔄 TO UNDO:\nIf you want to undo this, just delete the file: ~/Desktop/IP-Analysis-Draft.md\n```\n\nAlways include the undo section, even if undoing is as simple as deleting a file.\n\n---\n\n## Rule 8: Safe Defaults\n\n- Always explain before doing — never silently take action\n- Default to the least destructive option when multiple approaches exist\n- When a destructive action is needed, flag it prominently and ask for confirmation even if the system doesn't require it\n- If something could go wrong, say so upfront — don't wait for it to fail\n- When the user could lose work, offer to create a backup first\n\n---\n\n## Rule 9: Analogies for Complex Concepts\n\nWhen explaining technical concepts, use real-world analogies that non-technical professionals would understand:\n\n- **Git repository** → \"A project folder with a built-in time machine — you can go back to any previous version\"\n- **Git branch** → \"Like making a photocopy of a document to try edits on, without touching the original\"\n- **Git commit** → \"Saving a snapshot of your work with a note about what you changed\"\n- **Git merge** → \"Combining the edits from your photocopy back into the original document\"\n- **Pull request** → \"A formal request saying 'I made these changes — can someone review them before we make them official?'\"\n- **API** → \"A way for two programs to talk to each other, like a waiter taking orders between you and the kitchen\"\n- **Environment variable** → \"A setting stored on your computer that programs can read, like a sticky note on your monitor\"\n- **Package/dependency** → \"A pre-built tool or library that this project uses, like a reference book you need to do your work\"\n- **Build** → \"Converting the source code into something that can actually run, like converting a Word doc to a final PDF\"\n- **Terminal/shell** → \"The text-based control panel for your computer — you type commands instead of clicking buttons\"\n\n---\n\n## Rule 10: Encouraging Tone\n\n- Never make the user feel bad for not knowing something\n- Phrase things as \"here's how this works\" not \"you should know that...\"\n- If the user asks what something means, answer warmly and completely\n- End complex explanations with \"Does that make sense?\" or \"Want me to explain any of that differently?\"\n- Celebrate completions: \"Great, that's done!\" or \"All set!\"","tags":["noob","mode","awesome","copilot","github","agent-skills","agents","custom-agents","github-copilot","hacktoberfest","prompt-engineering"],"capabilities":["skill","source-github","skill-noob-mode","topic-agent-skills","topic-agents","topic-awesome","topic-custom-agents","topic-github-copilot","topic-hacktoberfest","topic-prompt-engineering"],"categories":["awesome-copilot"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/github/awesome-copilot/noob-mode","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add github/awesome-copilot","source_repo":"https://github.com/github/awesome-copilot","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 30784 github stars · SKILL.md body (10,813 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T06:52:26.536Z","embedding":null,"createdAt":"2026-04-18T20:26:41.000Z","updatedAt":"2026-04-22T06:52:26.536Z","lastSeenAt":"2026-04-22T06:52:26.536Z","tsv":"'/desktop/ip-analysis-draft.md':1342,1384 '1':330,994,1035,1045 '10':1676 '100':954 '15':1169 '2':630,978,1006,1055 '3':811,992,1018 '4':966 '5':1057 '6':1179 '7':1318 '8':1401 '9':1471 'abl':508 'access':349,735,1294 'across':565 'action':163,290,336,372,380,639,644,786,1411,1425 'activ':39,77,264,277 'actual':788,1647 'ad':711,1141 'add':828 'address':921 'affect':863 'agre':102 'alway':97,636,1130,1330,1385,1404 'analog':1472,1484 'analysi':1345,1365 'anoth':519 'answer':1709 'anyth':597 'anytim':309 'api':916,1576 'appear':184,612,1221 'approach':1420 'approv':18,121,333,341,400,488,600 'ask':126,296,362,385,429,451,532,557,1183,1306,1432,1705 'automat':79,175,814 'b':1244 'back':1507,1552 'background':72 'backup':1468 'bad':1684 'bare':1297 'base':1662 'bash':346 'before/after':1170 'block':354 'book':1631 'branch':850,1513 'brand':680,1146 'brand-new':1145 'brief':830 'briefli':1042 'build':1638 'built':1500,1620 'built-in':1499 'bundl':947 'busi':57 'button':1674 'call':343 'care':168 'case':574,806 'categor':637 'categori':964,1371 'celebr':1730 'chang':235,473,594,658,667,677,698,750,764,774,861,877,1026,1139,1348,1543,1566 'check':672,868,914 'choic':1299 'choos':250 'clear':26,90 'cli':14,45,64 'click':1673 'clutter':1240 'code':34,153,633,1133,1642 'color':33,152,632 'color-cod':32,151,631 'combin':1546 'come':206 'command':211,347,528,540,576,588,717,721,798,902,1059,1063,1112,1670 'commit':1530 'common':936,1176 'comparison':873 'complet':224,1039,1324,1712,1731 'complex':1328,1474,1714 'comprehens':951 'comput':543,579,724,734,777,1604,1667 'concept':1475,1479 'configur':772 'confirm':1043,1434 'connect':378,739 'content':670,700 'context':791,1301 'contracts/nda-template.md':440 'control':1164,1663 'convers':328,827 'convert':1639,1650 'copi':853,942 'copilot':13,44,63,78,125 'could':1445,1461 'creat':238,678,847,1010,1341,1355,1466 'credenti':760 'critic':748,763,773 'd':515,1149,1285 'decis':244,1180 'declin':409,503,615 'default':1403,1412 'defin':176,812,842 'definit':832,961 'delet':475,596,725,1150,1351,1381,1397 'depend':910 'describ':370 'design':49,59 'desktop':1214,1225,1242,1361 'destruct':1416,1424 'detail':1118 'detect':171 'diff':871 'differ':1729 'directori':669 'doc':1653 'document':481,567,939,1346,1358,1520,1556 'doesn':592,689,1439 'done':1046,1335,1735 'download':709,904 'e.g':792,1302 'easi':1235 'easili':1229 'edit':345,693,1523,1548 'encourag':1677 'end':1713 'endpoint':917 'engin':71 'english':6,30,48,179,199,288,368,960,984,1070,1085 'environ':1597 'error':20,84,209,1080 'even':1390,1435 'everi':17,81,123,227,289,293,299,332,335,609,638 'everyday':396 'everyth':285 'exact':357,875,1024 'exampl':421,844,1171 'exist':675,691,695,703,1000,1421 'explain':129,256,284,392,808,886,931,1191,1310,1405,1477,1725 'explan':353,1078,1086,1715 'extern':742 'fail':1457 'featur':115 'feel':1683 'file':344,425,439,470,493,512,547,605,620,653,661,674,682,687,696,704,726,731,884,937,1013,1137,1148,1152,1157,1219,1254,1340,1347,1350,1383,1399 'final':1019,1656 'find':518,560,1230,1237,1282 'first':181,463,823,995,1469 'fix':1103 'flag':1428 'folder':550,938,1249,1259,1280,1496 'follow':317 'formal':1560 'format':358,1005 'forward':281 'found':500 'framework':643 'free':29,93 'general':581 'genuin':935 'get':230,472 'git':746,870,1127,1492,1512,1529,1544 'go':1446,1506 'goe':1255 'great':1732 'happen':106,142,402,1092,1321,1339 'high':569,583,718,727,738,784,801 'high-risk':582,783 'icon':388,646 'import':1120 'includ':1386 'indemnif':554,564,611 'indic':36,150,635 'inform':1121 'input':1206 'insert':350 'instal':705,900 'instant':159 'instead':420,624,1671 'invok':268 'ip':1344,1364 'isn':1158 'jargon':28,92,170,374,813 'jargon-fre':27,91 'key':766,1117 'kitchen':1596 'know':98,203,1687,1700 'languag':94 'lawyer':55 'layer':8 'least':1415 'let':866 'level':155,389 'librari':907,1623 'like':478,1514,1587,1609,1628,1649 'link':941 'list':668 'll':283,418,490,602,617,846,879,913,997,1009,1021,1273 'longer':628 'look':483,656 'lose':1462 'low':465,654,662,671 'm':361,428,531,1134 'machin':1503 'made':1564 'make':43,684,1515,1573,1680,1719 'matter':1096 'mean':118,223,1089,1217,1252,1313,1708 'memo':1001,1051 'mention':1291 'merg':1545 'messag':21,85,210 'might':1239 'mode':3,38,41,75,274,315 'moder':683,697,708 'modifi':759,770,1135 'monitor':1615 'move':1052 'multi':191,969 'multi-step':190,968 'multipl':1189,1419 'narrat':967 'natur':838 'navig':1276 'nda':456 'need':167,248,459,516,1204,1274,1427,1633 'never':1071,1295,1408,1679 'new':681,686,849,1012,1147,1357 'next':403 'non':11,52,1196,1487 'non-techn':10,51,1195,1486 'none':1349,1352 'noob':2,37,40,74,273,314 'noob-mod':1 'note':1539,1612 'noth':471,657,666,676 'npm':899 'off':260 'offer':1464 'offici':1575 'one':254,365,376,390,621,623,1115 'open':435,479 'oper':1329 'option':110,252,1101,1190,1193,1209,1243,1287,1417 'order':1591 'organ':962,1270,1368 'origin':865,1528,1555 'other':756 'output':24,88,207,215,1060,1067,1075,1107,1124,1128,1177 'over-explain':929 'packag':707 'package/dependency':1616 'panel':1664 'parenthet':831 'particular':587 'password':765 'past':943 'pdf':1657 'perman':728 'permiss':82,127,294 'photocopi':1517,1551 'phrase':1689 'place':610 'plain':5,47,178,198,287,367,405,959,983,1069,1084 'plain-english':4,197,366,958,982 'plan':189,991 'pms':56 'point':280 'postgresql':1307 'pre':1619 'pre-built':1618 'present':980,1296 'previous':1510 'profession':54,1489 'program':1581,1606 'project':856,889,909,1248,1265,1279,1495,1626 'promin':1430 'prompt':19 'provid':1200,1331 'pull':1557 'push':744 'question':1187 'quick':1293 'raw':1073 're':101,841 're-defin':840 'read':423,437,461,468,491,619,795,998,1049,1608 'read-on':794 'reading/viewing':652 'readm':882 'real':1482 'real-world':1481 'receiv':925 'recommend':263,1202,1286 'refer':562,952,1630 'references/examples.md':1167 'references/glossary.md':948 'remaind':325 'remot':747 'remov':729,1154 'repositori':1493 'request':83,926,1367,1558,1561 'requir':897,975,1441 'respond':271 'rest':1262 'result':212,300 'review':454,522,1030,1569 'right':1222 'risk':35,149,154,387,394,464,568,584,634,642,645,785,1370 'riski':137 'roadmap':200,985 'rule':321,329,629,810,965,1056,1178,1317,1400,1470,1675 'run':525,538,575,714,719,898,1064,1648 'safe':165,571,789,803,1402 'save':944,1211,1245,1531 'say':145,311,799,1448,1562 'search':545,590,603,659,663 'secret':762 'section':1389 'secur':768 'see':160,444,510,758,945,1166 'send':749 'sens':1720 'sentenc':369,377,391,1116 'separ':852 'server':754 'servic':924 'set':769,779,1600,1738 'share':753 'shell':527,716,797 'show':302,496,607,874,1022,1072,1172 'silent':1409 'simpl':1395 'sinc':1289 'skill':270 'skill-noob-mode' 'snapshot':1533 'softwar':70,706,712,906 'someon':1568 'someth':1208,1444,1644,1688,1707 'sourc':1641 'source-github' 'speak':46 'specif':919,1129 'sqlite':1309 'stakehold':58 'start':194,987,1032 'status':1132 'step':186,188,192,970,979,993,1034,1041,1044,1054 'step-by-step':185 'sticki':1611 'store':1601 'structur':352 'success':1106 'summari':225,232,1322,1333,1353 'support':245,1181 'system':771,1438 'take':292,627,1410,1590 'talk':1583 'task':193,228,971,974,1326 'technic':12,23,53,87,172,214,819,955,1074,1197,1298,1478,1488 'tell':649 'templat':457 'term':173,397,406,820,837,932,956,1198 'terminal/shell':1658 'text':665,1661 'text-bas':1660 'thing':1690 'thought':169 'time':124,182,824,1502 'tone':1678 'tool':342,713,1621 'topic-agent-skills' 'topic-agents' 'topic-awesome' 'topic-custom-agents' 'topic-github-copilot' 'topic-hacktoberfest' 'topic-prompt-engineering' 'touch':1526 'track':1161 'trade':259,1233,1267 'trade-off':258,1232,1266 'translat':7,16,80,122,208,217,331,1058,1065,1125,1131,1175 'tri':618,860,1522 'trigger':338 'turn':306,312 'two':1580 'type':1669 'understand':1003,1491 'undo':242,1373,1378,1388,1392 'untrack':1155 'updat':880,1016 'upfront':1450 'url':348 'use':62,355,640,817,835,894,1480,1627 'user':15,267,340,384,651,1185,1316,1460,1682,1704 'variabl':1598 've':1048 'version':1017,1163,1511 'wait':1453 'waiter':1589 'want':132,433,536,1292,1376,1722 'warm':1710 'way':520,1578 'web':920 'websit':743,940 'website/url':737 'went':1082 'whether':1094 'without':839,862,1076,1300,1525 'won':505 'word':553,1652 'work':1109,1463,1536,1637,1696 'world':1483 'would':1490 'writer':60 'wrong':1083,1447 'yes':146 'yet':692,1165","prices":[{"id":"840e931f-12d1-46f2-913f-43433c8875d5","listingId":"c06f674e-933b-4e98-8e8b-0223051d3da3","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"github","category":"awesome-copilot","install_from":"skills.sh"},"createdAt":"2026-04-18T20:26:41.000Z"}],"sources":[{"listingId":"c06f674e-933b-4e98-8e8b-0223051d3da3","source":"github","sourceId":"github/awesome-copilot/noob-mode","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/noob-mode","isPrimary":false,"firstSeenAt":"2026-04-18T21:50:21.868Z","lastSeenAt":"2026-04-22T06:52:26.536Z"},{"listingId":"c06f674e-933b-4e98-8e8b-0223051d3da3","source":"skills_sh","sourceId":"github/awesome-copilot/noob-mode","sourceUrl":"https://skills.sh/github/awesome-copilot/noob-mode","isPrimary":true,"firstSeenAt":"2026-04-18T20:26:41.000Z","lastSeenAt":"2026-04-22T06:40:17.432Z"}],"details":{"listingId":"c06f674e-933b-4e98-8e8b-0223051d3da3","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"noob-mode","github":{"repo":"github/awesome-copilot","stars":30784,"topics":["agent-skills","agents","ai","awesome","custom-agents","github-copilot","hacktoberfest","prompt-engineering"],"license":"mit","html_url":"https://github.com/github/awesome-copilot","pushed_at":"2026-04-21T22:20:21Z","description":"Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.","skill_md_sha":"6629a08dadbb70423e9429ca45b7ecd2d742abc7","skill_md_path":"skills/noob-mode/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/github/awesome-copilot/tree/main/skills/noob-mode"},"layout":"multi","source":"github","category":"awesome-copilot","frontmatter":{"name":"noob-mode","description":"Plain-English translation layer for non-technical Copilot CLI users. Translates every approval prompt, error message, and technical output into clear, jargon-free English with color-coded risk indicators."},"skills_sh_url":"https://skills.sh/github/awesome-copilot/noob-mode"},"updatedAt":"2026-04-22T06:52:26.536Z"}}