Skip to content

feat(skills): add Atheris fuzz harness with CI workflow integration#1102

Merged
WilliamBerryiii merged 13 commits intomainfrom
feat/powerpoint-atheris-fuzz-harness
Mar 20, 2026
Merged

feat(skills): add Atheris fuzz harness with CI workflow integration#1102
WilliamBerryiii merged 13 commits intomainfrom
feat/powerpoint-atheris-fuzz-harness

Conversation

@WilliamBerryiii
Copy link
Copy Markdown
Member

@WilliamBerryiii WilliamBerryiii commented Mar 17, 2026

Description

Added a polyglot Atheris fuzz harness convention to the powerpoint skill, established it as a required pattern for all Python skills with tests, documented the convention across security and contributing guides, and integrated coverage-guided fuzzing into the PR validation pipeline. The fuzz harness immediately surfaced two crash bugs in pptx_colors.py that were fixed in the same changeset. A shell script bug in generate.sh was also discovered and fixed during the PR workflow.

Fuzz Harness Implementation

> OSSF Scorecard Fuzzing detection requires an import atheris statement reachable by its Phase 3 regex scanner. The polyglot harness pattern satisfies this while keeping CI-friendly pytest tests as the default execution mode.

  • Added fuzz_harness.py (222 lines) to the powerpoint skill with 4 fuzz targets covering resolve_color, hex_brightness, max_severity, and _has_formatting_variation
    • Dual-mode design: pytest tests (21 tests across 4 test classes) run everywhere; Atheris fuzzing activates only when the package is available
    • fuzz_dispatch router uses first byte modulo target count to distribute fuzzer input across targets
  • Added fuzz = ["atheris>=3.0"] dependency group to pyproject.toml, intentionally separate from dev since Atheris only ships manylinux wheels
  • Added python_files = ["test_*.py", "fuzz_harness.py"] to pytest discovery configuration

CI Workflow Integration

  • Added fuzz-tests.yml reusable workflow for coverage-guided Atheris fuzzing in PR validation
    • Discovers Python projects via existing discover-python-projects job and gates on fuzz_harness.py presence
    • Runs configurable fuzz iterations (default 10,000) with uv sync --locked --dev --group fuzz
    • Produces GitHub Actions step summary with run statistics (iterations, edges, features, corpus size, crashes)
    • Uploads crash artifacts and JSON results per fuzz project for traceability
    • Supports soft-fail and changed-files-only inputs for flexible pipeline configuration
    • Follows established workflow conventions (pwsh shell, three-dot diff, artifact name sanitization)
  • Integrated fuzz-tests job into pr-validation.yml with matrix strategy across discovered Python projects

Bug Fixes

  • Fixed short hex string crashes in pptx_colors.py discovered by the fuzz harness
    • resolve_color now returns a safe default RGB when hex strings are shorter than 6 characters
    • hex_brightness now returns 0 for short hex strings instead of silently producing incorrect values
  • Fixed empty pathspec bug in generate.sh where printf '%s\n' on an empty array produced a blank newline, causing git diff to fail with fatal: empty string is not a valid pathspec
    • Wrapped in an array length guard: if [[ ${#specs[@]} -gt 0 ]]

Validation & Documentation

  • Added error-level validation in Validate-SkillStructure.ps1 checking that Python skills with a tests/ directory include tests/fuzz_harness.py
  • Updated .github/copilot-instructions.md with 3 convention entries for the fuzz harness requirement
  • Added docs/security/fuzzing.md covering detection strategy, running instructions, and platform compatibility
  • Updated docs/contributing/skills.md with a fuzz harness section, directory tree update, and 2 submission checklist items
  • Updated docs/security/README.md and scripts/linting/README.md with index entries for the new content

Related Issue(s)

Closes #1021

Type of Change

Select all that apply:

Code & Documentation:

  • Bug fix (non-breaking change fixing an issue)
  • New feature (non-breaking change adding functionality)
  • Breaking change (fix or feature causing existing functionality to change)
  • Documentation update

Infrastructure & Configuration:

  • GitHub Actions workflow
  • Linting configuration (markdown, PowerShell, etc.)
  • Security configuration
  • DevContainer configuration
  • Dependency update

AI Artifacts:

  • Reviewed contribution with prompt-builder agent and addressed all feedback
  • Copilot instructions (.github/instructions/*.instructions.md)
  • Copilot prompt (.github/prompts/*.prompt.md)
  • Copilot agent (.github/agents/*.agent.md)
  • Copilot skill (.github/skills/*/SKILL.md)

Other:

  • Script/automation (.ps1, .sh, .py)
  • Other (please describe):

Sample Prompts (for AI Artifact Contributions)

Testing

  • Ran npm run validate:skills — fuzz harness validation passes for the powerpoint skill
  • Ran npm run lint:ps — PowerShell analysis passes for Validate-SkillStructure.ps1 changes
  • Ran npm run lint:md — markdown linting passes for all modified documentation files
  • Ran npm run spell-check — spelling validation passes
  • Ran npm run lint:frontmatter — frontmatter validation passes
  • Ran npm run lint:md-links — markdown link checking passes
  • Ran actionlint — workflow validation passes for both fuzz-tests.yml and pr-validation.yml
  • Ran yaml-lint — YAML validation passes for fuzz-tests.yml
  • Fuzz harness pytest mode executed successfully with all 21 tests passing
  • Local fuzz run completed 10,000 iterations with 0 crashes (~66s wall-clock)

Checklist

Required Checks

  • Documentation is updated (if applicable)
  • Files follow existing naming conventions
  • Changes are backwards compatible (if applicable)
  • Tests added for new functionality (if applicable)

AI Artifact Contributions

  • Used /prompt-analyze to review contribution
  • Addressed all feedback from prompt-builder review
  • Verified contribution follows common standards and type-specific requirements

Required Automated Checks

The following validation commands must pass before merging:

  • Markdown linting: npm run lint:md
  • Spell checking: npm run spell-check
  • Frontmatter validation: npm run lint:frontmatter
  • Skill structure validation: npm run validate:skills
  • Link validation: npm run lint:md-links
  • PowerShell analysis: npm run lint:ps

Security Considerations

No sensitive data, credentials, or privilege escalation paths introduced. The Atheris dependency is isolated in a fuzz group that is not installed by default. The pptx_colors.py fixes close input-validation gaps that could have caused unexpected behavior with malformed color strings. The fuzz-tests workflow runs with contents: read permissions only.

Additional Notes

  • The fuzz dependency group is intentionally separate from dev because Atheris only ships manylinux wheels (no macOS). This prevents uv sync failures on non-Linux platforms.
  • The uv.lock update includes a cairosvg wheel addition that appears to be a pre-existing lock drift correction.
  • The fuzz-tests workflow aligns with established conventions from python-lint.yml and pip-audit.yml (pwsh shell defaults, three-dot diff for changed-files detection, artifact name sanitization, GITHUB_ENV gating).

- add polyglot fuzz_harness.py with 4 targets and 21 pytest tests
- add fuzz dependency group and pytest discovery config
- add error-level validation for fuzz harness convention
- fix resolve_color crash on empty hex strings
- add fuzzing convention docs and update contributing guide

🔒 - Generated by Copilot
@WilliamBerryiii WilliamBerryiii requested a review from a team as a code owner March 17, 2026 02:33
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
pip/atheris 3.0.0 🟢 5.9
Details
CheckScoreReason
Maintained⚠️ 00 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Packaging⚠️ -1packaging workflow not detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Code-Review🟢 7Found 23/30 approved changesets -- score normalized to 7
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts🟢 10no binaries found in the repo
SAST⚠️ 0no SAST tool detected
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing🟢 10project is fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Pinned-Dependencies⚠️ 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection⚠️ 0branch protection not enabled on development/release branches
Security-Policy🟢 10security policy file detected
actions/actions/checkout de0fac2e4500dabe0009e67214ff5f5447ce83dd 🟢 5.9
Details
CheckScoreReason
Maintained⚠️ 23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2
Code-Review🟢 10all changesets reviewed
Binary-Artifacts🟢 10no binaries found in the repo
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Packaging⚠️ -1packaging workflow not detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Pinned-Dependencies🟢 3dependency not pinned by hash detected -- score normalized to 3
Signed-Releases⚠️ -1no releases found
Security-Policy🟢 9security policy file detected
Branch-Protection🟢 5branch protection is not maximal on development and all release branches
SAST🟢 8SAST tool detected but not run on all commits
actions/actions/setup-python a309ff8b426b58ec0e2a45f0f869d46889d02405 🟢 5.3
Details
CheckScoreReason
Code-Review🟢 10all changesets reviewed
Maintained🟢 34 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 3
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Pinned-Dependencies⚠️ 0dependency not pinned by hash detected -- score normalized to 0
Signed-Releases⚠️ -1no releases found
Security-Policy🟢 9security policy file detected
Branch-Protection⚠️ 0branch protection not enabled on development/release branches
SAST🟢 9SAST tool is not run on all commits -- score normalized to 9
actions/actions/upload-artifact bbbca2ddaa5d8feaa63e36b76fdaad77386f024f 🟢 5.6
Details
CheckScoreReason
Packaging⚠️ -1packaging workflow not detected
Code-Review🟢 10all changesets reviewed
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Maintained🟢 44 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 4
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies⚠️ 1dependency not pinned by hash detected -- score normalized to 1
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Security-Policy🟢 9security policy file detected
Branch-Protection⚠️ 0branch protection not enabled on development/release branches
SAST🟢 10SAST tool is run on all commits
actions/astral-sh/setup-uv 37802adc94f370d6bfd71619e3f0bf239e1f3b78 UnknownUnknown

Scanned Files

  • .github/skills/experimental/powerpoint/uv.lock
  • .github/workflows/fuzz-tests.yml

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Mar 17, 2026

Codecov Report

❌ Patch coverage is 84.61538% with 4 lines in your changes missing coverage. Please review.
✅ Project coverage is 86.89%. Comparing base (f79c272) to head (5b0630c).
⚠️ Report is 24 commits behind head on main.

Files with missing lines Patch % Lines
scripts/linting/Validate-SkillStructure.ps1 50.00% 4 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1102      +/-   ##
==========================================
- Coverage   86.91%   86.89%   -0.03%     
==========================================
  Files          59       59              
  Lines        8752     8774      +22     
==========================================
+ Hits         7607     7624      +17     
- Misses       1145     1150       +5     
Flag Coverage Δ
pester 85.32% <81.81%> (-0.04%) ⬇️
pytest 90.77% <100.00%> (+0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
...lls/experimental/powerpoint/scripts/pptx_colors.py 89.85% <100.00%> (+0.62%) ⬆️
scripts/linting/Invoke-PythonLint.ps1 88.13% <100.00%> (+1.09%) ⬆️
scripts/linting/Invoke-PythonTests.ps1 83.09% <100.00%> (+1.28%) ⬆️
scripts/linting/Validate-SkillStructure.ps1 94.42% <50.00%> (-1.58%) ⬇️

... and 1 file with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

WilliamBerryiii and others added 2 commits March 16, 2026 22:55
- fix table formatting in fuzzing.md and security README.md
- correct ms.topic value from conceptual to concept in fuzzing.md
- update ms.date to current date on all changed markdown files
- add explanatory comments to bare except blocks for CodeQL
- add short-hex coverage tests for resolve_color and hex_brightness

🔧 - Generated by Copilot
Copy link
Copy Markdown
Contributor

@katriendg katriendg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code review pass covering the Atheris fuzz harness implementation, bug fixes, and associated documentation.

Bill Berry added 3 commits March 19, 2026 17:10
- add missing-key variants to fuzz_max_severity with ConsumeBool toggles
- add corpus seed directory with 12 binary seeds and naming convention
- add fuzz dependency group and python_files validation in skill validator
- fix Python test/lint scripts to default OutputPath to logs directory
- clarify OSSF Scorecard wording in fuzzing.md

🧪 - Generated by Copilot
…ness' into feat/powerpoint-atheris-fuzz-harness

# Conflicts:
#	scripts/linting/README.md
Bill Berry and others added 3 commits March 19, 2026 18:25
- replace try/except pass blocks with contextlib.suppress
- add missing copyright and SPDX license header

🔧 - Generated by Copilot
- add fuzz-tests.yml reusable workflow with coverage-guided Atheris fuzzing
- integrate fuzz-tests job into pr-validation.yml via discover-python-projects
- produce step summary, crash artifacts, and JSON results per fuzz project
- align all conventions with python-lint.yml and pip-audit.yml patterns

🧪 - Generated by Copilot
@WilliamBerryiii WilliamBerryiii changed the title feat(skills): add Atheris fuzz harness for Scorecard Fuzzing compliance feat(skills): add Atheris fuzz harness with CI workflow integration Mar 20, 2026
@WilliamBerryiii WilliamBerryiii merged commit d337e1d into main Mar 20, 2026
33 checks passed
WilliamBerryiii added a commit that referenced this pull request Mar 20, 2026
…1155)

## Description

GitHub Linguist's *vendor.yml* classifies the entire `.github/`
directory as vendored, which excluded all Python skill files from the
repository's Languages API. OSSF Scorecard's Fuzzing check only
evaluates languages that appear in that API, so the Atheris fuzz harness
merged in PR #1102 remained invisible and **Fuzzing scored 0/10**
despite correct test infrastructure.

> The root cause was a mismatch between where skills live
(`.github/skills/`) and Linguist's vendored-path regex. The fix adds a
targeted `.gitattributes` override rather than relocating files.

- Added **`linguist-vendored=false`** for `.github/skills/**/*.py` in
*.gitattributes*, overriding the vendored classification so Python
appears in language statistics
- Included an explanatory comment documenting the Linguist vendor.yml
interaction with OSSF Scorecard for future maintainers
- Removed two duplicate `**/.hypothesis/` entries from *.gitignore* (the
file contained three identical lines; one remains)

## Related Issue(s)

None

## Type of Change

Select all that apply:

**Code & Documentation:**

* [x] Bug fix (non-breaking change fixing an issue)
* [ ] New feature (non-breaking change adding functionality)
* [ ] Breaking change (fix or feature causing existing functionality to
change)
* [ ] Documentation update

**Infrastructure & Configuration:**

* [ ] GitHub Actions workflow
* [ ] Linting configuration (markdown, PowerShell, etc.)
* [ ] Security configuration
* [ ] DevContainer configuration
* [ ] Dependency update

**AI Artifacts:**

* [ ] Reviewed contribution with `prompt-builder` agent and addressed
all feedback
* [ ] Copilot instructions (`.github/instructions/*.instructions.md`)
* [ ] Copilot prompt (`.github/prompts/*.prompt.md`)
* [ ] Copilot agent (`.github/agents/*.agent.md`)
* [ ] Copilot skill (`.github/skills/*/SKILL.md`)

> Note for AI Artifact Contributors:
>
> * Agents: Research, indexing/referencing other project (using standard
VS Code GitHub Copilot/MCP tools), planning, and general implementation
agents likely already exist. Review `.github/agents/` before creating
new ones.
> * Skills: Must include both bash and PowerShell scripts. See
[Skills](../docs/contributing/skills.md).
> * Model Versions: Only contributions targeting the **latest Anthropic
and OpenAI models** will be accepted. Older model versions (e.g.,
GPT-3.5, Claude 3) will be rejected.
> * See [Agents Not
Accepted](../docs/contributing/custom-agents.md#agents-not-accepted) and
[Model Version
Requirements](../docs/contributing/ai-artifacts-common.md#model-version-requirements).

**Other:**

* [ ] Script/automation (`.ps1`, `.sh`, `.py`)
* [ ] Other (please describe):

## Testing

- Verified `git check-attr linguist-vendored --
.github/skills/experimental/powerpoint/tests/fuzz_harness.py` returns
`false`, confirming the override is active.
- Confirmed the `.github/skills/**/*.py` glob covers all 35 Python files
(427,782 bytes), approximately 3.5x the Linguist prominence threshold.
- Ran `npm run validate:skills` — all 9 skills passed with 0 errors.

## Checklist

### Required Checks

* [ ] Documentation is updated (if applicable)
* [x] Files follow existing naming conventions
* [x] Changes are backwards compatible (if applicable)
* [ ] Tests added for new functionality (if applicable)

### AI Artifact Contributions

* [ ] Used `/prompt-analyze` to review contribution
* [ ] Addressed all feedback from `prompt-builder` review
* [ ] Verified contribution follows common standards and type-specific
requirements

### Required Automated Checks

The following validation commands must pass before merging:

* [x] Markdown linting: `npm run lint:md`
* [x] Spell checking: `npm run spell-check`
* [x] Frontmatter validation: `npm run lint:frontmatter`
* [x] Skill structure validation: `npm run validate:skills`
* [x] Link validation: `npm run lint:md-links`
* [x] PowerShell analysis: `npm run lint:ps`
* [x] Plugin freshness: `npm run plugin:generate`

## Security Considerations

* [x] This PR does not contain any sensitive or NDA information
* [x] Any new dependencies have been reviewed for security issues
* [x] Security-related scripts follow the principle of least privilege

## Additional Notes

- The 35 Python files under `.github/skills/` total approximately
427,782 bytes, which is well above the Linguist prominence threshold
(~122,000 bytes). Even if small files are added or removed, Python
visibility in the Languages API remains stable.
- No new dependencies were introduced. The change is purely metadata
(`.gitattributes` and `.gitignore`).
WilliamBerryiii added a commit that referenced this pull request Mar 20, 2026
🤖 I have created a release *beep* *boop*
---


##
[3.2.0](hve-core-v3.1.46...hve-core-v3.2.0)
(2026-03-20)


### ✨ Features

* add -OutputPath parameter to Validate-MarkdownFrontmatter.ps1
([#1134](#1134))
([fdf1bcf](fdf1bcf)),
closes [#1006](#1006)
* add action version consistency scan workflow
([#1127](#1127))
([4229df1](4229df1))
* **agent:** MVE Experiment Designer
([#976](#976))
([70f86ca](70f86ca))
* **agents:** add ADO Backlog Manager orchestrator agent
([#800](#800))
([fae3987](fae3987))
* **agents:** add meeting analyst agent for transcript analysis using
work-iq ([#502](#502))
([5345b5b](5345b5b))
* **agents:** add quick-reference line to RPI Phase 5 suggestions
([#897](#897))
([9a90f39](9a90f39))
* **agents:** add RAI Planner, enhance SSSC Planner, and redesign
Security Planner
([#979](#979))
([06f826c](06f826c))
* **agents:** add symmetric cross-system handoff to GitHub Backlog
Manager ([#952](#952))
([ba34a35](ba34a35))
* **agents:** Functional Code Review Agent — pre-PR functional
correctness reviewer
([#733](#733))
([9cf63b7](9cf63b7))
* **build:** add Python extensions and uv 0.10.8 to devcontainer
([#920](#920))
([9ca0579](9ca0579))
* **build:** add uv ecosystem to Dependabot configuration
([#913](#913))
([2a4bd39](2a4bd39))
* **build:** enable npm pinning enforcement in dependency scan
([#838](#838))
([4e9e31f](4e9e31f))
* **build:** migrate attestation actions to v4.1.0 and add SBOM
verification docs
([#841](#841))
([ca1e65b](ca1e65b))
* **collections:** add four new validator checks (orphan, duplicate,
companion, coverage)
([#869](#869))
([1a96b73](1a96b73))
* **devcontainer,security:** add enterprise artifact hub configuration
([#1032](#1032))
([1d56d25](1d56d25))
* **docs:** add Rust coding standards and guidelines
([#809](#809))
([d4c4899](d4c4899))
* **extension:** add Microsoft logo icon to VS Code Marketplace listings
([#906](#906))
([82aca41](82aca41))
* **github:** add declarative label management
([#953](#953))
([a1a6845](a1a6845))
* **instructions:** add ADO backlog shared infrastructure
([#786](#786))
([1914078](1914078))
* **instructions:** add ADO backlog sprint planning and capacity
tracking ([#788](#788))
([d6fb77d](d6fb77d))
* **instructions:** add ADO triage workflow and prompt
([#787](#787))
([cde0190](cde0190))
* **instructions:** add shared story quality conventions and sprint
planning ([#803](#803))
([a2f18e3](a2f18e3))
* **prompts:** add ADO discovery and work item prompts with agent
routing ([#790](#790))
([7e74523](7e74523))
* **prompts:** add security review prompts
([#1118](#1118))
([ad30967](ad30967))
* **scripts:** add dynamic Python skill discovery for lint/test
([#957](#957))
([0a90f57](0a90f57))
* **scripts:** add Get-StandardTimestamp utility to CIHelpers module
([#1126](#1126))
([b273a4b](b273a4b))
* **scripts:** add Python copyright header validation
([#905](#905))
([67df902](67df902))
* **scripts:** add Python skill support to Validate-SkillStructure
([#903](#903))
([68479d9](68479d9))
* **scripts:** add workflow npm command scanning to dependency pinning
([#837](#837))
([6b5ae06](6b5ae06))
* **security:** add basic security reviewer agent with owasp skills
([#1008](#1008))
([cb1fd05](cb1fd05))
* **security:** add sigstore attestation bundles and fix
component-detection action
([#1148](#1148))
([f79c272](f79c272))
* **skills:** add Atheris fuzz harness with CI workflow integration
([#1102](#1102))
([d337e1d](d337e1d))
* **skills:** add PowerPoint automation skill with YAML-driven deck
generation ([#868](#868))
([00465cd](00465cd))
* **skills:** convert hve-core-installer agent to self-contained skill
([#846](#846))
([1d821fb](1d821fb))
* **skills:** enhance pr-reference skill with flexible filtering and
base branch detection
([#1095](#1095))
([26a32ea](26a32ea))
* **workflows:** add devcontainer infrastructure change log workflow
([#899](#899))
([8aca446](8aca446))
* **workflows:** add milestone auto-close on stable and pre-release
publishes ([#834](#834))
([79362b1](79362b1))
* **workflows:** add ms.date documentation freshness checking
([#969](#969))
([3ed441c](3ed441c))
* **workflows:** add Python linting CI workflow with Ruff
([#951](#951))
([f89f0eb](f89f0eb))
* **workflows:** add Python testing CI workflow with pytest and Codecov
([#934](#934))
([5e8306f](5e8306f))
* **workflows:** add uv and Python package sync to copilot-setup-steps
([#921](#921))
([45d517d](45d517d))


### 🐛 Bug Fixes

* **build:** override Linguist vendored flag for Python skill files
([#1155](#1155))
([0eee5b6](0eee5b6))
* **build:** override serialize-javascript to &gt;=7.0.3 for RCE fix
([#876](#876))
([e49039a](e49039a))
* **build:** resolve Pinned-Dependencies alerts for vsce npm commands in
extension workflows
([#782](#782))
([89dad9d](89dad9d))
* **build:** update undici and yauzl overrides for security audit
([#1030](#1030))
([2c2f92f](2c2f92f))
* **docs:** add CLI Plugins to install.md navigation surfaces
([#902](#902))
([79d6595](79d6595))
* **docs:** add sidebar ordering for Design Thinking documentation
([#832](#832))
([551fddc](551fddc)),
closes [#830](#830)
* **docs:** graduate design-thinking to preview and correct stale
collection references
([#831](#831))
([5110e35](5110e35))
* **docs:** include project-planning in UX Designer install guidance
([#908](#908))
([e7aa9bc](e7aa9bc))
* **docs:** remediate writing-style convention violations
([#865](#865))
([68b04bc](68b04bc))
* **docs:** remove draft content announcement banner
([#825](#825))
([b45de80](b45de80))
* **docs:** remove unbounded path-to-regexp override breaking SSG
([#1153](#1153))
([d810018](d810018))
* **docs:** use actual clone paths instead of folder display names in
multi-root workspace settings
([#984](#984))
([5dbab82](5dbab82))
* **instructions:** replace black with ruff in uv-projects
([#898](#898))
([b0c06d9](b0c06d9))
* **scripts:** cover .github/ skill files in copyright header validation
([#1055](#1055))
([#1098](#1098))
([27fbd33](27fbd33))
* **scripts:** eliminate phantom git changes from plugin generation
([#1035](#1035))
([e49a1b5](e49a1b5))
* **scripts:** enable JSON log output for lint:version-consistency
([#1033](#1033))
([52b0885](52b0885))
* **security:** calculate compliance score from total scanned
dependencies ([#930](#930))
([c112c3d](c112c3d))
* **skills:** add AST validation and namespace restriction for
content-extra.py
([#1027](#1027))
([c50c7a3](c50c7a3))
* **skills:** add depth limits to recursive PowerPoint processing
functions ([#1028](#1028))
([bf08994](bf08994))
* **skills:** harden XML parsing and blob writes in powerpoint extract
([#1053](#1053))
([89d24b1](89d24b1))
* **skills:** resolve ruff lint and format violations in powerpoint
skill ([#1048](#1048))
([17bbe7a](17bbe7a))
* **workflows:** add uv.lock dependencies submission have fork-skip
condition ([#1109](#1109))
([dec56ac](dec56ac))
* **workflows:** automate weekly SHA staleness check with issue creation
([#975](#975))
([1ea4caa](1ea4caa))
* **workflows:** close Codecov integration gaps for Pester and pytest
flags ([#1106](#1106))
([cca29b7](cca29b7))
* **workflows:** propagate uv sync errors in copilot-setup-steps
([#961](#961))
([df88d7c](df88d7c))
* **workflows:** resolve release-please skip cascade and Python project
discovery ([#1043](#1043))
([79993e2](79993e2))
* **workflows:** scan only commit subjects for breaking change detection
([#1157](#1157))
([a38a657](a38a657))


### 📚 Documentation

* clarify HVE Core Extension vs Installer messaging across documentation
([#965](#965))
([0fceb8f](0fceb8f))
* **docs:** add ADO integration user documentation
([#935](#935))
([ec89302](ec89302))
* **docs:** add Project Planning agent documentation
([#936](#936))
([3a3a0fd](3a3a0fd))
* **onboarding:** overhaul marketplace onboarding and documentation site
([#982](#982))
([4309e10](4309e10))


### ♻️ Refactoring

* **build:** merge code-review collection into coding-standards
([#863](#863))
([8027e7b](8027e7b))
* **workflows:** rename release pipeline workflows and add marketplace
automation triggers
([#829](#829))
([b6397f4](b6397f4))


### 🔧 Maintenance

* **build:** add clean:logs npm script
([#1122](#1122))
([f85fe02](f85fe02)),
closes [#988](#988)
* **build:** add JSON reporter for cspell
([#1123](#1123))
([6d59f67](6d59f67))
* **ci:** add multi-arch support to copilot-setup-steps binary downloads
([#955](#955))
([8d0c706](8d0c706))
* **deps-dev:** bump cspell from 9.6.4 to 9.7.0 in the npm-dependencies
group ([#839](#839))
([3fa16ff](3fa16ff))
* **deps:** bump actions/dependency-review-action from 4.8.3 to 4.9.0 in
the github-actions group across 1 directory
([#942](#942))
([1a9b858](1a9b858))
* **deps:** bump cairosvg from 2.8.2 to 2.9.0 in
/.github/skills/experimental/powerpoint
([#1025](#1025))
([f4deda7](f4deda7))
* **deps:** bump dompurify from 3.3.1 to 3.3.2 in /docs/docusaurus
([#924](#924))
([d2060d6](d2060d6))
* **deps:** bump svgo from 3.3.2 to 3.3.3 in /docs/docusaurus
([#880](#880))
([6dc2406](6dc2406))
* **deps:** bump the github-actions group across 1 directory with 4
updates ([#1100](#1100))
([2290dc0](2290dc0))
* **deps:** bump the github-actions group with 6 updates
([#840](#840))
([f57bc01](f57bc01))
* **docs:** correct New-MsDateReport table rendering and refresh stale
docs ([#1114](#1114))
([c2b806f](c2b806f))
* **settings:** remove orphaned Checkov config and stale gitignore
entries ([#870](#870))
([98fcd74](98fcd74))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

---------

Co-authored-by: hve-core-release-please[bot] <254602402+hve-core-release-please[bot]@users.noreply.github.com>
Co-authored-by: Bill Berry <wberry@microsoft.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

feat(powerpoint): add thin Atheris wrapper for Scorecard Fuzzing compliance

4 participants