gitextract_rnp3453x/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── plugin/ │ │ └── marketplace.json │ └── workflows/ │ ├── traffic-stats.yml │ └── update-message-center.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.MD ├── TEMPLATE-README.md ├── copilot-agent-samples/ │ ├── README.md │ ├── _SAMPLE_Templates/ │ │ ├── ca-NameOfAgent/ │ │ │ └── ca-NameOfAgent.md │ │ └── da-NameOfAgent/ │ │ └── da-NameOfAgent.md │ ├── agent-builder-agents/ │ │ ├── README.md │ │ ├── archive/ │ │ │ ├── README.md │ │ │ ├── da-CompareDocs/ │ │ │ │ └── README.md │ │ │ ├── da-DeepResearch/ │ │ │ │ └── README.md │ │ │ ├── da-ManagerSimulator/ │ │ │ │ └── README.md │ │ │ ├── da-OmniAgent/ │ │ │ │ └── README.md │ │ │ └── da-ReasoningAgent/ │ │ │ └── README.md │ │ ├── da-CompareDocs/ │ │ │ └── README.md │ │ ├── da-DeepResearch/ │ │ │ └── README.md │ │ ├── da-ManagerSimulator/ │ │ │ └── README.md │ │ ├── da-OmniAgent/ │ │ │ └── README.md │ │ ├── da-ReasoningAgent/ │ │ │ └── README.md │ │ └── da-VibeWritingAgent/ │ │ └── README.md │ ├── copilot-studio-agents/ │ │ ├── README.md │ │ ├── ca-AutoReplyAgent/ │ │ │ └── README.md │ │ ├── ca-PowerClawAgent/ │ │ │ ├── .gitignore │ │ │ ├── PowerClaw/ │ │ │ │ ├── actions/ │ │ │ │ │ ├── MicrosoftTeams-Postmessageinachatorchannel.mcs.yml │ │ │ │ │ ├── Office365Outlook-SendanemailV2.mcs.yml │ │ │ │ │ ├── WorkIQCalendarMCP-WorkIQCalendarPreview.mcs.yml │ │ │ │ │ ├── WorkIQCopilotMCP-WorkIQCopilotPreview.mcs.yml │ │ │ │ │ ├── WorkIQMailMCP-WorkIQMailPreview.mcs.yml │ │ │ │ │ ├── WorkIQSharePointMCP-WorkIQSharePointPreview.mcs.yml │ │ │ │ │ ├── WorkIQTeamsMCP-WorkIQTeamsPreview.mcs.yml │ │ │ │ │ ├── WorkIQUserMCP-WorkIQUserPreview.mcs.yml │ │ │ │ │ └── WorkIQWordMCP-WorkIQWordPreview.mcs.yml │ │ │ │ ├── agent.mcs.yml │ │ │ │ ├── connectionreferences.mcs.yml │ │ │ │ ├── settings.mcs.yml │ │ │ │ ├── topics/ │ │ │ │ │ ├── ConversationInit.mcs.yml │ │ │ │ │ ├── ConversationStart.mcs.yml │ │ │ │ │ ├── DailyDigest.mcs.yml │ │ │ │ │ ├── EndofConversation.mcs.yml │ │ │ │ │ ├── Escalate.mcs.yml │ │ │ │ │ ├── Fallback.mcs.yml │ │ │ │ │ ├── Goodbye.mcs.yml │ │ │ │ │ ├── MultipleTopicsMatched.mcs.yml │ │ │ │ │ ├── OnError.mcs.yml │ │ │ │ │ ├── ResetConversation.mcs.yml │ │ │ │ │ ├── Search.mcs.yml │ │ │ │ │ ├── Signin.mcs.yml │ │ │ │ │ ├── StartOver.mcs.yml │ │ │ │ │ └── ThankYou.mcs.yml │ │ │ │ ├── trigger/ │ │ │ │ │ └── RecurringCopilotTrigge.29c73850-0823-4027-a0b8-254d6dc2d00.mcs.yml │ │ │ │ ├── variables/ │ │ │ │ │ ├── AgentsText.mcs.yml │ │ │ │ │ ├── SoulText.mcs.yml │ │ │ │ │ ├── ToolsText.mcs.yml │ │ │ │ │ └── UserText.mcs.yml │ │ │ │ └── workflows/ │ │ │ │ ├── GetContext-ff84c862-c7f6-819b-5ec6-7201f9389c85/ │ │ │ │ │ ├── metadata.yml │ │ │ │ │ └── workflow.json │ │ │ │ ├── HeartbeatFlow-04cf2235-af1c-f111-88b1-6045bd0079f1/ │ │ │ │ │ ├── metadata.yml │ │ │ │ │ └── workflow.json │ │ │ │ └── Housekeeping-fca80a5d-72c0-fb6b-dbc9-eb8b74fdba44/ │ │ │ │ ├── metadata.yml │ │ │ │ └── workflow.json │ │ │ ├── PowerClaw-Overview.pptx │ │ │ ├── README.md │ │ │ ├── SETUP.md │ │ │ ├── docs/ │ │ │ │ └── MANUAL-SETUP.md │ │ │ ├── scripts/ │ │ │ │ └── Setup-PowerClaw.ps1 │ │ │ └── skills/ │ │ │ ├── README.md │ │ │ ├── _skill-template.md │ │ │ ├── agent-fleet-governor.md │ │ │ ├── commitment-tracker.md │ │ │ ├── decision-memo-builder.md │ │ │ ├── executive-radar.md │ │ │ ├── meeting-copilot-loop.md │ │ │ ├── stakeholder-brief.md │ │ │ ├── weekly-status-report.md │ │ │ └── workplace-intelligence-monitor.md │ │ └── ca-ProductQuoteAgent/ │ │ └── README.md │ ├── github-copilot-agents/ │ │ └── Council/ │ │ ├── README.md │ │ ├── agents/ │ │ │ └── council.agent.md │ │ └── plugin.json │ └── github-copilot-skills/ │ └── copilot-studio-workflow/ │ ├── CHANGELOG.md │ ├── README.md │ ├── SKILL.md │ ├── docs/ │ │ └── showcase.html │ ├── plugin.json │ ├── reference/ │ │ ├── gotchas.md │ │ └── workflow-guide.md │ └── scripts/ │ ├── cps-add-component.ps1 │ ├── cps-preflight.ps1 │ ├── cps-revert.ps1 │ └── cps-status.ps1 ├── copilot-agent-strategy/ │ ├── README.md │ ├── copilot-agent-brainstorm/ │ │ ├── Copilot Agent Brainstorming.pptx │ │ └── README.md │ ├── copilot-agents-cost-tool/ │ │ ├── GUIDE.md │ │ ├── README.md │ │ └── index.html │ └── copilot-agents-guide/ │ ├── README.md │ └── index.html ├── copilot-analytics-samples/ │ ├── Copilot_Audit_PBI/ │ │ ├── AlternateMethod/ │ │ │ └── Copilot_Audit_PBI.pbix │ │ ├── Copilot_Audit_PBI.pbix │ │ ├── Export-M365CopilotReports.ps1 │ │ └── README.md │ ├── README.md │ ├── VivaInsights-Copilot-Dashboard-Sample/ │ │ ├── Analyze Column Headers.xlsx │ │ ├── BYO-CopilotDashboard - Dynamic Personas.pbix │ │ ├── BYO-CopilotDashboard.pbix │ │ ├── Build your Own Copilot Dashboard Sample.docx │ │ ├── README.md │ │ └── Sample-VivaInsights-PersonQuery-Export.Csv │ ├── _SAMPLE_Templates/ │ │ └── README.md │ └── copilot-usage-users-and-apps/ │ ├── Copilot Usage - Users and Apps.pbix │ └── README.md ├── copilot-prompt-samples/ │ ├── README.md │ └── Researcher-OrganizationInsights.md ├── index.html ├── samples/ │ ├── Viva-Engage-Community-Creation-App/ │ │ ├── AppImportInstructions.docx │ │ └── README.md │ ├── teams-audioconferencing-snippets/ │ │ └── README.md │ ├── teams-phonesystem-snippets/ │ │ └── README.md │ ├── teams-rooms-snippets/ │ │ ├── README.md │ │ └── resource-accounts.csv │ └── teams-upgrade-snippets/ │ └── README.md ├── scripts/ │ ├── Add-YammerGroupAdmins/ │ │ ├── Add-YammerGroupAdmins.ps1 │ │ └── README.md │ ├── AddRemove-OneDriveSecondaryAdmin/ │ │ ├── AddRemove-OneDriveSecondaryAdmin.ps1 │ │ └── README.md │ ├── Analyze-SharePointRisk/ │ │ ├── Analyze-SharePointRisk.ps1 │ │ ├── Permissioned_Users_Count_SharePoint_report_2025-09-29_scrubbed.csv │ │ └── README.md │ ├── Create-EngageCommunities/ │ │ ├── Create-EngageCommunities.ps1 │ │ ├── README.md │ │ └── communities.json │ ├── Delete-AllCommunityPosts/ │ │ ├── Delete-AllCommunityPosts.ps1 │ │ └── README.md │ ├── Delete-YammerGroups/ │ │ ├── Delete-YammerGroups.ps1 │ │ └── README.md │ ├── Delete-YammerUsers/ │ │ ├── Delete-YammerUsers.ps1 │ │ └── README.md │ ├── Disable-InsightsHeadSpace/ │ │ ├── Disable-InsightsHeadSpace.ps1 │ │ └── README.md │ ├── Disable-TeamifyPrompt/ │ │ ├── Disable-TeamifyPrompt.ps1 │ │ └── README.md │ ├── Disable-TeamsAudioVideo/ │ │ ├── Disable-TeamsAudioVideo.ps1 │ │ └── README.md │ ├── Export-M365CopilotReports/ │ │ ├── Export-M365CopilotReports.ps1 │ │ └── README.md │ ├── Export-SimplePlacesVIsual/ │ │ ├── Export-SimplePlacesVisual.ps1 │ │ └── README.md │ ├── Export-YammerFiles/ │ │ ├── Export-YammerFiles.ps1 │ │ └── README.md │ ├── Export-YammerNetworkData/ │ │ ├── Export-YammerNetworkData.ps1 │ │ └── README.md │ ├── Find-MailboxDelegates/ │ │ ├── Find-MailboxDelegates-GUIDE.docx │ │ ├── Find-MailboxDelegates.ps1 │ │ └── README.md │ ├── Find-MailboxDelegates batch analysis/ │ │ ├── BatchAnalysis-generic.xlsm │ │ └── README.md │ ├── Get-AADAdminRoleMembers/ │ │ ├── Get-AADAdminRoleMembers.ps1 │ │ └── README.md │ ├── Get-AgentCQFinder/ │ │ ├── Get-AgentCQFinder.ps1 │ │ └── readme.md │ ├── Get-AllInsightsLicensedUsers/ │ │ ├── Get-AllInsightsLicensedUsers.ps1 │ │ └── README.md │ ├── Get-AuditGuestTeams/ │ │ ├── Get-AuditGuestTeams.ps1 │ │ └── readme.md │ ├── Get-DocLibInventory/ │ │ ├── Get-DocLibInventory.ps1 │ │ ├── Lib/ │ │ │ └── Lib.psm1 │ │ └── README.md │ ├── Get-FullOwnerReport/ │ │ ├── Get-FullOwnerReport.ps1 │ │ └── README.md │ ├── Get-FullTeamsReport/ │ │ ├── Get-FullTeamsReport.ps1 │ │ └── README.md │ ├── Get-GroupsMembersManagers/ │ │ ├── Get-GroupsMembersManagers.ps1 │ │ └── README.md │ ├── Get-GroupsTeamsSites/ │ │ ├── Get-GroupsTeamsSites.ps1 │ │ └── README.md │ ├── Get-LicenseUsage/ │ │ ├── Get-LicenseUsage.ps1 │ │ └── README.md │ ├── Get-LicensingInfo/ │ │ ├── Get-LicensingInfo.ps1 │ │ └── README.md │ ├── Get-ListUsage/ │ │ ├── Get-ListUsage.ps1 │ │ └── README.md │ ├── Get-M365CopilotReadiness/ │ │ ├── Get-M365CopilotReadiness.ps1 │ │ ├── README.md │ │ ├── copilot-readiness.html │ │ └── copilot-readiness.json │ ├── Get-MgUserVoicemailReport/ │ │ ├── Get-MgUserVoicemailReport.ps1 │ │ └── README.md │ ├── Get-MigrationToTeamsDNSCheck/ │ │ ├── MigrationToTeamsDNSCheck V1.7.ps1 │ │ └── README.md │ ├── Get-OD4BExternalUsers/ │ │ ├── Get-OD4BExternalUsers.ps1 │ │ └── README.md │ ├── Get-ODBUsage/ │ │ ├── Get-ODBUsage.ps1 │ │ └── README.md │ ├── Get-RecurringTeamsMeetings/ │ │ ├── Get-RecurringTeamsMeetings.ps1 │ │ ├── README.md │ │ └── sample-csv-file.csv │ ├── Get-SharedChannelsUserIsPartOf/ │ │ ├── Get-SharedChannelsUserIsPartOf.ps1 │ │ └── README.md │ ├── Get-TeamVisibilityAndOwnerReport/ │ │ ├── Get-TeamVisibilityAndOwnerReport.ps1 │ │ └── README.md │ ├── Get-TeamsChannelUsersReport/ │ │ ├── Get-TeamsChannelUsersReport.ps1 │ │ └── README.md │ ├── Get-TeamsUserActivityReport/ │ │ ├── Get-TeamsUserActivityReport.ps1 │ │ ├── README.md │ │ └── sample-csv-file.csv │ ├── Get-YammerGroupInfo/ │ │ ├── Get-YammerGroupInfo.ps1 │ │ └── README.MD │ ├── Get-YammerPrivateContentModeAdmins/ │ │ ├── Get-YammerPrivateContentModeAdmins.ps1 │ │ └── README.md │ ├── Get-YammerSiteSize/ │ │ ├── Get-YammerSiteSize.ps1 │ │ └── README.md │ ├── Merge-SPMTResults/ │ │ ├── Merge-SPMTResults.ps1 │ │ └── README.md │ ├── Preflight-OneDrive/ │ │ ├── Preflight-OneDrive.ps1 │ │ └── README.md │ ├── Set-ForwardingSMTPAddress/ │ │ ├── README.md │ │ ├── Set-ForwardingSMTPAddress.ps1 │ │ └── users.csv │ ├── Teams Phone User Migration/ │ │ ├── Contoso_List_Users_TeamsVoicePoliciesAndNumbers.csv │ │ ├── Phone Number and EV - user assignment - Phase 2 - Cutover.ps1 │ │ ├── README.md │ │ └── Voice related policies - user assignment - Phase 1.ps1 │ ├── Update-BookingsAdminPermissions/ │ │ ├── README.md │ │ └── Update-BookingsAdminPermissions.ps1 │ ├── Update-TeamsLicense/ │ │ ├── README.md │ │ └── Update-TeamsLicense.ps1 │ ├── Update-VivaEngageLicensingToggle/ │ │ ├── BlockUsersWithoutLicense.ps1 │ │ └── README.md │ ├── get-siteinventory/ │ │ ├── .gitignore │ │ ├── Get-Inventory.ps1 │ │ ├── Get-WebInventory.ps1 │ │ ├── Lib/ │ │ │ └── Lib.psm1 │ │ └── README.md │ ├── get-teamsusage/ │ │ ├── Get-TeamsUsage.ps1 │ │ └── README.md │ ├── move-team/ │ │ ├── Move-Team.ps1 │ │ ├── README.md │ │ └── TODO.md │ ├── split-spmtlogerrors/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ └── Split-SPMTLogErrors.ps1 │ └── update-message-center.js ├── tools/ │ └── SimpleGraph/ │ ├── README.md │ └── SimpleGraph.psm1 └── traffic-data/ ├── 2026-04-07.json ├── 2026-04-08.json ├── 2026-04-09.json ├── 2026-04-10.json ├── 2026-04-11.json ├── 2026-04-12.json ├── 2026-04-13.json ├── 2026-04-14.json ├── 2026-04-15.json ├── 2026-04-20.json ├── 2026-04-22.json ├── 2026-04-27.json ├── 2026-04-28.json ├── 2026-04-30.json ├── 2026-05-01.json ├── 2026-05-04.json ├── 2026-05-05.json ├── 2026-05-07.json ├── 2026-05-08.json ├── 2026-05-09.json ├── 2026-05-13.json ├── 2026-05-14.json ├── 2026-05-15.json ├── 2026-05-16.json ├── 2026-05-17.json ├── 2026-05-18.json ├── 2026-05-19.json └── README.md