Renames playground/azure-ai-playground.html to playground/ms-ai-architect-playground.html (history preserved via git mv). Old name was too narrow — plugin covers the full Microsoft AI stack (Foundry, Copilot Studio, M365 Copilot, Power Platform, Agent Framework). Replaces the inline <style> block with seven <link> tags pointing at the vendored design-system under playground/vendor/playground-design-system/: fonts.css, tokens.css, base.css, components.css, components-tier2.css, components-tier3.css, components-tier3-supplement.css. A small inline shim maps legacy playground tokens (--bg, --surface, --accent, --gradient1) onto design-system tokens (--color-bg, --color-surface, --color-primary-500, etc.), keeping all existing playground-specific class CSS (.hero, .wizard-card, .scenario-card, .item-card, ...) working without rewrites. <html data-theme="dark"> preserves v2's dark visual identity; light-mode toggle is deferred. DOM, JS logic, scenario data, and command pipelines are unchanged. Also includes .gitleaks.toml at repo root (path allowlist for vendored MANIFEST.json files — SHA-256 file hashes are not secrets) which was missed in the previous commit due to global git ignore. Docs updated: - README.md (root): notes the vendoring sync script + ms-ai-architect Playground subsection - plugins/ms-ai-architect/README.md: new Playground section with sync workflow and standalone guarantee - plugins/ms-ai-architect/CLAUDE.md: Playground section updated with vendored design-system details + new filename
14 lines
457 B
TOML
14 lines
457 B
TOML
title = "ktg-plugin-marketplace gitleaks config"
|
|
|
|
# Extend default rules
|
|
[extend]
|
|
useDefault = true
|
|
|
|
# Path-based allowlist: vendored design-system MANIFEST.json files
|
|
# contain SHA-256 hashes per file by design (drift detection).
|
|
# These are public file integrity hashes, not secrets.
|
|
[[allowlists]]
|
|
description = "Vendored design-system MANIFEST files (SHA-256 file hashes)"
|
|
paths = [
|
|
'''playground/vendor/playground-design-system/MANIFEST\.json$''',
|
|
]
|