Interactive, searchable reference for all 24,000+ Microsoft Graph PowerShell cmdlets. Static site -- no backend, no framework, no build step.
Deployed to GitHub Pages. Data updated daily via GitHub Actions.
python3 -m http.server 8000 -d public
# http://localhost:8000A GitHub Actions workflow runs daily: clones the microsoftgraph-docs-powershell repo, parses markdown into JSON, commits changes, and deploys to Pages.
To regenerate locally:
git clone --depth 1 --filter=blob:none --sparse \
https://github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git docs
cd docs && git sparse-checkout set microsoftgraph/graph-powershell-1.0 microsoftgraph/graph-powershell-beta
cd ..
python3 scripts/parse_docs.py docs/microsoftgraphAlternative: extract live data from installed modules with .\scripts\get-graphcmdlets.ps1 -IncludeBeta.
| File | Purpose |
|---|---|
public/data/manifest.json |
Compact cmdlet index (short keys). Loaded on init for search/filter |
public/data/modules/*.json |
Per-module detail (syntax, examples, permissions). Lazy-loaded on card expand |
public/data/descriptions.json |
Deferred descriptions |
The parser uses Python stdlib only -- no pip dependencies.
Seven visual themes, each a standalone HTML file with identical JS logic. All support light/dark mode toggle and prefers-color-scheme.
- Fuzzy search with weighted scoring across name, description, category
- Filters -- verb, category, module, API version, permissions
- Two-tier loading -- manifest on init, module detail on demand
- Keyboard navigation --
/search,j/knavigate,Enterexpand - URL hash state -- shareable filtered views
- Export -- JSON or CSV of filtered results
- Filter presets -- save/restore to localStorage
public/
*.html Theme variants (7 files)
data/
manifest.json Cmdlet index (~3.5 MB)
descriptions.json Deferred descriptions (~3 MB)
modules/ Per-module detail (79 files)
screenshots/ Theme preview images
scripts/
parse_docs.py Python parser (primary)
get-graphcmdlets.ps1 PowerShell extractor (alternative)
.github/workflows/
update-cmdlet-data.yml Daily automation + GitHub Pages deploy






