{"id":"78380082-cd05-49f2-bd4f-31a5010b973d","shortId":"b32rU5","kind":"skill","title":"tldr-prompt","tagline":"Create tldr summaries for GitHub Copilot files (prompts, agents, instructions, collections), MCP servers, or documentation from URLs and queries.","description":"# TLDR Prompt\n\n## Overview\n\nYou are an expert technical documentation specialist who creates concise, actionable `tldr` summaries\nfollowing the tldr-pages project standards. You MUST transform verbose GitHub Copilot customization\nfiles (prompts, agents, instructions, collections), MCP server documentation, or Copilot documentation\ninto clear, example-driven references for the current chat session.\n\n> [!IMPORTANT]\n> You MUST provide a summary rendering the output as markdown using the tldr template format. You\n> MUST NOT create a new tldr page file - output directly in the chat. Adapt your response based on\nthe chat context (inline chat vs chat view).\n\n## Objectives\n\nYou MUST accomplish the following:\n\n1. **Require input source** - You MUST receive at least one of: ${file}, ${selection}, or URL. If\nmissing, you MUST provide specific guidance on what to provide\n2. **Identify file type** - Determine if the source is a prompt (.prompt.md), agent (.agent.md),\ninstruction (.instructions.md), collection (.collections.md), or MCP server documentation\n3. **Extract key examples** - You MUST identify the most common and useful patterns, commands, or use\ncases from the source\n4. **Follow tldr format strictly** - You MUST use the template structure with proper markdown\nformatting\n5. **Provide actionable examples** - You MUST include concrete usage examples with correct invocation\nsyntax for the file type\n6. **Adapt to chat context** - Recognize whether you're in inline chat (Ctrl+I) or chat view and\nadjust response verbosity accordingly\n\n## Prompt Parameters\n\n### Required\n\nYou MUST receive at least one of the following. If none are provided, you MUST respond with the error\nmessage specified in the Error Handling section.\n\n* **GitHub Copilot customization files** - Files with extensions: .prompt.md, .agent.md,\n.instructions.md, .collections.md\n  - If one or more files are passed without `#file`, you MUST apply the file reading tool to all files\n  - If more than one file (up to 5), you MUST create a `tldr` for each. If more than 5, you MUST\n  create tldr summaries for the first 5 and list the remaining files\n  - Recognize file type by extension and use appropriate invocation syntax in examples\n* **URL** - Link to Copilot file, MCP server documentation, or Copilot documentation\n  - If one or more URLs are passed without `#fetch`, you MUST apply the fetch tool to all URLs\n  - If more than one URL (up to 5), you MUST create a `tldr` for each. If more than 5, you MUST create\n  tldr summaries for the first 5 and list the remaining URLs\n* **Text data/query** - Raw text about Copilot features, MCP servers, or usage questions will be\nconsidered **Ambiguous Queries**\n  - If the user provides raw text without a **specific file** or **URL**, identify the topic:\n    * Prompts, agents, instructions, collections → Search workspace first\n      - If no relevant files found, check https://github.com/github/awesome-copilot and resolve to\n      https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/{{folder}}/{{filename}}\n      (e.g., https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md)\n    * MCP servers → Prioritize https://modelcontextprotocol.io/ and\n    https://code.visualstudio.com/docs/copilot/customization/mcp-servers\n    * Inline chat (Ctrl+I) → https://code.visualstudio.com/docs/copilot/inline-chat\n    * Chat view/general → https://code.visualstudio.com/docs/copilot/ and\n    https://docs.github.com/en/copilot/\n  - See **URL Resolver** section for detailed resolution strategy.\n\n## URL Resolver\n\n### Ambiguous Queries\n\nWhen no specific URL or file is provided, but instead raw data relevant to working with Copilot,\nresolve to:\n\n1. **Identify topic category**:\n   - Workspace files → Search ${workspaceFolder} for .prompt.md, .agent.md, .instructions.md,\n   .collections.md\n     - If NO relevant files found, or data in files from `agents`, `collections`, `instructions`, or\n     `prompts` folders is irrelevant to query → Search https://github.com/github/awesome-copilot\n       - If relevant file found, resolve to raw data using\n       https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/{{folder}}/{{filename}}\n       (e.g., https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md)\n   - MCP servers → https://modelcontextprotocol.io/ or\n   https://code.visualstudio.com/docs/copilot/customization/mcp-servers\n   - Inline chat (Ctrl+I) → https://code.visualstudio.com/docs/copilot/inline-chat\n   - Chat tools/agents → https://code.visualstudio.com/docs/copilot/chat/\n   - General Copilot → https://code.visualstudio.com/docs/copilot/ or\n   https://docs.github.com/en/copilot/\n\n2. **Search strategy**:\n   - For workspace files: Use search tools to find matching files in ${workspaceFolder}\n   - For GitHub awesome-copilot: Fetch raw content from https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/\n   - For documentation: Use fetch tool with the most relevant URL from above\n\n3. **Fetch content**:\n   - Workspace files: Read using file tools\n   - GitHub awesome-copilot files: Fetch using raw.githubusercontent.com URLs\n   - Documentation URLs: Fetch using fetch tool\n\n4. **Evaluate and respond**:\n   - Use the fetched content as the reference for completing the request\n   - Adapt response verbosity based on chat context\n\n### Unambiguous Queries\n\nIf the user **DOES** provide a specific URL or file, skip searching and fetch/read that directly.\n\n### Optional\n\n* **Help output** - Raw data matching `-h`, `--help`, `/?`, `--tldr`, `--man`, etc.\n\n## Usage\n\n### Syntax\n\n```bash\n# UNAMBIGUOUS QUERIES\n# With specific files (any type)\n/tldr-prompt #file:{{name.prompt.md}}\n/tldr-prompt #file:{{name.agent.md}}\n/tldr-prompt #file:{{name.instructions.md}}\n/tldr-prompt #file:{{name.collections.md}}\n\n# With URLs\n/tldr-prompt #fetch {{https://example.com/docs}}\n\n# AMBIGUOUS QUERIES\n/tldr-prompt \"{{topic or question}}\"\n/tldr-prompt \"MCP servers\"\n/tldr-prompt \"inline chat shortcuts\"\n```\n\n### Error Handling\n\n#### Missing Required Parameters\n\n**User**\n\n```bash\n/tldr-prompt\n```\n\n**Agent Response when NO Required Data**\n\n```text\nError: Missing required input.\n\nYou MUST provide one of the following:\n1. A Copilot file: /tldr-prompt #file:{{name.prompt.md | name.agent.md | name.instructions.md | name.collections.md}}\n2. A URL: /tldr-prompt #fetch {{https://example.com/docs}}\n3. A search query: /tldr-prompt \"{{topic}}\" (e.g., \"MCP servers\", \"inline chat\", \"chat tools\")\n\nPlease retry with one of these inputs.\n```\n\n### AMBIGUOUS QUERIES\n\n#### Workspace Search\n\n> [!NOTE]\n> First attempt to resolve using workspace files. If found, generate output. If no relevant files found,\n> resolve using GitHub awesome-copilot as specified in **URL Resolver** section.\n\n**User**\n\n```bash\n/tldr-prompt \"Prompt files relevant to Java\"\n```\n\n**Agent Response when Relevant Workspace Files Found**\n\n```text\nI'll search ${workspaceFolder} for Copilot customization files (.prompt.md, .agent.md, .instructions.md, .collections.md) relevant to Java.\nFrom the search results, I'll produce a tldr output for each file found.\n```\n\n**Agent Response when NO Relevant Workspace Files Found**\n\n```text\nI'll check https://github.com/github/awesome-copilot\nFound:\n- https://github.com/github/awesome-copilot/blob/main/prompts/java-docs.prompt.md\n- https://github.com/github/awesome-copilot/blob/main/prompts/java-junit.prompt.md\n\nNow let me fetch the raw content:\n- https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-docs.prompt.md\n- https://raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md\n\nI'll create a tldr summary for each prompt file.\n```\n\n### UNAMBIGUOUS QUERIES\n\n#### File Query\n\n**User**\n\n```bash\n/tldr-prompt #file:typescript-mcp-server-generator.prompt.md\n```\n\n**Agent**\n\n```text\nI'll read the file typescript-mcp-server-generator.prompt.md and create a tldr summary.\n```\n\n#### Documentation Query\n\n**User**\n\n```bash\n/tldr-prompt \"How do MCP servers work?\" #fetch https://code.visualstudio.com/docs/copilot/customization/mcp-servers\n```\n\n**Agent**\n\n```text\nI'll fetch the MCP server documentation from https://code.visualstudio.com/docs/copilot/customization/mcp-servers\nand create a tldr summary of how MCP servers work.\n```\n\n## Workflow\n\nYou MUST follow these steps in order:\n\n1. **Validate Input**: Confirm at least one required parameter is provided. If not, output the error\nmessage from Error Handling section\n2. **Identify Context**:\n   - Determine file type (.prompt.md, .agent.md, .instructions.md, .collections.md)\n   - Recognize if query is about MCP servers, inline chat, chat view, or general Copilot features\n   - Note if you're in inline chat (Ctrl+I) or chat view context\n3. **Fetch Content**:\n   - For files: Read the file(s) using available file tools\n   - For URLs: Fetch content using `#tool:fetch`\n   - For queries: Apply URL Resolver strategy to find and fetch relevant content\n4. **Analyze Content**: Extract the file's/documentation's purpose, key parameters, and primary use\ncases\n5. **Generate tldr**: Create summary using the template format below with correct invocation syntax\nfor file type\n6. **Format Output**:\n   - Ensure markdown formatting is correct with proper code blocks and placeholders\n   - Use appropriate invocation prefix: `/` for prompts, `@` for agents, context-specific for\n   instructions/collections\n   - Adapt verbosity: inline chat = concise, chat view = detailed\n\n## Template\n\nUse this template structure when creating tldr pages:\n\n```markdown\n# command\n\n> Short, snappy description.\n> One to two sentences summarizing the prompt or prompt documentation.\n> More information: <name.prompt.md> | <URL/prompt>.\n\n- View documentation for creating something:\n\n`/file command-subcommand1`\n\n- View documentation for managing something:\n\n`/file command-subcommand2`\n```\n\n### Template Guidelines\n\nYou MUST follow these formatting rules:\n\n- **Title**: You MUST use the exact filename without extension (e.g., `typescript-mcp-expert` for\n.agent.md, `tldr-page` for .prompt.md)\n- **Description**: You MUST provide a one-line summary of the file's primary purpose\n- **Subcommands note**: You MUST include this line only if the file supports sub-commands or modes\n- **More information**: You MUST link to the local file (e.g., `<name.prompt.md>`, `<name.agent.md>`)\nor source URL\n- **Examples**: You MUST provide usage examples following these rules:\n  - Use correct invocation syntax:\n    * Prompts (.prompt.md): `/prompt-name {{parameters}}`\n    * Agents (.agent.md): `@agent-name {{request}}`\n    * Instructions (.instructions.md): Context-based (document how they apply)\n    * Collections (.collections.md): Document included files and usage\n  - For single file/URL: You MUST include 5-8 examples covering the most common use cases, ordered\n  by frequency\n  - For 2-3 files/URLs: You MUST include 3-5 examples per file\n  - For 4-5 files/URLs: You MUST include 2-3 essential examples per file\n  - For 6+ files: You MUST create summaries for the first 5 with 2-3 examples each, then list\n  remaining files\n  - For inline chat context: Limit to 3-5 most essential examples\n- **Placeholders**: You MUST use `{{placeholder}}` syntax for all user-provided values\n(e.g., `{{filename}}`, `{{url}}`, `{{parameter}}`)\n\n## Success Criteria\n\nYour output is complete when:\n\n- ✓ All required sections are present (title, description, more information, examples)\n- ✓ Markdown formatting is valid with proper code blocks\n- ✓ Examples use correct invocation syntax for file type (/ for prompts, @ for agents)\n- ✓ Examples use `{{placeholder}}` syntax consistently for user-provided values\n- ✓ Output is rendered directly in chat, not as a file creation\n- ✓ Content accurately reflects the source file's/documentation's purpose and usage\n- ✓ Response verbosity is appropriate for chat context (inline chat vs chat view)\n- ✓ MCP server content includes setup and tool usage examples when applicable","tags":["tldr","prompt","awesome","copilot","github","agent-skills","agents","custom-agents","github-copilot","hacktoberfest","prompt-engineering"],"capabilities":["skill","source-github","skill-tldr-prompt","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/tldr-prompt","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 · 33270 github stars · SKILL.md body (12,074 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-05-18T18:52:26.761Z","embedding":null,"createdAt":"2026-04-18T20:26:06.593Z","updatedAt":"2026-05-18T18:52:26.761Z","lastSeenAt":"2026-05-18T18:52:26.761Z","tsv":"'-3':1357,1375,1393 '-5':1363,1369,1407 '-8':1344 '/docs':753,810 '/docs/copilot/':492,606 '/docs/copilot/chat/':601 '/docs/copilot/customization/mcp-servers':480,589,989,1002 '/docs/copilot/inline-chat':487,596 '/en/copilot/':496,610 '/file':1211,1220 '/github/awesome-copilot':460,564,923 '/github/awesome-copilot/blob/main/prompts/java-docs.prompt.md':927 '/github/awesome-copilot/blob/main/prompts/java-junit.prompt.md':930 '/github/awesome-copilot/refs/heads/main/':466,576,637 '/github/awesome-copilot/refs/heads/main/prompts/java-docs.prompt.md':940 '/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md':943 '/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md)':472,582 '/prompt-name':1313 '/tldr-prompt':735,738,741,744,749,756,760,763,774,797,806,815,866,960,980 '1':124,528,793,1021 '2':150,611,803,1042,1356,1374,1392 '3':172,650,811,1080,1362,1406 '4':192,674,1112,1368 '5':207,313,324,333,387,398,407,1127,1343,1390 '6':225,1144,1381 'accomplish':121 'accord':246 'accur':1486 'action':36,209 'adapt':105,226,689,1171 'adjust':243 'agent':12,55,162,446,551,775,872,909,963,990,1165,1315,1318,1463 'agent-nam':1317 'agent.md':163,284,538,889,1049,1247,1316 'ambigu':428,507,754,831 'analyz':1113 'appli':298,373,1102,1329 'applic':1518 'appropri':346,1159,1499 'attempt':837 'avail':1090 'awesom':629,661,856 'awesome-copilot':628,660,855 'base':108,692,1325 'bash':727,773,865,959,979 'block':1155,1451 'case':188,1126,1351 'categori':531 'chat':73,104,111,114,116,228,236,240,482,488,591,597,694,765,821,822,1060,1061,1073,1077,1174,1176,1402,1479,1501,1504,1506 'check':457,920 'clear':65 'code':1154,1450 'code.visualstudio.com':479,486,491,588,595,600,605,988,1001 'code.visualstudio.com/docs/copilot/':490,604 'code.visualstudio.com/docs/copilot/chat/':599 'code.visualstudio.com/docs/copilot/customization/mcp-servers':478,587,987,1000 'code.visualstudio.com/docs/copilot/inline-chat':485,594 'collect':14,57,166,448,552,1330 'collections.md':167,286,540,891,1051,1331 'command':185,1189,1213,1222,1282 'command-subcommand1':1212 'command-subcommand2':1221 'common':181,1349 'complet':686,1432 'concis':35,1175 'concret':214 'confirm':1024 'consid':427 'consist':1468 'content':633,652,681,937,1082,1096,1111,1114,1485,1510 'context':112,229,695,1044,1079,1167,1324,1403,1502 'context-bas':1323 'context-specif':1166 'copilot':9,51,62,277,354,360,418,525,603,630,662,795,857,885,1065 'correct':218,1138,1151,1308,1454 'cover':1346 'creat':4,34,94,316,327,390,401,946,972,1004,1130,1185,1209,1385 'creation':1484 'criteria':1428 'ctrl':237,483,592,1074 'current':72 'custom':52,278,886 'data':520,547,572,718,780 'data/query':414 'descript':1192,1253,1440 'detail':502,1178 'determin':154,1045 'direct':101,713,1477 'docs.github.com':495,609 'docs.github.com/en/copilot/':494,608 'document':18,31,60,63,171,358,361,639,668,976,998,1202,1207,1216,1326,1332 'driven':68 'e.g':469,579,817,1241,1294,1423 'ensur':1147 'error':268,273,767,782,1036,1039 'essenti':1376,1409 'etc':724 'evalu':675 'exact':1237 'exampl':67,175,210,216,350,1298,1303,1345,1364,1377,1394,1410,1443,1452,1464,1516 'example-driven':66 'example.com':752,809 'example.com/docs':751,808 'expert':29,1245 'extens':282,343,1240 'extract':173,1115 'featur':419,1066 'fetch':370,375,631,641,651,664,670,672,680,750,807,934,986,994,1081,1095,1099,1109 'fetch/read':711 'file':10,53,99,135,152,223,279,280,291,295,300,305,310,338,340,355,439,455,514,533,544,549,567,616,623,654,657,663,707,732,736,739,742,745,796,798,842,850,868,877,887,907,915,953,956,961,969,1046,1084,1087,1091,1117,1142,1264,1278,1293,1334,1366,1379,1382,1399,1458,1483,1490 'file/url':1339 'filenam':468,578,1238,1424 'files/urls':1358,1370 'find':621,1107 'first':332,406,451,836,1389 'folder':467,556,577 'follow':39,123,193,258,792,1016,1228,1304 'format':90,195,206,1135,1145,1149,1230,1445 'found':456,545,568,844,851,878,908,916,924 'frequenc':1354 'general':602,1064 'generat':845,1128 'github':8,50,276,627,659,854 'github.com':459,563,922,926,929 'github.com/github/awesome-copilot':458,562,921 'github.com/github/awesome-copilot/blob/main/prompts/java-docs.prompt.md':925 'github.com/github/awesome-copilot/blob/main/prompts/java-junit.prompt.md':928 'guidanc':145 'guidelin':1225 'h':720 'handl':274,768,1040 'help':715,721 'identifi':151,178,442,529,1043 'import':75 'includ':213,1272,1333,1342,1361,1373,1511 'inform':1204,1286,1442 'inlin':113,235,481,590,764,820,1059,1072,1173,1401,1503 'input':126,785,830,1023 'instead':518 'instruct':13,56,164,447,553,1321 'instructions.md':165,285,539,890,1050,1322 'instructions/collections':1170 'invoc':219,347,1139,1160,1309,1455 'irrelev':558 'java':871,894 'key':174,1121 'least':132,254,1026 'let':932 'limit':1404 'line':1260,1274 'link':352,1289 'list':335,409,1397 'll':881,900,919,945,966,993 'local':1292 'man':723 'manag':1218 'markdown':85,205,1148,1188,1444 'match':622,719 'mcp':15,58,169,356,420,473,583,761,818,983,996,1010,1057,1244,1508 'messag':269,1037 'miss':140,769,783 'mode':1284 'modelcontextprotocol.io':476,585 'must':47,77,92,120,129,142,177,198,212,251,264,297,315,326,372,389,400,787,1015,1227,1234,1255,1271,1288,1300,1341,1360,1372,1384,1413 'name':1319 'name.agent.md':740,800 'name.collections.md':746,802 'name.instructions.md':743,801 'name.prompt.md':737,799 'new':96 'none':260 'note':835,1067,1269 'object':118 'one':133,255,288,309,363,383,789,827,1027,1193,1259 'one-lin':1258 'option':714 'order':1020,1352 'output':83,100,716,846,904,1034,1146,1430,1474 'overview':25 'page':43,98,1187,1250 'paramet':248,771,1029,1122,1314,1426 'pass':293,368 'pattern':184 'per':1365,1378 'placehold':1157,1411,1415,1466 'pleas':824 'prefix':1161 'present':1438 'primari':1124,1266 'priorit':475 'produc':901 'project':44 'prompt':3,11,24,54,160,247,445,555,867,952,1163,1199,1201,1311,1461 'prompt.md':161,283,537,888,1048,1252,1312 'proper':204,1153,1449 'provid':78,143,149,208,262,433,516,702,788,1031,1256,1301,1421,1472 'purpos':1120,1267,1493 'queri':22,429,508,560,697,729,755,814,832,955,957,977,1054,1101 'question':424,759 'raw':415,434,519,571,632,717,936 'raw.githubusercontent.com':465,471,575,581,636,666,939,942 'raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/':464,574,635 'raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-docs.prompt.md':938 'raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md':941 'raw.githubusercontent.com/github/awesome-copilot/refs/heads/main/prompts/java-junit.prompt.md)':470,580 're':233,1070 'read':301,655,967,1085 'receiv':130,252 'recogn':230,339,1052 'refer':69,684 'reflect':1487 'relev':454,521,543,566,646,849,869,875,892,913,1110 'remain':337,411,1398 'render':81,1476 'request':688,1320 'requir':125,249,770,779,784,1028,1435 'resolut':503 'resolv':462,499,506,526,569,839,852,862,1104 'respond':265,677 'respons':107,244,690,776,873,910,1496 'result':898 'retri':825 'rule':1231,1306 's/documentation':1118,1491 'search':449,534,561,612,618,709,813,834,882,897 'section':275,500,863,1041,1436 'see':497 'select':136 'sentenc':1196 'server':16,59,170,357,421,474,584,762,819,984,997,1011,1058,1509 'session':74 'setup':1512 'short':1190 'shortcut':766 'singl':1338 'skill' 'skill-tldr-prompt' 'skip':708 'snappi':1191 'someth':1210,1219 'sourc':127,157,191,1296,1489 'source-github' 'specialist':32 'specif':144,438,511,704,731,1168 'specifi':270,859 'standard':45 'step':1018 'strategi':504,613,1105 'strict':196 'structur':202,1183 'sub':1281 'sub-command':1280 'subcommand':1268 'subcommand1':1214 'subcommand2':1223 'success':1427 'summar':1197 'summari':6,38,80,329,403,949,975,1007,1131,1261,1386 'support':1279 'syntax':220,348,726,1140,1310,1416,1456,1467 'technic':30 'templat':89,201,1134,1179,1182,1224 'text':413,416,435,781,879,917,964,991 'titl':1232,1439 'tldr':2,5,23,37,42,88,97,194,318,328,392,402,722,903,948,974,1006,1129,1186,1249 'tldr-page':41,1248 'tldr-prompt':1 'tool':302,376,619,642,658,673,823,1092,1098,1514 'tools/agents':598 'topic':444,530,757,816 'topic-agent-skills' 'topic-agents' 'topic-awesome' 'topic-custom-agents' 'topic-github-copilot' 'topic-hacktoberfest' 'topic-prompt-engineering' 'transform':48 'two':1195 'type':153,224,341,734,1047,1143,1459 'typescript':1243 'typescript-mcp-expert':1242 'typescript-mcp-server-generator.prompt.md':962,970 'unambigu':696,728,954 'url':20,138,351,366,379,384,412,441,498,505,512,647,667,669,705,748,805,861,1094,1103,1297,1425 'url/prompt':1205 'usag':215,423,725,1302,1336,1495,1515 'use':86,183,187,199,345,573,617,640,656,665,671,678,840,853,1089,1097,1125,1132,1158,1180,1235,1307,1350,1414,1453,1465 'user':432,700,772,864,958,978,1420,1471 'user-provid':1419,1470 'valid':1022,1447 'valu':1422,1473 'verbos':49,245,691,1172,1497 'view':117,241,1062,1078,1177,1206,1215,1507 'view/general':489 'vs':115,1505 'whether':231 'without':294,369,436,1239 'work':523,985,1012 'workflow':1013 'workspac':450,532,615,653,833,841,876,914 'workspacefold':535,625,883","prices":[{"id":"26cbea10-6ee5-4175-b392-65c8a2fb4e0e","listingId":"78380082-cd05-49f2-bd4f-31a5010b973d","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:06.593Z"}],"sources":[{"listingId":"78380082-cd05-49f2-bd4f-31a5010b973d","source":"github","sourceId":"github/awesome-copilot/tldr-prompt","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/tldr-prompt","isPrimary":false,"firstSeenAt":"2026-04-18T21:51:27.547Z","lastSeenAt":"2026-05-18T18:52:26.761Z"},{"listingId":"78380082-cd05-49f2-bd4f-31a5010b973d","source":"skills_sh","sourceId":"github/awesome-copilot/tldr-prompt","sourceUrl":"https://skills.sh/github/awesome-copilot/tldr-prompt","isPrimary":true,"firstSeenAt":"2026-04-18T20:26:06.593Z","lastSeenAt":"2026-05-07T22:40:18.754Z"}],"details":{"listingId":"78380082-cd05-49f2-bd4f-31a5010b973d","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"tldr-prompt","github":{"repo":"github/awesome-copilot","stars":33270,"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-05-18T01:26:59Z","description":"Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.","skill_md_sha":"c080bd92e28c094c2b28a7e707ffeb919d9c91cb","skill_md_path":"skills/tldr-prompt/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/github/awesome-copilot/tree/main/skills/tldr-prompt"},"layout":"multi","source":"github","category":"awesome-copilot","frontmatter":{"name":"tldr-prompt","description":"Create tldr summaries for GitHub Copilot files (prompts, agents, instructions, collections), MCP servers, or documentation from URLs and queries."},"skills_sh_url":"https://skills.sh/github/awesome-copilot/tldr-prompt"},"updatedAt":"2026-05-18T18:52:26.761Z"}}