{"id":"5eaa54f0-5082-4062-8e7e-f8c02b1d68d0","shortId":"SQ94pF","kind":"skill","title":"Folder Structure Blueprint Generator","tagline":"Awesome Copilot skill by Github","description":"# Project Folder Structure Blueprint Generator\n\n## Configuration Variables\n\n${PROJECT_TYPE=\"Auto-detect|.NET|Java|React|Angular|Python|Node.js|Flutter|Other\"} \n<!-- Select primary technology -->\n\n${INCLUDES_MICROSERVICES=\"Auto-detect|true|false\"} \n<!-- Is this a microservices architecture? -->\n\n${INCLUDES_FRONTEND=\"Auto-detect|true|false\"} \n<!-- Does project include frontend components? -->\n\n${IS_MONOREPO=\"Auto-detect|true|false\"} \n<!-- Is this a monorepo with multiple projects? -->\n\n${VISUALIZATION_STYLE=\"ASCII|Markdown List|Table\"} \n<!-- How to visualize the structure -->\n\n${DEPTH_LEVEL=1-5} \n<!-- How many levels of folders to document in detail -->\n\n${INCLUDE_FILE_COUNTS=true|false} \n<!-- Include file count statistics -->\n\n${INCLUDE_GENERATED_FOLDERS=true|false} \n<!-- Include auto-generated folders -->\n\n${INCLUDE_FILE_PATTERNS=true|false} \n<!-- Document file naming/location patterns -->\n\n${INCLUDE_TEMPLATES=true|false} \n<!-- Include file/folder templates for new features -->\n\n## Generated Prompt\n\n\"Analyze the project's folder structure and create a comprehensive 'Project_Folders_Structure_Blueprint.md' document that serves as a definitive guide for maintaining consistent code organization. Use the following approach:\n\n### Initial Auto-detection Phase\n\n${PROJECT_TYPE == \"Auto-detect\" ? \n\"Begin by scanning the folder structure for key files that identify the project type:\n- Look for solution/project files (.sln, .csproj, .fsproj, .vbproj) to identify .NET projects\n- Check for build files (pom.xml, build.gradle, settings.gradle) for Java projects\n- Identify package.json with dependencies for JavaScript/TypeScript projects\n- Look for specific framework files (angular.json, react-scripts entries, next.config.js)\n- Check for Python project identifiers (requirements.txt, setup.py, pyproject.toml)\n- Examine mobile app identifiers (pubspec.yaml, android/ios folders)\n- Note all technology signatures found and their versions\" : \n\"Focus analysis on ${PROJECT_TYPE} project structure\"}\n\n${IS_MONOREPO == \"Auto-detect\" ? \n\"Determine if this is a monorepo by looking for:\n- Multiple distinct projects with their own configuration files\n- Workspace configuration files (lerna.json, nx.json, turborepo.json, etc.)\n- Cross-project references and shared dependency patterns\n- Root-level orchestration scripts and configuration\" : \"\"}\n\n${INCLUDES_MICROSERVICES == \"Auto-detect\" ? \n\"Check for microservices architecture indicators:\n- Multiple service directories with similar/repeated structures\n- Service-specific Dockerfiles or deployment configurations\n- Inter-service communication patterns (APIs, message brokers)\n- Service registry or discovery configuration\n- API gateway configuration files\n- Shared libraries or utilities across services\" : \"\"}\n\n${INCLUDES_FRONTEND == \"Auto-detect\" ? \n\"Identify frontend components by looking for:\n- Web asset directories (wwwroot, public, dist, static)\n- UI framework files (components, modules, pages)\n- Frontend build configuration (webpack, vite, rollup, etc.)\n- Style sheet organization (CSS, SCSS, styled-components)\n- Static asset organization (images, fonts, icons)\" : \"\"}\n\n### 1. Structural Overview\n\nProvide a high-level overview of the ${PROJECT_TYPE == \"Auto-detect\" ? \"detected project type(s)\" : PROJECT_TYPE} project's organization principles and folder structure:\n\n- Document the overall architectural approach reflected in the folder structure\n- Identify the main organizational principles (by feature, by layer, by domain, etc.)\n- Note any structural patterns that repeat throughout the codebase\n- Document the rationale behind the structure where it can be inferred\n\n${IS_MONOREPO == \"Auto-detect\" ? \n\"If detected as a monorepo, explain how the monorepo is organized and the relationship between projects.\" : \nIS_MONOREPO ? \"Explain how the monorepo is organized and the relationship between projects.\" : \"\"}\n\n${INCLUDES_MICROSERVICES == \"Auto-detect\" ? \n\"If microservices are detected, describe how they are structured and organized.\" : \nINCLUDES_MICROSERVICES ? \"Describe how the microservices are structured and organized.\" : \"\"}\n\n### 2. Directory Visualization\n\n${VISUALIZATION_STYLE == \"ASCII\" ? \n\"Create an ASCII tree representation of the folder hierarchy to depth level ${DEPTH_LEVEL}.\" : \"\"}\n\n${VISUALIZATION_STYLE == \"Markdown List\" ? \n\"Use nested markdown lists to represent the folder hierarchy to depth level ${DEPTH_LEVEL}.\" : \"\"}\n\n${VISUALIZATION_STYLE == \"Table\" ? \n\"Create a table with columns for Path, Purpose, Content Types, and Conventions.\" : \"\"}\n\n${INCLUDE_GENERATED_FOLDERS ? \n\"Include all folders including generated ones.\" : \n\"Exclude auto-generated folders like bin/, obj/, node_modules/, etc.\"}\n\n### 3. Key Directory Analysis\n\nDocument each significant directory's purpose, contents, and patterns:\n\n${PROJECT_TYPE == \"Auto-detect\" ? \n\"For each detected technology, analyze directory structures based on observed usage patterns:\" : \"\"}\n\n${(PROJECT_TYPE == \".NET\" || PROJECT_TYPE == \"Auto-detect\") ? \n\"#### .NET Project Structure (if detected)\n\n- **Solution Organization**: \n  - How projects are grouped and related\n  - Solution folder organization patterns\n  - Multi-targeting project patterns\n\n- **Project Organization**:\n  - Internal folder structure patterns\n  - Source code organization approach\n  - Resource organization\n  - Project dependencies and references\n\n- **Domain/Feature Organization**:\n  - How business domains or features are separated\n  - Domain boundary enforcement patterns\n\n- **Layer Organization**:\n  - Separation of concerns (Controllers, Services, Repositories, etc.)\n  - Layer interaction and dependency patterns\n\n- **Configuration Management**:\n  - Configuration file locations and purposes\n  - Environment-specific configurations\n  - Secret management approach\n\n- **Test Project Organization**:\n  - Test project structure and naming\n  - Test categories and organization\n  - Test data and mock locations\" : \"\"}\n\n${(PROJECT_TYPE == \"React\" || PROJECT_TYPE == \"Angular\" || PROJECT_TYPE == \"Auto-detect\") ? \n\"#### UI Project Structure (if detected)\n\n- **Component Organization**:\n  - Component folder structure patterns\n  - Grouping strategies (by feature, type, etc.)\n  - Shared vs. feature-specific components\n\n- **State Management**:\n  - State-related file organization\n  - Store structure for global state\n  - Local state management patterns\n\n- **Routing Organization**:\n  - Route definition locations\n  - Page/view component organization\n  - Route parameter handling\n\n- **API Integration**:\n  - API client organization\n  - Service layer structure\n  - Data fetching patterns\n\n- **Asset Management**:\n  - Static resource organization\n  - Image/media file structure\n  - Font and icon organization\n  \n- **Style Organization**:\n  - CSS/SCSS file structure\n  - Theme organization\n  - Style module patterns\" : \"\"}\n\n### 4. File Placement Patterns\n\n${INCLUDE_FILE_PATTERNS ? \n\"Document the patterns that determine where different types of files should be placed:\n\n- **Configuration Files**:\n  - Locations for different types of configuration\n  - Environment-specific configuration patterns\n  \n- **Model/Entity Definitions**:\n  - Where domain models are defined\n  - Data transfer object (DTO) locations\n  - Schema definition locations\n  \n- **Business Logic**:\n  - Service implementation locations\n  - Business rule organization\n  - Utility and helper function placement\n  \n- **Interface Definitions**:\n  - Where interfaces and abstractions are defined\n  - How interfaces are grouped and organized\n  \n- **Test Files**:\n  - Unit test location patterns\n  - Integration test placement\n  - Test utility and mock locations\n  \n- **Documentation Files**:\n  - API documentation placement\n  - Internal documentation organization\n  - README file distribution\" : \n\"Document where key file types are located in the project.\"}\n\n### 5. Naming and Organization Conventions\nDocument the naming and organizational conventions observed across the project:\n\n- **File Naming Patterns**:\n  - Case conventions (PascalCase, camelCase, kebab-case)\n  - Prefix and suffix patterns\n  - Type indicators in filenames\n  \n- **Folder Naming Patterns**:\n  - Naming conventions for different folder types\n  - Hierarchical naming patterns\n  - Grouping and categorization conventions\n  \n- **Namespace/Module Patterns**:\n  - How namespaces/modules map to folder structure\n  - Import/using statement organization\n  - Internal vs. public API separation\n\n- **Organizational Patterns**:\n  - Code co-location strategies\n  - Feature encapsulation approaches\n  - Cross-cutting concern organization\n\n### 6. Navigation and Development Workflow\nProvide guidance for navigating and working with the codebase structure:\n\n- **Entry Points**:\n  - Main application entry points\n  - Key configuration starting points\n  - Initial files for understanding the project\n\n- **Common Development Tasks**:\n  - Where to add new features\n  - How to extend existing functionality\n  - Where to place new tests\n  - Configuration modification locations\n  \n- **Dependency Patterns**:\n  - How dependencies flow between folders\n  - Import/reference patterns\n  - Dependency injection registration locations\n\n${INCLUDE_FILE_COUNTS ? \n\"- **Content Statistics**:\n  - Files per directory analysis\n  - Code distribution metrics\n  - Complexity concentration areas\" : \"\"}\n\n### 7. Build and Output Organization\nDocument the build process and output organization:\n\n- **Build Configuration**:\n  - Build script locations and purposes\n  - Build pipeline organization\n  - Build task definitions\n  \n- **Output Structure**:\n  - Compiled/built output locations\n  - Output organization patterns\n  - Distribution package structure\n  \n- **Environment-Specific Builds**:\n  - Development vs. production differences\n  - Environment configuration strategies\n  - Build variant organization\n\n### 8. Technology-Specific Organization\n\n${(PROJECT_TYPE == \".NET\" || PROJECT_TYPE == \"Auto-detect\") ? \n\"#### .NET-Specific Structure Patterns (if detected)\n\n- **Project File Organization**:\n  - Project file structure and patterns\n  - Target framework configuration\n  - Property group organization\n  - Item group patterns\n  \n- **Assembly Organization**:\n  - Assembly naming patterns\n  - Multi-assembly architecture\n  - Assembly reference patterns\n  \n- **Resource Organization**:\n  - Embedded resource patterns\n  - Localization file structure\n  - Static web asset organization\n  \n- **Package Management**:\n  - NuGet configuration locations\n  - Package reference organization\n  - Package version management\" : \"\"}\n\n${(PROJECT_TYPE == \"Java\" || PROJECT_TYPE == \"Auto-detect\") ? \n\"#### Java-Specific Structure Patterns (if detected)\n\n- **Package Hierarchy**:\n  - Package naming and nesting conventions\n  - Domain vs. technical packages\n  - Visibility and access patterns\n  \n- **Build Tool Organization**:\n  - Maven/Gradle structure patterns\n  - Module organization\n  - Plugin configuration patterns\n  \n- **Resource Organization**:\n  - Resource folder structures\n  - Environment-specific resources\n  - Properties file organization\" : \"\"}\n\n${(PROJECT_TYPE == \"Node.js\" || PROJECT_TYPE == \"Auto-detect\") ? \n\"#### Node.js-Specific Structure Patterns (if detected)\n\n- **Module Organization**:\n  - CommonJS vs. ESM organization\n  - Internal module patterns\n  - Third-party dependency management\n  \n- **Script Organization**:\n  - npm/yarn script definition patterns\n  - Utility script locations\n  - Development tool scripts\n  \n- **Configuration Management**:\n  - Configuration file locations\n  - Environment variable management\n  - Secret management approaches\" : \"\"}\n\n### 9. Extension and Evolution\nDocument how the project structure is designed to be extended:\n\n- **Extension Points**:\n  - How to add new modules/features while maintaining conventions\n  - Plugin/extension folder patterns\n  - Customization directory structures\n  \n- **Scalability Patterns**:\n  - How the structure scales for larger features\n  - Approach for breaking down large modules\n  - Code splitting strategies\n  \n- **Refactoring Patterns**:\n  - Common refactoring approaches observed\n  - How structural changes are managed\n  - Incremental reorganization patterns\n\n${INCLUDE_TEMPLATES ? \n\"### 10. Structure Templates\n\nProvide templates for creating new components that follow project conventions:\n\n- **New Feature Template**:\n  - Folder structure for adding a complete feature\n  - Required file types and their locations\n  - Naming patterns to follow\n  \n- **New Component Template**:\n  - Directory structure for a typical component\n  - Essential files to include\n  - Integration points with existing structure\n  \n- **New Service Template**:\n  - Structure for adding a new service\n  - Interface and implementation placement\n  - Configuration and registration patterns\n  \n- **New Test Structure**:\n  - Folder structure for test projects/files\n  - Test file organization templates\n  - Test resource organization\" : \"\"}\n\n### ${INCLUDE_TEMPLATES ? \"11\" : \"10\"}. Structure Enforcement\n\nDocument how the project structure is maintained and enforced:\n\n- **Structure Validation**:\n  - Tools/scripts that enforce structure\n  - Build checks for structural compliance\n  - Linting rules related to structure\n  \n- **Documentation Practices**:\n  - How structural changes are documented\n  - Where architectural decisions are recorded\n  - Structure evolution history\n\nInclude a section at the end about maintaining this blueprint and when it was last updated.\n\"","tags":["folder","structure","blueprint","generator","awesome","copilot","github"],"capabilities":["skill","source-github","category-awesome-copilot"],"categories":["awesome-copilot"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/github/awesome-copilot/folder-structure-blueprint-generator","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-22T13:40:15.237Z","embedding":null,"createdAt":"2026-04-18T20:25:54.711Z","updatedAt":"2026-04-22T13:40:15.237Z","lastSeenAt":"2026-04-22T13:40:15.237Z","tsv":"'-5':60 '1':59,338 '10':1330,1416 '11':1415 '2':469 '3':542 '4':770 '5':880 '6':960 '7':1040 '8':1090 '9':1266 'abstract':836 'access':1190 'across':291,892 'ad':1349,1386 'add':996,1284 'analysi':197,545,1033 'analyz':82,564 'android/ios':186 'angular':25,681 'angular.json':167 'api':275,283,737,739,861,943 'app':183 'applic':978 'approach':108,371,611,658,954,1265,1305,1318 'architectur':255,370,1135,1452 'area':1039 'ascii':53,474,477 'assembl':1127,1129,1134,1136 'asset':305,333,748,1149 'auto':20,33,40,47,111,117,206,250,296,352,412,446,533,558,578,685,1101,1168,1221 'auto-detect':19,32,39,46,110,116,205,249,295,351,411,445,557,577,684,1100,1167,1220 'auto-gener':532 'awesom':5 'base':567 'begin':119 'behind':401 'bin':537 'blueprint':3,13,1468 'boundari':628 'break':1307 'broker':277 'build':147,318,1041,1047,1052,1054,1059,1062,1079,1087,1192,1434 'build.gradle':150 'busi':621,818,823 'camelcas':901 'case':898,904 'categor':927 'categori':668 'category-awesome-copilot' 'chang':1322,1448 'check':145,173,252,1435 'client':740 'co':949 'co-loc':948 'code':103,609,947,1034,1311 'codebas':397,973 'column':514 'common':991,1316 'commonj':1231 'communic':273 'compiled/built':1067 'complet':1351 'complex':1037 'complianc':1438 'compon':300,314,331,692,694,709,732,1338,1364,1371 'comprehens':91 'concentr':1038 'concern':635,958 'configur':15,223,226,246,269,282,285,319,645,647,655,790,797,801,982,1009,1053,1085,1120,1154,1201,1255,1257,1394 'consist':102 'content':518,552,1028 'control':636 'convent':521,884,890,899,917,928,1183,1289,1342 'copilot':6 'count':63,1027 'creat':89,475,510,1336 'cross':233,956 'cross-cut':955 'cross-project':232 'csproj':138 'css':327 'css/scss':762 'custom':1293 'cut':957 'data':672,745,810 'decis':1453 'defin':809,838 'definit':98,729,804,816,832,1064,1247 'depend':158,238,615,643,1012,1015,1021,1241 'deploy':268 'depth':57,485,487,503,505 'describ':452,461 'design':1276 'detect':21,34,41,48,112,118,207,251,297,353,354,413,415,447,451,559,562,579,584,686,691,1102,1109,1169,1176,1222,1228 'determin':208,781 'develop':963,992,1080,1252 'differ':783,794,919,1083 'directori':259,306,470,544,549,565,1032,1294,1366 'discoveri':281 'dist':309 'distinct':218 'distribut':869,1035,1073 'dockerfil':266 'document':93,367,398,546,777,859,862,865,870,885,1045,1270,1419,1444,1450 'domain':387,622,627,806,1184 'domain/feature':618 'dto':813 'embed':1141 'encapsul':953 'end':1464 'enforc':629,1418,1427,1432 'entri':171,975,979 'environ':653,799,1077,1084,1209,1260 'environment-specif':652,798,1076,1208 'esm':1233 'essenti':1372 'etc':231,323,388,541,639,703 'evolut':1269,1457 'examin':181 'exclud':531 'exist':1002,1379 'explain':419,432 'extend':1001,1279 'extens':1267,1280 'fals':36,43,50,65,70,75,79 'featur':383,624,701,707,952,998,1304,1344,1352 'feature-specif':706 'fetch':746 'file':62,72,127,136,148,166,224,227,286,313,648,715,754,763,771,775,786,791,846,860,868,873,895,986,1026,1030,1111,1114,1145,1213,1258,1354,1373,1407 'filenam':912 'flow':1016 'flutter':28 'focus':196 'folder':1,11,68,86,123,187,365,375,482,500,524,527,535,594,605,695,913,920,935,1018,1206,1291,1346,1401 'follow':107,1340,1362 'font':336,756 'found':192 'framework':165,312,1119 'frontend':38,294,299,317 'fsproj':139 'function':829,1003 'gateway':284 'generat':4,14,67,80,523,529,534 'github':9 'global':720 'group':590,698,842,925,1122,1125 'guid':99 'guidanc':966 'handl':736 'helper':828 'hierarch':922 'hierarchi':483,501,1178 'high':344 'high-level':343 'histori':1458 'icon':337,758 'identifi':129,142,155,177,184,298,377 'imag':335 'image/media':753 'implement':821,1392 'import/reference':1019 'import/using':937 'includ':30,37,61,66,71,76,247,293,443,459,522,525,528,774,1025,1328,1375,1413,1459 'increment':1325 'indic':256,910 'infer':408 'initi':109,985 'inject':1022 'integr':738,851,1376 'inter':271 'inter-servic':270 'interact':641 'interfac':831,834,840,1390 'intern':604,864,940,1235 'item':1124 'java':23,153,1164,1171 'java-specif':1170 'javascript/typescript':160 'kebab':903 'kebab-cas':902 'key':126,543,872,981 'larg':1309 'larger':1303 'last':1473 'layer':385,631,640,743 'lerna.json':228 'level':58,242,345,486,488,504,506 'librari':288 'like':536 'lint':1439 'list':55,492,496 'local':722,1144 'locat':649,675,730,792,814,817,822,849,858,876,950,1011,1024,1056,1069,1155,1251,1259,1358 'logic':819 'look':133,162,215,302 'main':379,977 'maintain':101,1288,1425,1466 'manag':646,657,711,724,749,1152,1161,1242,1256,1262,1264,1324 'map':933 'markdown':54,491,495 'maven/gradle':1195 'messag':276 'metric':1036 'microservic':31,248,254,444,449,460,464 'mobil':182 'mock':674,857 'model':807 'model/entity':803 'modif':1010 'modul':315,540,768,1198,1229,1236,1310 'modules/features':1286 'monorepo':45,204,213,410,418,422,431,435 'multi':598,1133 'multi-assembl':1132 'multi-target':597 'multipl':217,257 'name':666,881,887,896,914,916,923,1130,1180,1359 'namespace/module':929 'namespaces/modules':932 'navig':961,968 'nest':494,1182 'net':22,143,574,580,1097,1104 'net-specif':1103 'new':997,1007,1285,1337,1343,1363,1381,1388,1398 'next.config.js':172 'node':539 'node.js':27,1217,1223 'note':188,389 'npm/yarn':1245 'nuget':1153 'nx.json':229 'obj':538 'object':812 'observ':569,891,1319 'one':530 'orchestr':243 'organ':104,326,334,362,424,437,458,468,586,595,603,610,613,619,632,661,670,693,716,727,733,741,752,759,761,766,825,844,866,883,939,959,1044,1051,1061,1071,1089,1094,1112,1123,1128,1140,1150,1158,1194,1199,1204,1214,1230,1234,1244,1408,1412 'organiz':380,889,945 'output':1043,1050,1065,1068,1070 'overal':369 'overview':340,346 'packag':1074,1151,1156,1159,1177,1179,1187 'package.json':156 'page':316 'page/view':731 'paramet':735 'parti':1240 'pascalcas':900 'path':516 'pattern':73,239,274,392,554,571,596,601,607,630,644,697,725,747,769,773,776,779,802,850,897,908,915,924,930,946,1013,1020,1072,1107,1117,1126,1131,1138,1143,1174,1191,1197,1202,1226,1237,1248,1292,1297,1315,1327,1360,1397 'per':1031 'phase':113 'pipelin':1060 'place':789,1006 'placement':772,830,853,863,1393 'plugin':1200 'plugin/extension':1290 'point':976,980,984,1281,1377 'pom.xml':149 'practic':1445 'prefix':905 'principl':363,381 'process':1048 'product':1082 'project':10,17,84,114,131,144,154,161,176,199,201,219,234,349,355,358,360,429,442,555,572,575,581,588,600,602,614,660,663,676,679,682,688,879,894,990,1095,1098,1110,1113,1162,1165,1215,1218,1273,1341,1422 'project_folders_structure_blueprint.md':92 'projects/files':1405 'prompt':81 'properti':1121,1212 'provid':341,965,1333 'public':308,942 'pubspec.yaml':185 'purpos':517,551,651,1058 'pyproject.toml':180 'python':26,175 'rational':400 'react':24,169,678 'react-script':168 'readm':867 'record':1455 'refactor':1314,1317 'refer':235,617,1137,1157 'reflect':372 'registr':1023,1396 'registri':279 'relat':592,714,1441 'relationship':427,440 'reorgan':1326 'repeat':394 'repositori':638 'repres':498 'represent':479 'requir':1353 'requirements.txt':178 'resourc':612,751,1139,1142,1203,1205,1211,1411 'rollup':322 'root':241 'root-level':240 'rout':726,728,734 'rule':824,1440 'scalabl':1296 'scale':1301 'scan':121 'schema':815 'script':170,244,1055,1243,1246,1250,1254 'scss':328 'secret':656,1263 'section':1461 'separ':626,633,944 'serv':95 'servic':258,264,272,278,292,637,742,820,1382,1389 'service-specif':263 'settings.gradle':151 'setup.py':179 'share':237,287,704 'sheet':325 'signatur':191 'signific':548 'similar/repeated':261 'skill':7 'sln':137 'solut':585,593 'solution/project':135 'sourc':608 'source-github' 'specif':164,265,654,708,800,1078,1093,1105,1172,1210,1224 'split':1312 'start':983 'state':710,713,721,723 'state-rel':712 'statement':938 'static':310,332,750,1147 'statist':1029 'store':717 'strategi':699,951,1086,1313 'structur':2,12,87,124,202,262,339,366,376,391,403,456,466,566,582,606,664,689,696,718,744,755,764,936,974,1066,1075,1106,1115,1146,1173,1196,1207,1225,1274,1295,1300,1321,1331,1347,1367,1380,1384,1400,1402,1417,1423,1428,1433,1437,1443,1447,1456 'style':52,324,330,473,490,508,760,767 'styled-compon':329 'suffix':907 'tabl':56,509,512 'target':599,1118 'task':993,1063 'technic':1186 'technolog':190,563,1092 'technology-specif':1091 'templat':77,1329,1332,1334,1345,1365,1383,1409,1414 'test':659,662,667,671,845,848,852,854,1008,1399,1404,1406,1410 'theme':765 'third':1239 'third-parti':1238 'throughout':395 'tool':1193,1253 'tools/scripts':1430 'transfer':811 'tree':478 'true':35,42,49,64,69,74,78 'turborepo.json':230 'type':18,115,132,200,350,356,359,519,556,573,576,677,680,683,702,784,795,874,909,921,1096,1099,1163,1166,1216,1219,1355 'typic':1370 'ui':311,687 'understand':988 'unit':847 'updat':1474 'usag':570 'use':105,493 'util':290,826,855,1249 'valid':1429 'variabl':16,1261 'variant':1088 'vbproj':140 'version':195,1160 'visibl':1188 'visual':51,471,472,489,507 'vite':321 'vs':705,941,1081,1185,1232 'web':304,1148 'webpack':320 'work':970 'workflow':964 'workspac':225 'wwwroot':307","prices":[{"id":"145a3453-f268-4266-af45-20efca637e7b","listingId":"5eaa54f0-5082-4062-8e7e-f8c02b1d68d0","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:54.711Z"}],"sources":[{"listingId":"5eaa54f0-5082-4062-8e7e-f8c02b1d68d0","source":"github","sourceId":"github/awesome-copilot/folder-structure-blueprint-generator","sourceUrl":"https://github.com/github/awesome-copilot/tree/main/skills/folder-structure-blueprint-generator","isPrimary":false,"firstSeenAt":"2026-04-18T21:49:26.656Z","lastSeenAt":"2026-04-22T12:52:13.227Z"},{"listingId":"5eaa54f0-5082-4062-8e7e-f8c02b1d68d0","source":"skills_sh","sourceId":"github/awesome-copilot/folder-structure-blueprint-generator","sourceUrl":"https://skills.sh/github/awesome-copilot/folder-structure-blueprint-generator","isPrimary":true,"firstSeenAt":"2026-04-18T20:25:54.711Z","lastSeenAt":"2026-04-22T13:40:15.237Z"}],"details":{"listingId":"5eaa54f0-5082-4062-8e7e-f8c02b1d68d0","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"github","slug":"folder-structure-blueprint-generator","source":"skills_sh","category":"awesome-copilot","skills_sh_url":"https://skills.sh/github/awesome-copilot/folder-structure-blueprint-generator"},"updatedAt":"2026-04-22T13:40:15.237Z"}}