{"id":"cd60b8e2-c6a8-4c2e-aaa1-37cb8c173d07","shortId":"7LgBHe","kind":"skill","title":"Scoutqa Test","tagline":"Awesome Copilot skill by Github","description":"# ScoutQA Testing Skill\n\nPerform AI-powered exploratory testing on web applications using the `scoutqa` CLI.\n\n**Think of ScoutQA as an intelligent testing partner** that can autonomously explore, discover issues, and verify features. Delegate testing to multiple parallel ScoutQA executions to maximize coverage while saving time.\n\n## When to Use This Skill\n\nUse this skill in two scenarios:\n\n1. **User requests testing** - When the user explicitly asks to test a website or verify functionality\n2. **Proactive verification** - After implementing web features, automatically run tests to verify the implementation works correctly\n\n**Example proactive usage:**\n\n- After implementing a login form → Test the authentication flow\n- After adding form validation → Verify validation rules and error handling\n- After building a checkout flow → Test the end-to-end purchase process\n- After fixing a bug → Verify the fix works and didn't break other features\n\n**Best practice**: When you finish implementing a web feature, proactively start a ScoutQA test in the background to verify it works while you continue with other tasks.\n\n## Running Tests\n\n### Testing Workflow\n\nCopy this checklist and track your progress:\n\nTesting Progress:\n\n- [ ] Write specific test prompt with clear expectations\n- [ ] Run scoutqa command in background\n- [ ] Inform user of execution ID and browser URL\n- [ ] Extract and analyze results\n\n**Step 1: Write specific test prompt**\n\nSee \"Writing Effective Prompts\" section below for guidelines.\n\n**Step 2: Run scoutqa command**\n\n**IMPORTANT**: Use the Bash tool's timeout parameter (5000ms = 5 seconds) to capture execution details:\n\nWhen calling the Bash tool, set `timeout: 5000` as a parameter:\n\n- This is the Bash tool's built-in timeout parameter in Claude Code (NOT the Unix `timeout` command)\n- After 5 seconds, the Bash tool returns control with a task ID and the process continues running in the background\n- This is different from Unix `timeout` which kills the process - here the process keeps running\n- The first 5 seconds capture the execution ID and browser URL from ScoutQA's output\n- The test continues running remotely on ScoutQA's infrastructure with the background task\n\n```bash\nscoutqa --url \"https://example.com\" --prompt \"Your test instructions\"\n```\n\nIn the first few seconds, the command will output:\n\n- **Execution ID** (e.g., `019b831d-xxx`)\n- **Browser URL** (e.g., `https://app.scoutqa.ai/t/019b831d-xxx`)\n- Initial tool calls showing test progress\n\nAfter the 5-second timeout, the Bash tool returns a task ID and the command continues running in the background. You can work on other tasks while the test runs. The timeout is only to capture the initial output (execution ID and browser URL) - the test keeps running both locally as a background task and remotely on ScoutQA's infrastructure.\n\n**Step 3: Inform user of execution ID and browser URL**\n\nAfter the Bash tool returns with the task ID (having captured the execution details in the first 5 seconds), inform the user of:\n\n- The ScoutQA execution ID and browser URL so they can monitor progress in their browser\n- The background task ID if they want to check local command output later\n\nThe test continues running in the background while you continue other work.\n\n**Step 4: Extract and analyze results**\n\nSee \"Presenting Results\" section below for the complete format.\n\n### Command Options\n\n- `--url` (required): Website URL to test (supports `localhost` / `127.0.0.1`)\n- `--prompt` (required): Natural language testing instructions\n- `--project-id` (optional): Associate with a project for tracking\n- `-v, --verbose` (optional): Show all tool calls including internal ones\n\n### Local Testing Support\n\nScoutQA supports testing `localhost` and `127.0.0.1` URLs autonomously — no manual setup required.\n\n```bash\n# Seamlessly test a locally running app when you're developing your app\nscoutqa --url \"http://localhost:3000\" --prompt \"Test the registration form\"\n```\n\n### When to Use Each Command\n\n**Starting a new test?** → Use `scoutqa --url --prompt`\n**Verifying a known issue?** → Use `scoutqa issue-verify --issue-id <id>`\n**Finding issue IDs from an execution?** → Use `scoutqa list-issues --execution-id <id>`\n**Agent needs more context?** → Use `scoutqa send-message` (see \"Following Up on Stuck Executions\")\n\n## Writing Effective Prompts\n\nFocus on **what to explore and verify**, not prescriptive steps. ScoutQA autonomously determines how to test.\n\n**Example: User registration flow**\n\n```bash\nscoutqa --url \"https://example.com\" --prompt \"\nExplore the user registration flow. Test form validation edge cases,\nverify error handling, and check accessibility compliance.\n\"\n```\n\n**Example: E-commerce checkout**\n\n```bash\nscoutqa --url \"https://shop.example.com\" --prompt \"\nTest the checkout flow. Verify pricing calculations, cart persistence,\npayment options, and mobile responsiveness.\n\"\n```\n\n**Example: Running parallel tests for comprehensive coverage**\n\nLaunch multiple tests in parallel by making multiple Bash tool calls in a single message, each with the Bash tool's `timeout` parameter set to `5000` (milliseconds):\n\n```bash\n# Test 1: Authentication & security\nscoutqa --url \"https://app.example.com\" --prompt \"\nExplore authentication: login/logout, session handling, password reset,\nand security edge cases.\n\"\n\n# Test 2: Core features (runs in parallel)\nscoutqa --url \"https://app.example.com\" --prompt \"\nTest dashboard and main user workflows. Verify data loading,\nCRUD operations, and search functionality.\n\"\n\n# Test 3: Accessibility (runs in parallel)\nscoutqa --url \"https://app.example.com\" --prompt \"\nConduct accessibility audit: WCAG compliance, keyboard navigation,\nscreen reader support, color contrast.\n\"\n```\n\n**Implementation**: Send a single message with three Bash tool calls. For each Bash tool invocation, set the `timeout` parameter to `5000` milliseconds. After 5 seconds, each Bash call returns with a task ID while the processes continue running in the background. This captures the execution ID and browser URL from each test in the initial output, then all three continue running in parallel (both as background tasks locally and remotely on ScoutQA's infrastructure).\n\n**Key guidelines:**\n\n- Describe **what to test**, not **how to test** (ScoutQA figures out the steps)\n- Focus on goals, edge cases, and concerns\n- Run multiple parallel executions for different test areas\n- Trust ScoutQA to autonomously explore and discover issues\n- Always set the Bash tool's `timeout` parameter to `5000` milliseconds when calling scoutqa commands (this returns control after 5 seconds while the process continues in the background)\n- For parallel tests, make multiple Bash tool calls in a single message\n- Remember: Bash tool timeout ≠ Unix timeout command (Bash timeout continues the process in background, Unix timeout kills it)\n\n### Common Test Scenarios\n\n**Post-deployment smoke test:**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nSmoke test: verify critical functionality works after deployment.\nCheck homepage, navigation, login/logout, and key user flows.\n\"\n```\n\n**Accessibility audit:**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nAudit accessibility: WCAG 2.1 AA compliance, keyboard navigation,\nscreen reader support, color contrast, and semantic HTML.\n\"\n```\n\n**E-commerce testing:**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nExplore e-commerce functionality: product search/filtering,\ncart operations, checkout flow, and pricing calculations.\n\"\n```\n\n**SaaS application:**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nTest SaaS app: authentication, dashboard, CRUD operations,\npermissions, and data integrity.\n\"\n```\n\n**Form validation:**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nTest form validation: edge cases, error handling, required fields,\nformat validation, and successful submission.\n\"\n```\n\n**Mobile responsiveness:**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nCheck mobile experience: responsive layout, navigation,\ntouch interactions, and viewport behavior.\n\"\n```\n\n**Verification of a known issue:**\n\n```bash\n# First, find issue IDs from a previous execution\nscoutqa list-issues --execution-id <executionId>\n\n# Then verify the issue (creates a new verification execution automatically)\nscoutqa issue-verify --issue-id <issueId>\n```\n\nThe `issue-verify` command will:\n\n1. Create a verification execution for the issue\n2. Show the execution ID and browser URL\n3. Stream the agent's verification progress in real-time\n4. Display a completion summary with a link to results\n\n**Feature verification (after implementation):**\n\n```bash\nscoutqa --url \"$URL\" --prompt \"\nVerify the new [feature name] works correctly. Test core functionality,\nedge cases, error handling, and integration with existing features.\n\"\n```\n\n**Example: Proactive testing after coding a feature**\n\nAfter implementing a user registration form, automatically verify it works:\n\n```bash\nscoutqa --url \"http://localhost:3000/register\" --prompt \"\nTest the newly implemented registration form. Verify:\n- Form validation (email format, password strength, required fields)\n- Error messages display correctly\n- Successful registration flow\n- Edge cases (duplicate emails, special characters, etc.)\n\"\n```\n\nThis catches issues immediately while the implementation is fresh in context.\n\n## Listing Issues\n\nUse `scoutqa list-issues` to browse issues found in a previous execution. This is useful for finding issue IDs to use with `issue-verify`.\n\n```bash\nscoutqa list-issues --execution-id <executionId>\n```\n\n**Options:**\n\n- `--execution-id` (required): Execution ID (from the `/t/<executionId>` URL or CLI output)\n\n**Example output:**\n\n```\nShowing 3 issues:\n\n🔴 019c-abc1\n   Login button unresponsive on mobile\n   Severity: critical | Category: usability | Status: open\n\n🟠 019c-abc2\n   Missing form validation on email field\n   Severity: high | Category: functional | Status: open\n\n🟡 019c-abc3\n   Color contrast insufficient on footer links\n   Severity: medium | Category: accessibility | Status: resolved\n```\n\n## Presenting Results\n\n### Immediate Presentation (After Starting Test)\n\nRight after running the scoutqa command, present the execution details to the user:\n\n```markdown\n**ScoutQA Test Started**\n\nExecution ID: `019b831d-xxx`\nView Live: https://app.scoutqa.ai/t/019b831d-xxx\n\nThe test is running remotely. You can view real-time progress in your browser at the link above while I continue with other tasks.\n```\n\n### Final Results (After Completion)\n\nWhen the execution completes, use this format to present findings:\n\n```markdown\n**ScoutQA Test Results**\n\nExecution ID: `ex_abc123`\n\n**Issues Found:**\n\n[High] Accessibility: Missing alt text on logo image\n\n- Impact: Screen readers cannot describe the logo\n- Location: Header navigation\n\n[Medium] Usability: Submit button not visible on mobile viewport\n\n- Impact: Users cannot complete form on mobile devices\n- Location: Contact form, bottom of page\n\n[Low] Functional: Search returns no results for valid queries\n\n- Impact: Search feature appears broken\n- Location: Main search bar\n\n**Summary:** Found 3 issues across accessibility, usability, and functional categories. See full interactive report with screenshots at the URL above.\n```\n\nAlways include:\n\n- **Execution ID** (e.g., `ex_abc123`) for reference\n- **Issues found** with severity, category (accessibility, usability, functional), impact, and location\n\n## Following Up on Stuck Executions\n\nIf the remote agent gets stuck or needs clarification, use `send-message` to continue:\n\n```bash\n# Example: Agent is stuck at login, user provides credentials\nscoutqa send-message --execution-id ex_abc123 --prompt \"\nUse these test credentials: username: testuser@example.com, password: TestPass123\n\"\n\n# Example: Agent asks which flow to test next\nscoutqa send-message --execution-id ex_abc123 --prompt \"\nFocus on the checkout flow next, skip the wishlist feature\n\"\n```\n\n## Checking Test Results\n\nScoutQA tests run remotely on ScoutQA's infrastructure. After starting a test with a short timeout to capture the execution ID:\n\n1. The test continues running remotely (not locally in background)\n2. You can continue other work immediately\n3. To check results later, visit the browser URL provided when the test started\n4. Alternatively, use `scoutqa get-execution --execution-id <id>` to fetch results via CLI\n\n**Best practice**: Start tests by setting the Bash tool's `timeout` parameter to `5000` milliseconds. After 5 seconds, the Bash tool returns control with a task ID and the execution details (execution ID and browser URL) while the test continues running in the background. You can then continue other work and check results on ScoutQA's website or via CLI when needed.\n\n## Troubleshooting\n\n| Issue                          | Solution                                                    |\n| ------------------------------ | ----------------------------------------------------------- |\n| `command not found: scoutqa`   | Install CLI: `npm i -g @scoutqa/cli@latest`                 |\n| Auth expired / unauthorized    | Run `scoutqa auth login`                                    |\n| Test hangs or needs input      | Use `scoutqa send-message --execution-id`                   |\n| Check test results             | Visit browser URL or `scoutqa get-execution --execution-id` |\n| Need issue ID for verification | Run `scoutqa list-issues --execution-id <id>`               |","tags":["scoutqa","test","awesome","copilot","github"],"capabilities":["skill","source-github","category-awesome-copilot"],"categories":["awesome-copilot"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/github/awesome-copilot/scoutqa-test","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"install_from":"skills.sh"}},"qualityScore":"0.300","qualityRationale":"deterministic score 0.30 from registry signals: · indexed on skills.sh · published under github/awesome-copilot","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:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T16:40:17.534Z","embedding":null,"createdAt":"2026-04-18T20:25:42.617Z","updatedAt":"2026-04-22T16:40:17.534Z","lastSeenAt":"2026-04-22T16:40:17.534Z","tsv":"'/t':1337 '/t/019b831d-xxx':365,1424 '019b831d':358,1418 '019b831d-xxx':357,1417 '019c':1348,1362,1377 '019c-abc1':1347 '019c-abc2':1361 '019c-abc3':1376 '1':65,211,753,1164,1673 '127.0.0.1':530,565 '2':81,225,772,1172,1683 '2.1':1027 '3':433,797,1180,1345,1535,1690 '3000':588 '3000/register':1250 '4':506,1191,1704 '5':238,275,311,374,459,841,949,1735 '5000':251,749,838,939,1732 '5000ms':237 'aa':1028 'abc1':1349 'abc123':1471,1559,1611,1637 'abc2':1363 'abc3':1378 'access':691,798,807,1017,1025,1388,1475,1538,1567 'across':1537 'ad':110 'agent':633,1183,1581,1595,1622 'ai':13 'ai-pow':12 'alt':1477 'altern':1705 'alway':930,1553 'analyz':208,509 'app':578,584,1072 'app.example.com':758,780,804 'app.scoutqa.ai':364,1423 'app.scoutqa.ai/t/019b831d-xxx':363,1422 'appear':1527 'applic':19,1064 'area':921 'ask':73,1623 'associ':541 'audit':808,1018,1024 'auth':1795,1800 'authent':107,754,761,1073 'automat':88,1150,1242 'autonom':34,567,662,925 'awesom':3 'background':162,197,293,335,391,424,481,499,858,883,957,983,1682,1762 'bar':1532 'bash':232,247,258,278,337,378,444,572,671,698,732,742,751,825,830,844,933,963,971,977,996,1019,1044,1065,1083,1104,1125,1205,1246,1320,1593,1726,1738 'behavior':1119 'best':146,1719 'bottom':1512 'break':143 'broken':1528 'brows':1300 'browser':204,318,360,414,440,470,479,865,1178,1439,1697,1753,1819 'bug':135 'build':120 'built':262 'built-in':261 'button':1351,1495 'calcul':709,1062 'call':245,368,553,734,827,845,942,965 'cannot':1485,1503 'captur':241,313,407,452,860,1669 'cart':710,1056 'case':685,770,911,1092,1221,1275 'catch':1282 'categori':1357,1372,1387,1542,1566 'category-awesome-copilot' 'charact':1279 'check':488,690,1009,1109,1649,1692,1770,1815 'checklist':179 'checkout':122,697,705,1058,1642 'clarif':1586 'claud':267 'clear':191 'cli':23,1340,1718,1778,1789 'code':268,1233 'color':816,1035,1379 'command':195,228,273,351,386,490,520,598,944,976,1162,1403,1784 'commerc':696,1042,1052 'common':988 'complet':518,1194,1453,1457,1504 'complianc':692,810,1029 'comprehens':722 'concern':913 'conduct':806 'contact':1510 'context':636,1291 'continu':169,289,326,387,495,502,854,877,954,979,1446,1592,1676,1686,1758,1766 'contrast':817,1036,1380 'control':281,947,1741 'copi':177 'copilot':4 'core':773,1218 'correct':96,1216,1270 'coverag':50,723 'creat':1145,1165 'credenti':1602,1616 'critic':1004,1356 'crud':791,1075 'dashboard':783,1074 'data':789,1079 'deleg':41 'deploy':993,1008 'describ':894,1486 'detail':243,455,1407,1749 'determin':663 'develop':582 'devic':1508 'didn':141 'differ':296,919 'discov':36,928 'display':1192,1269 'duplic':1276 'e':695,1041,1051 'e-commerc':694,1040,1050 'e.g':356,362,1557 'edg':684,769,910,1091,1220,1274 'effect':218,649 'email':1261,1277,1368 'end':127,129 'end-to-end':126 'error':117,687,1093,1222,1267 'etc':1280 'ex':1470,1558,1610,1636 'exampl':97,667,693,717,1229,1342,1594,1621 'example.com':340,674 'execut':47,201,242,315,354,411,437,454,467,624,631,647,862,917,1133,1139,1149,1168,1175,1306,1326,1330,1333,1406,1415,1456,1468,1555,1577,1608,1634,1671,1710,1712,1748,1750,1813,1825,1827,1840 'execution-id':630,1138,1325,1329,1607,1633,1711,1812,1826,1839 'exist':1227 'expect':192 'experi':1111 'expir':1796 'explicit':72 'explor':35,655,676,760,926,1049 'exploratori':15 'extract':206,507 'featur':40,87,145,154,774,1201,1213,1228,1235,1526,1648 'fetch':1715 'field':1096,1266,1369 'figur':903 'final':1450 'find':619,1127,1311,1463 'finish':150 'first':310,347,458,1126 'fix':133,138 'flow':108,123,670,680,706,1016,1059,1273,1625,1643 'focus':651,907,1639 'follow':643,1573 'footer':1383 'form':104,111,593,682,1081,1089,1241,1257,1259,1365,1505,1511 'format':519,1097,1262,1460 'found':1302,1473,1534,1563,1786 'fresh':1289 'full':1544 'function':80,795,1005,1053,1219,1373,1516,1541,1569 'g':1792 'get':1582,1709,1824 'get-execut':1708,1823 'github':7 'goal':909 'guidelin':223,893 'handl':118,688,764,1094,1223 'hang':1803 'header':1490 'high':1371,1474 'homepag':1010 'html':1039 'id':202,285,316,355,383,412,438,450,468,483,539,618,621,632,850,863,1129,1140,1157,1176,1313,1327,1331,1334,1416,1469,1556,1609,1635,1672,1713,1745,1751,1814,1828,1831,1841 'imag':1481 'immedi':1284,1393,1689 'impact':1482,1501,1524,1570 'implement':85,94,101,151,818,1204,1237,1255,1287 'import':229 'includ':554,1554 'inform':198,434,461 'infrastructur':332,431,891,1659 'initi':366,409,872 'input':1806 'instal':1788 'instruct':344,536 'insuffici':1381 'integr':1080,1225 'intellig':29 'interact':1116,1545 'intern':555 'invoc':832 'issu':37,610,614,617,620,629,929,1124,1128,1137,1144,1153,1156,1160,1171,1283,1293,1298,1301,1312,1318,1324,1346,1472,1536,1562,1782,1830,1838 'issue-id':616,1155 'issue-verifi':613,1152,1159,1317 'keep':307,418 'key':892,1014 'keyboard':811,1030 'kill':301,986 'known':609,1123 'languag':534 'later':492,1694 'latest':1794 'launch':724 'layout':1113 'link':1198,1384,1442 'list':628,1136,1292,1297,1323,1837 'list-issu':627,1135,1296,1322,1836 'live':1421 'load':790 'local':421,489,557,576,885,1680 'localhost':529,563,587,1249 'locat':1489,1509,1529,1572 'login':103,1350,1599,1801 'login/logout':762,1012 'logo':1480,1488 'low':1515 'main':785,1530 'make':730,961 'manual':569 'markdown':1411,1464 'maxim':49 'medium':1386,1492 'messag':641,738,822,969,1268,1590,1606,1632,1811 'millisecond':750,839,940,1733 'miss':1364,1476 'mobil':715,1102,1110,1354,1499,1507 'monitor':475 'multipl':44,725,731,915,962 'name':1214 'natur':533 'navig':812,1011,1031,1114,1491 'need':634,1585,1780,1805,1829 'new':601,1147,1212 'newli':1254 'next':1628,1644 'npm':1790 'one':556 'open':1360,1375 'oper':792,1057,1076 'option':521,540,549,713,1328 'output':323,353,410,491,873,1341,1343 'page':1514 'parallel':45,719,728,777,801,880,916,959 'paramet':236,254,265,746,836,937,1730 'partner':31 'password':765,1263,1619 'payment':712 'perform':11 'permiss':1077 'persist':711 'post':992 'post-deploy':991 'power':14 'practic':147,1720 'prescript':659 'present':512,1391,1394,1404,1462 'previous':1132,1305 'price':708,1061 'proactiv':82,98,155,1230 'process':131,288,303,306,853,953,981 'product':1054 'progress':183,185,371,476,1186,1436 'project':538,544 'project-id':537 'prompt':189,215,219,341,531,589,606,650,675,702,759,781,805,1000,1023,1048,1069,1087,1108,1209,1251,1612,1638 'provid':1601,1699 'purchas':130 'queri':1523 're':581 'reader':814,1033,1484 'real':1189,1434 'real-tim':1188,1433 'refer':1561 'registr':592,669,679,1240,1256,1272 'rememb':970 'remot':328,427,887,1429,1580,1655,1678 'report':1546 'request':67 'requir':523,532,571,1095,1265,1332 'reset':766 'resolv':1390 'respons':716,1103,1112 'result':209,510,513,1200,1392,1451,1467,1520,1651,1693,1716,1771,1817 'return':280,380,446,846,946,1518,1740 'right':1398 'rule':115 'run':89,173,193,226,290,308,327,388,401,419,496,577,718,775,799,855,878,914,1400,1428,1654,1677,1759,1798,1834 'saa':1063,1071 'save':52 'scenario':64,990 'scoutqa':1,8,22,26,46,158,194,227,321,330,338,429,466,560,585,604,612,626,638,661,672,699,756,778,802,889,902,923,943,997,1020,1045,1066,1084,1105,1134,1151,1206,1247,1295,1321,1402,1412,1465,1603,1629,1652,1657,1707,1773,1787,1799,1808,1822,1835 'scoutqa/cli':1793 'screen':813,1032,1483 'screenshot':1548 'seamless':573 'search':794,1517,1525,1531 'search/filtering':1055 'second':239,276,312,349,375,460,842,950,1736 'section':220,514 'secur':755,768 'see':216,511,642,1543 'semant':1038 'send':640,819,1589,1605,1631,1810 'send-messag':639,1588,1604,1630,1809 'session':763 'set':249,747,833,931,1724 'setup':570 'sever':1355,1370,1385,1565 'shop.example.com':701 'short':1666 'show':369,550,1173,1344 'singl':737,821,968 'skill':5,10,58,61 'skip':1645 'smoke':994,1001 'solut':1783 'source-github' 'special':1278 'specif':187,213 'start':156,599,1396,1414,1661,1703,1721 'status':1359,1374,1389 'step':210,224,432,505,660,906 'stream':1181 'strength':1264 'stuck':646,1576,1583,1597 'submiss':1101 'submit':1494 'success':1100,1271 'summari':1195,1533 'support':528,559,561,815,1034 'task':172,284,336,382,397,425,449,482,849,884,1449,1744 'test':2,9,16,30,42,68,75,90,105,124,159,174,175,184,188,214,325,343,370,400,417,494,527,535,558,562,574,590,602,666,681,703,720,726,752,771,782,796,869,897,901,920,960,989,995,1002,1043,1070,1088,1217,1231,1252,1397,1413,1426,1466,1615,1627,1650,1653,1663,1675,1702,1722,1757,1802,1816 'testpass123':1620 'testuser@example.com':1618 'text':1478 'think':24 'three':824,876 'time':53,1190,1435 'timeout':235,250,264,272,299,376,403,745,835,936,973,975,978,985,1667,1729 'tool':233,248,259,279,367,379,445,552,733,743,826,831,934,964,972,1727,1739 'touch':1115 'track':181,546 'troubleshoot':1781 'trust':922 'two':63 'unauthor':1797 'unix':271,298,974,984 'unrespons':1352 'url':205,319,339,361,415,441,471,522,525,566,586,605,673,700,757,779,803,866,998,999,1021,1022,1046,1047,1067,1068,1085,1086,1106,1107,1179,1207,1208,1248,1338,1551,1698,1754,1820 'usabl':1358,1493,1539,1568 'usag':99 'use':20,56,59,230,596,603,611,625,637,1294,1309,1315,1458,1587,1613,1706,1807 'user':66,71,199,435,463,668,678,786,1015,1239,1410,1502,1600 'usernam':1617 'v':547 'valid':112,114,683,1082,1090,1098,1260,1366,1522 'verbos':548 'verif':83,1120,1148,1167,1185,1202,1833 'verifi':39,79,92,113,136,164,607,615,657,686,707,788,1003,1142,1154,1161,1210,1243,1258,1319 'via':1717,1777 'view':1420,1432 'viewport':1118,1500 'visibl':1497 'visit':1695,1818 'want':486 'wcag':809,1026 'web':18,86,153 'websit':77,524,1775 'wishlist':1647 'work':95,139,166,394,504,1006,1215,1245,1688,1768 'workflow':176,787 'write':186,212,217,648 'xxx':359,1419","prices":[{"id":"606c1054-de0c-4313-8c94-3acf415466cc","listingId":"cd60b8e2-c6a8-4c2e-aaa1-37cb8c173d07","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:25:42.617Z"}],"sources":[{"listingId":"cd60b8e2-c6a8-4c2e-aaa1-37cb8c173d07","source":"github","sourceId":"github/awesome-copilot/scoutqa-test","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/scoutqa-test","isPrimary":false,"firstSeenAt":"2026-04-18T21:51:13.552Z","lastSeenAt":"2026-04-22T12:52:23.663Z"},{"listingId":"cd60b8e2-c6a8-4c2e-aaa1-37cb8c173d07","source":"skills_sh","sourceId":"github/awesome-copilot/scoutqa-test","sourceUrl":"https://skills.sh/github/awesome-copilot/scoutqa-test","isPrimary":true,"firstSeenAt":"2026-04-18T20:25:42.617Z","lastSeenAt":"2026-04-22T16:40:17.534Z"}],"details":{"listingId":"cd60b8e2-c6a8-4c2e-aaa1-37cb8c173d07","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"scoutqa-test","source":"skills_sh","category":"awesome-copilot","skills_sh_url":"https://skills.sh/github/awesome-copilot/scoutqa-test"},"updatedAt":"2026-04-22T16:40:17.534Z"}}