[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-add-excel":3,"mdc--dv4qj1-key":40,"related-org-microsoft-add-excel":1135,"related-repo-microsoft-add-excel":1331},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":35,"sourceUrl":38,"mdContent":39},"add-excel","integrate Excel Online into Power Apps","Adds Excel Online (Business) connector to a Power Apps code app. Use when reading or writing Excel workbook data from OneDrive or SharePoint.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"Excel","excel","tag",{"name":17,"slug":18,"type":15},"Integrations","integrations",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Power Apps","power-apps",564,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fpower-platform-skills","2026-07-31T05:54:44.030943",null,114,[29,30,31,32,22,33,34],"claude-code-plugin","claude-code-skills","code-apps","github-copilot-plugin","power-pages","power-platform",{"repoUrl":24,"stars":23,"forks":27,"topics":36,"description":37},[29,30,31,32,22,33,34],"A plugin marketplace for Claude Code\u002FGitHub Copilot that provides Power Platform development plugins, including reusable skills, agents, and commands for building and deploying solutions.","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fpower-platform-skills\u002Ftree\u002FHEAD\u002Fplugins\u002Fcode-apps\u002Fskills\u002Fadd-excel","---\nname: add-excel\ndescription: Adds Excel Online (Business) connector to a Power Apps code app. Use when reading or writing Excel workbook data from OneDrive or SharePoint.\nuser-invocable: true\nallowed-tools: Read, Edit, Write, Grep, Glob, Bash, LSP, TaskCreate, TaskUpdate, TaskList, TaskGet, AskUserQuestion, Skill\nmodel: sonnet\n---\n\n**📋 Shared Instructions: [shared-instructions.md](${PLUGIN_ROOT}\u002Fshared\u002Fshared-instructions.md)** - Cross-cutting concerns.\n\n# Add Excel Online\n\n## Workflow\n\n1. Check Memory Bank → 2. Gather → 3. Add Connector → 4. Configure → 5. Build → 6. Update Memory Bank\n\n---\n\n### Step 1: Check Memory Bank\n\nCheck for `memory-bank.md` per [shared-instructions.md](${PLUGIN_ROOT}\u002Fshared\u002Fshared-instructions.md).\n\n### Step 2: Gather\n\nAsk the user:\n\n1. Where is the workbook? (OneDrive or SharePoint)\n2. Workbook file name\n3. Which table(s) in the workbook to access\n\n### Step 3: Add Connector\n\n**First, find the connection ID** (see [connector-reference.md](${PLUGIN_ROOT}\u002Fshared\u002Fconnector-reference.md)):\n\nRun the `\u002Flist-connections` skill. Find the Excel Online (Business) connection in the output. If none exists, direct the user to create one using the environment-specific Connections URL — construct it from the active environment ID in context (from `power.config.json` or a prior step): `https:\u002F\u002Fmake.powerapps.com\u002Fenvironments\u002F\u003Cenvironment-id>\u002Fconnections` → **+ New connection** → search for the connector → Create.\n\nExcel Online is a tabular datasource -- requires `-c` (connection ID), `-d` (drive), and `--table` (table name in workbook):\n\n```bash\n# OneDrive workbook\npa app add data-source --connector excelonlinebusiness -c \u003Cconnection-id> -d 'me' --table 'Table1'\n\n# SharePoint workbook -- dataset is the document library path\npa app add data-source --connector excelonlinebusiness -c \u003Cconnection-id> -d 'sites\u002Fyour-site' --table 'Table1'\n```\n\nRun for each table the user needs.\n\n### Step 4: Configure\n\n**AddRowIntoTable** -- adds a row to an Excel table:\n\n```typescript\n\u002F\u002F OneDrive workbook\nawait ExcelOnlineBusinessService.AddRowIntoTable({\n  source: \"me\",\n  drive: \"me\",\n  file: \"MyWorkbook.xlsx\",\n  table: \"Table1\",\n  body: { column1: \"value1\", column2: \"value2\" } \u002F\u002F Flat object, NO \"items\" wrapper\n});\n\n\u002F\u002F SharePoint workbook\nawait ExcelOnlineBusinessService.AddRowIntoTable({\n  source: \"sites\u002Fyour-site\",\n  drive: \"drive-id\",\n  file: \"SharedWorkbook.xlsx\",\n  table: \"Table1\",\n  body: { column1: \"value1\", column2: \"value2\" }\n});\n```\n\n**Key points:**\n\n- `source: \"me\"` and `drive: \"me\"` for OneDrive personal files\n- For SharePoint, use the site path and drive ID\n- The `body` is a flat key-value object matching column headers -- do NOT wrap in `{ items: ... }`\n\nUse `Grep` to find specific methods in `src\u002Fgenerated\u002Fservices\u002FExcelOnlineBusinessService.ts` (generated files can be very large -- see [connector-reference.md](${PLUGIN_ROOT}\u002Fshared\u002Fconnector-reference.md#inspecting-large-generated-files)).\n\n### Step 5: Build\n\n```bash\nnpm run build\n```\n\nFix TypeScript errors before proceeding. Do NOT deploy yet.\n\n### Step 6: Update Memory Bank\n\nUpdate `memory-bank.md` with: connector added, workbook\u002Ftable configured, build status.\n",{"data":41,"body":45},{"name":4,"description":6,"user-invocable":42,"allowed-tools":43,"model":44},true,"Read, Edit, Write, Grep, Glob, Bash, LSP, TaskCreate, TaskUpdate, TaskList, TaskGet, AskUserQuestion, Skill","sonnet",{"type":46,"children":47},"root",[48,69,76,83,93,97,104,124,130,135,153,159,177,213,242,466,471,477,487,992,1000,1047,1075,1081,1106,1111,1117,1129],{"type":49,"tag":50,"props":51,"children":52},"element","p",{},[53,67],{"type":49,"tag":54,"props":55,"children":56},"strong",{},[57,60],{"type":58,"value":59},"text","📋 Shared Instructions: ",{"type":49,"tag":61,"props":62,"children":64},"a",{"href":63},"$%7BPLUGIN_ROOT%7D\u002Fshared\u002Fshared-instructions.md",[65],{"type":58,"value":66},"shared-instructions.md",{"type":58,"value":68}," - Cross-cutting concerns.",{"type":49,"tag":70,"props":71,"children":73},"h1",{"id":72},"add-excel-online",[74],{"type":58,"value":75},"Add Excel Online",{"type":49,"tag":77,"props":78,"children":80},"h2",{"id":79},"workflow",[81],{"type":58,"value":82},"Workflow",{"type":49,"tag":84,"props":85,"children":86},"ol",{},[87],{"type":49,"tag":88,"props":89,"children":90},"li",{},[91],{"type":58,"value":92},"Check Memory Bank → 2. Gather → 3. Add Connector → 4. Configure → 5. Build → 6. Update Memory Bank",{"type":49,"tag":94,"props":95,"children":96},"hr",{},[],{"type":49,"tag":98,"props":99,"children":101},"h3",{"id":100},"step-1-check-memory-bank",[102],{"type":58,"value":103},"Step 1: Check Memory Bank",{"type":49,"tag":50,"props":105,"children":106},{},[107,109,116,118,122],{"type":58,"value":108},"Check for ",{"type":49,"tag":110,"props":111,"children":113},"code",{"className":112},[],[114],{"type":58,"value":115},"memory-bank.md",{"type":58,"value":117}," per ",{"type":49,"tag":61,"props":119,"children":120},{"href":63},[121],{"type":58,"value":66},{"type":58,"value":123},".",{"type":49,"tag":98,"props":125,"children":127},{"id":126},"step-2-gather",[128],{"type":58,"value":129},"Step 2: Gather",{"type":49,"tag":50,"props":131,"children":132},{},[133],{"type":58,"value":134},"Ask the user:",{"type":49,"tag":84,"props":136,"children":137},{},[138,143,148],{"type":49,"tag":88,"props":139,"children":140},{},[141],{"type":58,"value":142},"Where is the workbook? (OneDrive or SharePoint)",{"type":49,"tag":88,"props":144,"children":145},{},[146],{"type":58,"value":147},"Workbook file name",{"type":49,"tag":88,"props":149,"children":150},{},[151],{"type":58,"value":152},"Which table(s) in the workbook to access",{"type":49,"tag":98,"props":154,"children":156},{"id":155},"step-3-add-connector",[157],{"type":58,"value":158},"Step 3: Add Connector",{"type":49,"tag":50,"props":160,"children":161},{},[162,167,169,175],{"type":49,"tag":54,"props":163,"children":164},{},[165],{"type":58,"value":166},"First, find the connection ID",{"type":58,"value":168}," (see ",{"type":49,"tag":61,"props":170,"children":172},{"href":171},"$%7BPLUGIN_ROOT%7D\u002Fshared\u002Fconnector-reference.md",[173],{"type":58,"value":174},"connector-reference.md",{"type":58,"value":176},"):",{"type":49,"tag":50,"props":178,"children":179},{},[180,182,188,190,196,198,204,206,211],{"type":58,"value":181},"Run the ",{"type":49,"tag":110,"props":183,"children":185},{"className":184},[],[186],{"type":58,"value":187},"\u002Flist-connections",{"type":58,"value":189}," skill. Find the Excel Online (Business) connection in the output. If none exists, direct the user to create one using the environment-specific Connections URL — construct it from the active environment ID in context (from ",{"type":49,"tag":110,"props":191,"children":193},{"className":192},[],[194],{"type":58,"value":195},"power.config.json",{"type":58,"value":197}," or a prior step): ",{"type":49,"tag":110,"props":199,"children":201},{"className":200},[],[202],{"type":58,"value":203},"https:\u002F\u002Fmake.powerapps.com\u002Fenvironments\u002F\u003Cenvironment-id>\u002Fconnections",{"type":58,"value":205}," → ",{"type":49,"tag":54,"props":207,"children":208},{},[209],{"type":58,"value":210},"+ New connection",{"type":58,"value":212}," → search for the connector → Create.",{"type":49,"tag":50,"props":214,"children":215},{},[216,218,224,226,232,234,240],{"type":58,"value":217},"Excel Online is a tabular datasource -- requires ",{"type":49,"tag":110,"props":219,"children":221},{"className":220},[],[222],{"type":58,"value":223},"-c",{"type":58,"value":225}," (connection ID), ",{"type":49,"tag":110,"props":227,"children":229},{"className":228},[],[230],{"type":58,"value":231},"-d",{"type":58,"value":233}," (drive), and ",{"type":49,"tag":110,"props":235,"children":237},{"className":236},[],[238],{"type":58,"value":239},"--table",{"type":58,"value":241}," (table name in workbook):",{"type":49,"tag":243,"props":244,"children":249},"pre",{"className":245,"code":246,"language":247,"meta":248,"style":248},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# OneDrive workbook\npa app add data-source --connector excelonlinebusiness -c \u003Cconnection-id> -d 'me' --table 'Table1'\n\n# SharePoint workbook -- dataset is the document library path\npa app add data-source --connector excelonlinebusiness -c \u003Cconnection-id> -d 'sites\u002Fyour-site' --table 'Table1'\n","bash","",[250],{"type":49,"tag":110,"props":251,"children":252},{"__ignoreMap":248},[253,265,367,376,385],{"type":49,"tag":254,"props":255,"children":258},"span",{"class":256,"line":257},"line",1,[259],{"type":49,"tag":254,"props":260,"children":262},{"style":261},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[263],{"type":58,"value":264},"# OneDrive workbook\n",{"type":49,"tag":254,"props":266,"children":268},{"class":256,"line":267},2,[269,275,281,286,291,296,301,306,312,317,323,328,333,338,343,348,353,357,362],{"type":49,"tag":254,"props":270,"children":272},{"style":271},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[273],{"type":58,"value":274},"pa",{"type":49,"tag":254,"props":276,"children":278},{"style":277},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[279],{"type":58,"value":280}," app",{"type":49,"tag":254,"props":282,"children":283},{"style":277},[284],{"type":58,"value":285}," add",{"type":49,"tag":254,"props":287,"children":288},{"style":277},[289],{"type":58,"value":290}," data-source",{"type":49,"tag":254,"props":292,"children":293},{"style":277},[294],{"type":58,"value":295}," --connector",{"type":49,"tag":254,"props":297,"children":298},{"style":277},[299],{"type":58,"value":300}," excelonlinebusiness",{"type":49,"tag":254,"props":302,"children":303},{"style":277},[304],{"type":58,"value":305}," -c",{"type":49,"tag":254,"props":307,"children":309},{"style":308},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[310],{"type":58,"value":311}," \u003C",{"type":49,"tag":254,"props":313,"children":314},{"style":277},[315],{"type":58,"value":316},"connection-i",{"type":49,"tag":254,"props":318,"children":320},{"style":319},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[321],{"type":58,"value":322},"d",{"type":49,"tag":254,"props":324,"children":325},{"style":308},[326],{"type":58,"value":327},">",{"type":49,"tag":254,"props":329,"children":330},{"style":277},[331],{"type":58,"value":332}," -d",{"type":49,"tag":254,"props":334,"children":335},{"style":308},[336],{"type":58,"value":337}," '",{"type":49,"tag":254,"props":339,"children":340},{"style":277},[341],{"type":58,"value":342},"me",{"type":49,"tag":254,"props":344,"children":345},{"style":308},[346],{"type":58,"value":347},"'",{"type":49,"tag":254,"props":349,"children":350},{"style":277},[351],{"type":58,"value":352}," --table",{"type":49,"tag":254,"props":354,"children":355},{"style":308},[356],{"type":58,"value":337},{"type":49,"tag":254,"props":358,"children":359},{"style":277},[360],{"type":58,"value":361},"Table1",{"type":49,"tag":254,"props":363,"children":364},{"style":308},[365],{"type":58,"value":366},"'\n",{"type":49,"tag":254,"props":368,"children":370},{"class":256,"line":369},3,[371],{"type":49,"tag":254,"props":372,"children":373},{"emptyLinePlaceholder":42},[374],{"type":58,"value":375},"\n",{"type":49,"tag":254,"props":377,"children":379},{"class":256,"line":378},4,[380],{"type":49,"tag":254,"props":381,"children":382},{"style":261},[383],{"type":58,"value":384},"# SharePoint workbook -- dataset is the document library path\n",{"type":49,"tag":254,"props":386,"children":388},{"class":256,"line":387},5,[389,393,397,401,405,409,413,417,421,425,429,433,437,441,446,450,454,458,462],{"type":49,"tag":254,"props":390,"children":391},{"style":271},[392],{"type":58,"value":274},{"type":49,"tag":254,"props":394,"children":395},{"style":277},[396],{"type":58,"value":280},{"type":49,"tag":254,"props":398,"children":399},{"style":277},[400],{"type":58,"value":285},{"type":49,"tag":254,"props":402,"children":403},{"style":277},[404],{"type":58,"value":290},{"type":49,"tag":254,"props":406,"children":407},{"style":277},[408],{"type":58,"value":295},{"type":49,"tag":254,"props":410,"children":411},{"style":277},[412],{"type":58,"value":300},{"type":49,"tag":254,"props":414,"children":415},{"style":277},[416],{"type":58,"value":305},{"type":49,"tag":254,"props":418,"children":419},{"style":308},[420],{"type":58,"value":311},{"type":49,"tag":254,"props":422,"children":423},{"style":277},[424],{"type":58,"value":316},{"type":49,"tag":254,"props":426,"children":427},{"style":319},[428],{"type":58,"value":322},{"type":49,"tag":254,"props":430,"children":431},{"style":308},[432],{"type":58,"value":327},{"type":49,"tag":254,"props":434,"children":435},{"style":277},[436],{"type":58,"value":332},{"type":49,"tag":254,"props":438,"children":439},{"style":308},[440],{"type":58,"value":337},{"type":49,"tag":254,"props":442,"children":443},{"style":277},[444],{"type":58,"value":445},"sites\u002Fyour-site",{"type":49,"tag":254,"props":447,"children":448},{"style":308},[449],{"type":58,"value":347},{"type":49,"tag":254,"props":451,"children":452},{"style":277},[453],{"type":58,"value":352},{"type":49,"tag":254,"props":455,"children":456},{"style":308},[457],{"type":58,"value":337},{"type":49,"tag":254,"props":459,"children":460},{"style":277},[461],{"type":58,"value":361},{"type":49,"tag":254,"props":463,"children":464},{"style":308},[465],{"type":58,"value":366},{"type":49,"tag":50,"props":467,"children":468},{},[469],{"type":58,"value":470},"Run for each table the user needs.",{"type":49,"tag":98,"props":472,"children":474},{"id":473},"step-4-configure",[475],{"type":58,"value":476},"Step 4: Configure",{"type":49,"tag":50,"props":478,"children":479},{},[480,485],{"type":49,"tag":54,"props":481,"children":482},{},[483],{"type":58,"value":484},"AddRowIntoTable",{"type":58,"value":486}," -- adds a row to an Excel table:",{"type":49,"tag":243,"props":488,"children":492},{"className":489,"code":490,"language":491,"meta":248,"style":248},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F OneDrive workbook\nawait ExcelOnlineBusinessService.AddRowIntoTable({\n  source: \"me\",\n  drive: \"me\",\n  file: \"MyWorkbook.xlsx\",\n  table: \"Table1\",\n  body: { column1: \"value1\", column2: \"value2\" } \u002F\u002F Flat object, NO \"items\" wrapper\n});\n\n\u002F\u002F SharePoint workbook\nawait ExcelOnlineBusinessService.AddRowIntoTable({\n  source: \"sites\u002Fyour-site\",\n  drive: \"drive-id\",\n  file: \"SharedWorkbook.xlsx\",\n  table: \"Table1\",\n  body: { column1: \"value1\", column2: \"value2\" }\n});\n","typescript",[493],{"type":49,"tag":110,"props":494,"children":495},{"__ignoreMap":248},[496,504,537,570,598,627,656,733,752,760,769,797,825,854,883,911,976],{"type":49,"tag":254,"props":497,"children":498},{"class":256,"line":257},[499],{"type":49,"tag":254,"props":500,"children":501},{"style":261},[502],{"type":58,"value":503},"\u002F\u002F OneDrive workbook\n",{"type":49,"tag":254,"props":505,"children":506},{"class":256,"line":267},[507,513,518,522,527,532],{"type":49,"tag":254,"props":508,"children":510},{"style":509},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[511],{"type":58,"value":512},"await",{"type":49,"tag":254,"props":514,"children":515},{"style":319},[516],{"type":58,"value":517}," ExcelOnlineBusinessService",{"type":49,"tag":254,"props":519,"children":520},{"style":308},[521],{"type":58,"value":123},{"type":49,"tag":254,"props":523,"children":525},{"style":524},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[526],{"type":58,"value":484},{"type":49,"tag":254,"props":528,"children":529},{"style":319},[530],{"type":58,"value":531},"(",{"type":49,"tag":254,"props":533,"children":534},{"style":308},[535],{"type":58,"value":536},"{\n",{"type":49,"tag":254,"props":538,"children":539},{"class":256,"line":369},[540,546,551,556,560,565],{"type":49,"tag":254,"props":541,"children":543},{"style":542},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[544],{"type":58,"value":545},"  source",{"type":49,"tag":254,"props":547,"children":548},{"style":308},[549],{"type":58,"value":550},":",{"type":49,"tag":254,"props":552,"children":553},{"style":308},[554],{"type":58,"value":555}," \"",{"type":49,"tag":254,"props":557,"children":558},{"style":277},[559],{"type":58,"value":342},{"type":49,"tag":254,"props":561,"children":562},{"style":308},[563],{"type":58,"value":564},"\"",{"type":49,"tag":254,"props":566,"children":567},{"style":308},[568],{"type":58,"value":569},",\n",{"type":49,"tag":254,"props":571,"children":572},{"class":256,"line":378},[573,578,582,586,590,594],{"type":49,"tag":254,"props":574,"children":575},{"style":542},[576],{"type":58,"value":577},"  drive",{"type":49,"tag":254,"props":579,"children":580},{"style":308},[581],{"type":58,"value":550},{"type":49,"tag":254,"props":583,"children":584},{"style":308},[585],{"type":58,"value":555},{"type":49,"tag":254,"props":587,"children":588},{"style":277},[589],{"type":58,"value":342},{"type":49,"tag":254,"props":591,"children":592},{"style":308},[593],{"type":58,"value":564},{"type":49,"tag":254,"props":595,"children":596},{"style":308},[597],{"type":58,"value":569},{"type":49,"tag":254,"props":599,"children":600},{"class":256,"line":387},[601,606,610,614,619,623],{"type":49,"tag":254,"props":602,"children":603},{"style":542},[604],{"type":58,"value":605},"  file",{"type":49,"tag":254,"props":607,"children":608},{"style":308},[609],{"type":58,"value":550},{"type":49,"tag":254,"props":611,"children":612},{"style":308},[613],{"type":58,"value":555},{"type":49,"tag":254,"props":615,"children":616},{"style":277},[617],{"type":58,"value":618},"MyWorkbook.xlsx",{"type":49,"tag":254,"props":620,"children":621},{"style":308},[622],{"type":58,"value":564},{"type":49,"tag":254,"props":624,"children":625},{"style":308},[626],{"type":58,"value":569},{"type":49,"tag":254,"props":628,"children":630},{"class":256,"line":629},6,[631,636,640,644,648,652],{"type":49,"tag":254,"props":632,"children":633},{"style":542},[634],{"type":58,"value":635},"  table",{"type":49,"tag":254,"props":637,"children":638},{"style":308},[639],{"type":58,"value":550},{"type":49,"tag":254,"props":641,"children":642},{"style":308},[643],{"type":58,"value":555},{"type":49,"tag":254,"props":645,"children":646},{"style":277},[647],{"type":58,"value":361},{"type":49,"tag":254,"props":649,"children":650},{"style":308},[651],{"type":58,"value":564},{"type":49,"tag":254,"props":653,"children":654},{"style":308},[655],{"type":58,"value":569},{"type":49,"tag":254,"props":657,"children":659},{"class":256,"line":658},7,[660,665,669,674,679,683,687,692,696,701,706,710,714,719,723,728],{"type":49,"tag":254,"props":661,"children":662},{"style":542},[663],{"type":58,"value":664},"  body",{"type":49,"tag":254,"props":666,"children":667},{"style":308},[668],{"type":58,"value":550},{"type":49,"tag":254,"props":670,"children":671},{"style":308},[672],{"type":58,"value":673}," {",{"type":49,"tag":254,"props":675,"children":676},{"style":542},[677],{"type":58,"value":678}," column1",{"type":49,"tag":254,"props":680,"children":681},{"style":308},[682],{"type":58,"value":550},{"type":49,"tag":254,"props":684,"children":685},{"style":308},[686],{"type":58,"value":555},{"type":49,"tag":254,"props":688,"children":689},{"style":277},[690],{"type":58,"value":691},"value1",{"type":49,"tag":254,"props":693,"children":694},{"style":308},[695],{"type":58,"value":564},{"type":49,"tag":254,"props":697,"children":698},{"style":308},[699],{"type":58,"value":700},",",{"type":49,"tag":254,"props":702,"children":703},{"style":542},[704],{"type":58,"value":705}," column2",{"type":49,"tag":254,"props":707,"children":708},{"style":308},[709],{"type":58,"value":550},{"type":49,"tag":254,"props":711,"children":712},{"style":308},[713],{"type":58,"value":555},{"type":49,"tag":254,"props":715,"children":716},{"style":277},[717],{"type":58,"value":718},"value2",{"type":49,"tag":254,"props":720,"children":721},{"style":308},[722],{"type":58,"value":564},{"type":49,"tag":254,"props":724,"children":725},{"style":308},[726],{"type":58,"value":727}," }",{"type":49,"tag":254,"props":729,"children":730},{"style":261},[731],{"type":58,"value":732}," \u002F\u002F Flat object, NO \"items\" wrapper\n",{"type":49,"tag":254,"props":734,"children":736},{"class":256,"line":735},8,[737,742,747],{"type":49,"tag":254,"props":738,"children":739},{"style":308},[740],{"type":58,"value":741},"}",{"type":49,"tag":254,"props":743,"children":744},{"style":319},[745],{"type":58,"value":746},")",{"type":49,"tag":254,"props":748,"children":749},{"style":308},[750],{"type":58,"value":751},";\n",{"type":49,"tag":254,"props":753,"children":755},{"class":256,"line":754},9,[756],{"type":49,"tag":254,"props":757,"children":758},{"emptyLinePlaceholder":42},[759],{"type":58,"value":375},{"type":49,"tag":254,"props":761,"children":763},{"class":256,"line":762},10,[764],{"type":49,"tag":254,"props":765,"children":766},{"style":261},[767],{"type":58,"value":768},"\u002F\u002F SharePoint workbook\n",{"type":49,"tag":254,"props":770,"children":772},{"class":256,"line":771},11,[773,777,781,785,789,793],{"type":49,"tag":254,"props":774,"children":775},{"style":509},[776],{"type":58,"value":512},{"type":49,"tag":254,"props":778,"children":779},{"style":319},[780],{"type":58,"value":517},{"type":49,"tag":254,"props":782,"children":783},{"style":308},[784],{"type":58,"value":123},{"type":49,"tag":254,"props":786,"children":787},{"style":524},[788],{"type":58,"value":484},{"type":49,"tag":254,"props":790,"children":791},{"style":319},[792],{"type":58,"value":531},{"type":49,"tag":254,"props":794,"children":795},{"style":308},[796],{"type":58,"value":536},{"type":49,"tag":254,"props":798,"children":800},{"class":256,"line":799},12,[801,805,809,813,817,821],{"type":49,"tag":254,"props":802,"children":803},{"style":542},[804],{"type":58,"value":545},{"type":49,"tag":254,"props":806,"children":807},{"style":308},[808],{"type":58,"value":550},{"type":49,"tag":254,"props":810,"children":811},{"style":308},[812],{"type":58,"value":555},{"type":49,"tag":254,"props":814,"children":815},{"style":277},[816],{"type":58,"value":445},{"type":49,"tag":254,"props":818,"children":819},{"style":308},[820],{"type":58,"value":564},{"type":49,"tag":254,"props":822,"children":823},{"style":308},[824],{"type":58,"value":569},{"type":49,"tag":254,"props":826,"children":828},{"class":256,"line":827},13,[829,833,837,841,846,850],{"type":49,"tag":254,"props":830,"children":831},{"style":542},[832],{"type":58,"value":577},{"type":49,"tag":254,"props":834,"children":835},{"style":308},[836],{"type":58,"value":550},{"type":49,"tag":254,"props":838,"children":839},{"style":308},[840],{"type":58,"value":555},{"type":49,"tag":254,"props":842,"children":843},{"style":277},[844],{"type":58,"value":845},"drive-id",{"type":49,"tag":254,"props":847,"children":848},{"style":308},[849],{"type":58,"value":564},{"type":49,"tag":254,"props":851,"children":852},{"style":308},[853],{"type":58,"value":569},{"type":49,"tag":254,"props":855,"children":857},{"class":256,"line":856},14,[858,862,866,870,875,879],{"type":49,"tag":254,"props":859,"children":860},{"style":542},[861],{"type":58,"value":605},{"type":49,"tag":254,"props":863,"children":864},{"style":308},[865],{"type":58,"value":550},{"type":49,"tag":254,"props":867,"children":868},{"style":308},[869],{"type":58,"value":555},{"type":49,"tag":254,"props":871,"children":872},{"style":277},[873],{"type":58,"value":874},"SharedWorkbook.xlsx",{"type":49,"tag":254,"props":876,"children":877},{"style":308},[878],{"type":58,"value":564},{"type":49,"tag":254,"props":880,"children":881},{"style":308},[882],{"type":58,"value":569},{"type":49,"tag":254,"props":884,"children":886},{"class":256,"line":885},15,[887,891,895,899,903,907],{"type":49,"tag":254,"props":888,"children":889},{"style":542},[890],{"type":58,"value":635},{"type":49,"tag":254,"props":892,"children":893},{"style":308},[894],{"type":58,"value":550},{"type":49,"tag":254,"props":896,"children":897},{"style":308},[898],{"type":58,"value":555},{"type":49,"tag":254,"props":900,"children":901},{"style":277},[902],{"type":58,"value":361},{"type":49,"tag":254,"props":904,"children":905},{"style":308},[906],{"type":58,"value":564},{"type":49,"tag":254,"props":908,"children":909},{"style":308},[910],{"type":58,"value":569},{"type":49,"tag":254,"props":912,"children":914},{"class":256,"line":913},16,[915,919,923,927,931,935,939,943,947,951,955,959,963,967,971],{"type":49,"tag":254,"props":916,"children":917},{"style":542},[918],{"type":58,"value":664},{"type":49,"tag":254,"props":920,"children":921},{"style":308},[922],{"type":58,"value":550},{"type":49,"tag":254,"props":924,"children":925},{"style":308},[926],{"type":58,"value":673},{"type":49,"tag":254,"props":928,"children":929},{"style":542},[930],{"type":58,"value":678},{"type":49,"tag":254,"props":932,"children":933},{"style":308},[934],{"type":58,"value":550},{"type":49,"tag":254,"props":936,"children":937},{"style":308},[938],{"type":58,"value":555},{"type":49,"tag":254,"props":940,"children":941},{"style":277},[942],{"type":58,"value":691},{"type":49,"tag":254,"props":944,"children":945},{"style":308},[946],{"type":58,"value":564},{"type":49,"tag":254,"props":948,"children":949},{"style":308},[950],{"type":58,"value":700},{"type":49,"tag":254,"props":952,"children":953},{"style":542},[954],{"type":58,"value":705},{"type":49,"tag":254,"props":956,"children":957},{"style":308},[958],{"type":58,"value":550},{"type":49,"tag":254,"props":960,"children":961},{"style":308},[962],{"type":58,"value":555},{"type":49,"tag":254,"props":964,"children":965},{"style":277},[966],{"type":58,"value":718},{"type":49,"tag":254,"props":968,"children":969},{"style":308},[970],{"type":58,"value":564},{"type":49,"tag":254,"props":972,"children":973},{"style":308},[974],{"type":58,"value":975}," }\n",{"type":49,"tag":254,"props":977,"children":979},{"class":256,"line":978},17,[980,984,988],{"type":49,"tag":254,"props":981,"children":982},{"style":308},[983],{"type":58,"value":741},{"type":49,"tag":254,"props":985,"children":986},{"style":319},[987],{"type":58,"value":746},{"type":49,"tag":254,"props":989,"children":990},{"style":308},[991],{"type":58,"value":751},{"type":49,"tag":50,"props":993,"children":994},{},[995],{"type":49,"tag":54,"props":996,"children":997},{},[998],{"type":58,"value":999},"Key points:",{"type":49,"tag":1001,"props":1002,"children":1003},"ul",{},[1004,1023,1028],{"type":49,"tag":88,"props":1005,"children":1006},{},[1007,1013,1015,1021],{"type":49,"tag":110,"props":1008,"children":1010},{"className":1009},[],[1011],{"type":58,"value":1012},"source: \"me\"",{"type":58,"value":1014}," and ",{"type":49,"tag":110,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":58,"value":1020},"drive: \"me\"",{"type":58,"value":1022}," for OneDrive personal files",{"type":49,"tag":88,"props":1024,"children":1025},{},[1026],{"type":58,"value":1027},"For SharePoint, use the site path and drive ID",{"type":49,"tag":88,"props":1029,"children":1030},{},[1031,1033,1039,1041],{"type":58,"value":1032},"The ",{"type":49,"tag":110,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":58,"value":1038},"body",{"type":58,"value":1040}," is a flat key-value object matching column headers -- do NOT wrap in ",{"type":49,"tag":110,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":58,"value":1046},"{ items: ... }",{"type":49,"tag":50,"props":1048,"children":1049},{},[1050,1052,1058,1060,1066,1068,1073],{"type":58,"value":1051},"Use ",{"type":49,"tag":110,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":58,"value":1057},"Grep",{"type":58,"value":1059}," to find specific methods in ",{"type":49,"tag":110,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":58,"value":1065},"src\u002Fgenerated\u002Fservices\u002FExcelOnlineBusinessService.ts",{"type":58,"value":1067}," (generated files can be very large -- see ",{"type":49,"tag":61,"props":1069,"children":1071},{"href":1070},"$%7BPLUGIN_ROOT%7D\u002Fshared\u002Fconnector-reference.md#inspecting-large-generated-files",[1072],{"type":58,"value":174},{"type":58,"value":1074},").",{"type":49,"tag":98,"props":1076,"children":1078},{"id":1077},"step-5-build",[1079],{"type":58,"value":1080},"Step 5: Build",{"type":49,"tag":243,"props":1082,"children":1084},{"className":245,"code":1083,"language":247,"meta":248,"style":248},"npm run build\n",[1085],{"type":49,"tag":110,"props":1086,"children":1087},{"__ignoreMap":248},[1088],{"type":49,"tag":254,"props":1089,"children":1090},{"class":256,"line":257},[1091,1096,1101],{"type":49,"tag":254,"props":1092,"children":1093},{"style":271},[1094],{"type":58,"value":1095},"npm",{"type":49,"tag":254,"props":1097,"children":1098},{"style":277},[1099],{"type":58,"value":1100}," run",{"type":49,"tag":254,"props":1102,"children":1103},{"style":277},[1104],{"type":58,"value":1105}," build\n",{"type":49,"tag":50,"props":1107,"children":1108},{},[1109],{"type":58,"value":1110},"Fix TypeScript errors before proceeding. Do NOT deploy yet.",{"type":49,"tag":98,"props":1112,"children":1114},{"id":1113},"step-6-update-memory-bank",[1115],{"type":58,"value":1116},"Step 6: Update Memory Bank",{"type":49,"tag":50,"props":1118,"children":1119},{},[1120,1122,1127],{"type":58,"value":1121},"Update ",{"type":49,"tag":110,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":58,"value":115},{"type":58,"value":1128}," with: connector added, workbook\u002Ftable configured, build status.",{"type":49,"tag":1130,"props":1131,"children":1132},"style",{},[1133],{"type":58,"value":1134},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1136,"total":1330},[1137,1159,1180,1201,1216,1233,1244,1257,1272,1287,1306,1318],{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1141,"tags":1142,"stars":1156,"repoUrl":1157,"updatedAt":1158},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1143,1146,1149,1150,1153],{"name":1144,"slug":1145,"type":15},"Engineering","engineering",{"name":1147,"slug":1148,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":1151,"slug":1152,"type":15},"Project Management","project-management",{"name":1154,"slug":1155,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":1160,"name":1160,"fn":1161,"description":1162,"org":1163,"tags":1164,"stars":1177,"repoUrl":1178,"updatedAt":1179},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1165,1168,1171,1174],{"name":1166,"slug":1167,"type":15},".NET","net",{"name":1169,"slug":1170,"type":15},"Agents","agents",{"name":1172,"slug":1173,"type":15},"Azure","azure",{"name":1175,"slug":1176,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":1181,"name":1181,"fn":1182,"description":1183,"org":1184,"tags":1185,"stars":1177,"repoUrl":1178,"updatedAt":1200},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1186,1189,1190,1193,1196,1197],{"name":1187,"slug":1188,"type":15},"Analytics","analytics",{"name":1172,"slug":1173,"type":15},{"name":1191,"slug":1192,"type":15},"Data Analysis","data-analysis",{"name":1194,"slug":1195,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":1198,"slug":1199,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":1202,"name":1202,"fn":1203,"description":1204,"org":1205,"tags":1206,"stars":1177,"repoUrl":1178,"updatedAt":1215},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1207,1210,1211,1212],{"name":1208,"slug":1209,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1172,"slug":1173,"type":15},{"name":1194,"slug":1195,"type":15},{"name":1213,"slug":1214,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":1217,"name":1217,"fn":1218,"description":1219,"org":1220,"tags":1221,"stars":1177,"repoUrl":1178,"updatedAt":1232},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1222,1223,1226,1227,1228,1231],{"name":1172,"slug":1173,"type":15},{"name":1224,"slug":1225,"type":15},"Compliance","compliance",{"name":1175,"slug":1176,"type":15},{"name":9,"slug":8,"type":15},{"name":1229,"slug":1230,"type":15},"Python","python",{"name":1213,"slug":1214,"type":15},"2026-07-18T05:14:23.017504",{"slug":1234,"name":1234,"fn":1235,"description":1236,"org":1237,"tags":1238,"stars":1177,"repoUrl":1178,"updatedAt":1243},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1239,1240,1241,1242],{"name":1187,"slug":1188,"type":15},{"name":1172,"slug":1173,"type":15},{"name":1175,"slug":1176,"type":15},{"name":1229,"slug":1230,"type":15},"2026-07-31T05:54:29.068751",{"slug":1245,"name":1245,"fn":1246,"description":1247,"org":1248,"tags":1249,"stars":1177,"repoUrl":1178,"updatedAt":1256},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1250,1253,1254,1255],{"name":1251,"slug":1252,"type":15},"API Development","api-development",{"name":1172,"slug":1173,"type":15},{"name":9,"slug":8,"type":15},{"name":1229,"slug":1230,"type":15},"2026-07-18T05:14:16.988376",{"slug":1258,"name":1258,"fn":1259,"description":1260,"org":1261,"tags":1262,"stars":1177,"repoUrl":1178,"updatedAt":1271},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1263,1264,1267,1270],{"name":1172,"slug":1173,"type":15},{"name":1265,"slug":1266,"type":15},"Computer Vision","computer-vision",{"name":1268,"slug":1269,"type":15},"Images","images",{"name":1229,"slug":1230,"type":15},"2026-07-18T05:14:18.007737",{"slug":1273,"name":1273,"fn":1274,"description":1275,"org":1276,"tags":1277,"stars":1177,"repoUrl":1178,"updatedAt":1286},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1278,1279,1282,1285],{"name":1172,"slug":1173,"type":15},{"name":1280,"slug":1281,"type":15},"Configuration","configuration",{"name":1283,"slug":1284,"type":15},"Feature Flags","feature-flags",{"name":1194,"slug":1195,"type":15},"2026-07-03T16:32:01.278468",{"slug":1288,"name":1288,"fn":1289,"description":1290,"org":1291,"tags":1292,"stars":1177,"repoUrl":1178,"updatedAt":1305},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1293,1296,1299,1302],{"name":1294,"slug":1295,"type":15},"Cosmos DB","cosmos-db",{"name":1297,"slug":1298,"type":15},"Database","database",{"name":1300,"slug":1301,"type":15},"NoSQL","nosql",{"name":1303,"slug":1304,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1307,"name":1307,"fn":1289,"description":1308,"org":1309,"tags":1310,"stars":1177,"repoUrl":1178,"updatedAt":1317},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1311,1312,1313,1314,1315],{"name":1294,"slug":1295,"type":15},{"name":1297,"slug":1298,"type":15},{"name":9,"slug":8,"type":15},{"name":1300,"slug":1301,"type":15},{"name":1316,"slug":491,"type":15},"TypeScript","2026-07-03T16:31:19.368382",{"slug":1319,"name":1319,"fn":1320,"description":1321,"org":1322,"tags":1323,"stars":1177,"repoUrl":1178,"updatedAt":1329},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1324,1325,1326,1327,1328],{"name":1172,"slug":1173,"type":15},{"name":1294,"slug":1295,"type":15},{"name":1297,"slug":1298,"type":15},{"name":1194,"slug":1195,"type":15},{"name":1300,"slug":1301,"type":15},"2026-05-13T06:14:17.582229",267,{"items":1332,"total":1417},[1333,1346,1357,1367,1382,1389,1403],{"slug":1334,"name":1334,"fn":1335,"description":1336,"org":1337,"tags":1338,"stars":23,"repoUrl":24,"updatedAt":1345},"activate-site","provision and activate Power Pages sites","Activates and provisions a Power Pages website in a Power Platform environment via the Power Platform REST API. Use when the user wants to activate, provision, turn on, or enable a Power Pages website or portal.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1339,1342,1343],{"name":1340,"slug":1341,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":1344,"slug":33,"type":15},"Power Pages","2026-04-06T18:34:34.732549",{"slug":1347,"name":1347,"fn":1348,"description":1349,"org":1350,"tags":1351,"stars":23,"repoUrl":24,"updatedAt":1356},"add-connector","add Power Platform connectors to apps","Adds any Power Platform connector to a Power Apps code app. Generic fallback for connectors not covered by a specific skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1352,1353,1354],{"name":17,"slug":18,"type":15},{"name":21,"slug":22,"type":15},{"name":1355,"slug":34,"type":15},"Power Platform","2026-07-31T05:54:47.042251",{"slug":1358,"name":1358,"fn":1359,"description":1360,"org":1361,"tags":1362,"stars":23,"repoUrl":24,"updatedAt":1366},"add-datasource","add data sources to Power Apps","Adds a data source or connector to a Power Apps code app. Asks what the user wants to accomplish and routes to the appropriate specialized skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1363,1364,1365],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-03T16:31:47.822186",{"slug":1368,"name":1368,"fn":1369,"description":1370,"org":1371,"tags":1372,"stars":23,"repoUrl":24,"updatedAt":1381},"add-dataverse","add Dataverse tables to Power Apps","Use when the user wants to add Dataverse tables (existing or new) to a Power Apps mobile app, extend an existing Dataverse table with new columns, or apply an approved data model plan.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1373,1376,1379,1380],{"name":1374,"slug":1375,"type":15},"Data Modeling","data-modeling",{"name":1377,"slug":1378,"type":15},"Dataverse","dataverse",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-31T05:54:46.078014",{"slug":4,"name":4,"fn":5,"description":6,"org":1383,"tags":1384,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1385,1386,1387,1388],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"slug":1390,"name":1390,"fn":1391,"description":1392,"org":1393,"tags":1394,"stars":23,"repoUrl":24,"updatedAt":1402},"add-mcscopilot","add Copilot Studio connectors to Power Apps","Adds Microsoft Copilot Studio connector to a Power Apps code app. Use when invoking Copilot Studio agents, sending prompts to agents, or integrating agent responses.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1395,1396,1399,1400,1401],{"name":1169,"slug":1170,"type":15},{"name":1397,"slug":1398,"type":15},"Copilot Studio","copilot-studio",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"2026-07-31T05:54:39.025597",{"slug":1404,"name":1404,"fn":1405,"description":1406,"org":1407,"tags":1408,"stars":23,"repoUrl":24,"updatedAt":1416},"add-sample-data","populate Power Pages tables with sample data","Populates Dataverse tables with sample records for testing and demoing a Power Pages site. Use when the user wants to add sample data, seed data, generate test records, or insert demo data into their tables.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1409,1410,1411,1412,1413],{"name":1297,"slug":1298,"type":15},{"name":1377,"slug":1378,"type":15},{"name":9,"slug":8,"type":15},{"name":1344,"slug":33,"type":15},{"name":1414,"slug":1415,"type":15},"Testing","testing","2026-04-06T18:34:41.141155",26]