Skip to content

feat(extension): implement pre-release versioning with agent maturity filtering#179

Merged
agreaves-ms merged 10 commits intomainfrom
feat/installer-extension-support
Jan 16, 2026
Merged

feat(extension): implement pre-release versioning with agent maturity filtering#179
agreaves-ms merged 10 commits intomainfrom
feat/installer-extension-support

Conversation

@WilliamBerryiii
Copy link
Copy Markdown
Member

Description

Implements maturity-based filtering for GHCP artifacts (prompts, instructions, chatmodes) to enable dual-channel extension publishing. The stable channel includes only production-ready artifacts while the pre-release channel includes stable, preview, and experimental artifacts.

What this PR includes

  • Schema Updates: Added maturity enum (stable, preview, experimental, deprecated) to agent, chatmode, instruction, and prompt frontmatter schemas
  • Prepare-Extension.ps1: Added -Channel parameter (Stable/PreRelease) with maturity-based filtering logic
  • Package-Extension.ps1: Added -PreRelease switch for VS Code Marketplace pre-release track
  • extension-publish-prerelease.yml: New workflow for publishing pre-release extensions with ODD minor version validation
  • extension-package.yml: Updated with channel input parameter and PowerShell-Yaml module installation
  • Documentation: Added maturity field requirements to contributing guides and release-process.md
  • Frontmatter Updates: Added maturity: stable to all 18 instruction files, 17 chatmodes, and 16 prompts

Key features

  1. EVEN/ODD versioning strategy: EVEN minor versions (1.0.x, 1.2.x) for stable channel; ODD minor versions (1.1.x, 1.3.x) for pre-release channel
  2. Build-time filtering: Prepare-Extension.ps1 filters artifacts by maturity before packaging
  3. Pre-release workflow: Manual workflow with version validation ensuring ODD minor numbers
  4. OIDC authentication: Pre-release workflow uses Azure OIDC for marketplace publishing

Related Issue(s)

Closes #178

Type of Change

  • New feature (non-breaking change that adds functionality)
  • Bug fix (non-breaking change that fixes an issue)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Refactoring (non-breaking change that improves code quality without changing functionality)
  • GitHub Actions workflow (new or modified workflow)
  • Script/automation (PowerShell, bash, or Python scripts)
  • Copilot instructions/prompts/chatmodes (adds or modifies GHCP artifacts)
  • Documentation (adds or updates documentation)

Sample Prompts

N/A - This PR modifies infrastructure and adds frontmatter to existing artifacts; no new user-facing prompts.

Testing

  • Validated PowerShell scripts with PSScriptAnalyzer (npm run psscriptanalyzer)
  • Validated markdown with markdownlint (npm run markdownlint)
  • Validated frontmatter schemas (npm run validate-frontmatter)
  • Local testing of Prepare-Extension.ps1 with both Stable and PreRelease channels

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • Any dependent changes have been merged and published in downstream modules

Security Considerations

  • OIDC Authentication: Pre-release workflow uses federated credentials (client-id, tenant-id, subscription-id) stored as GitHub secrets - no PAT required
  • Harden Runner: All workflow jobs use step-security/harden-runner with egress policy audit
  • SHA Pinning: All GitHub Actions are pinned to specific SHAs per repository policy
  • No Secret Exposure: Extension packaging does not expose or log sensitive values
  • Marketplace Token Scope: Uses --azure-credential for scoped marketplace access

GHCP Artifact Maturity

File Type Maturity Notes
All 18 instruction files Instructions ✅ stable All builds
All 17 chatmode files Chatmode ✅ stable All builds
All 16 prompt files Prompt ✅ stable All builds

All GHCP artifacts in this PR have maturity: stable and will be included in both stable and pre-release channels.

Additional Notes

Files Changed Summary

66 files changed across 5 logical commits:

  1. Schema + filtering logic (d36d0f4): 25 files - maturity enum in 4 schemas, Prepare-Extension.ps1 channel filtering
  2. Pre-release workflow + packaging (2aaf902): 1 file - extension-publish-prerelease.yml
  3. Prompts + chatmodes maturity (811b6d7): 15 files - maturity frontmatter + pull-request.prompt.md GHCP detection
  4. Documentation (241216d): 7 files - contributing guides and release-process.md
  5. Instructions maturity (bf0581d): 18 files - maturity frontmatter for all instructions

… agent

- add extension installation path with marketplace integration

- add Phase 1A with quick install vs clone-based decision flow

- add extension validation scripts and success/error handling

- consolidate method tables and add rollback guidance

- add Phase 4.5 agent copy with upgrade tracking and eject workflow

🚀 - Generated by Copilot
- Clarify extension method works in all environments (decision matrix)
- Add PowerShell 7+ requirement note for Phase 4.5 scripts
- Change extension Updates column to '-' (updates via marketplace)
- Fix bash find command to portable syntax (basename vs -printf)
- Add .hve-tracking.json cleanup note to rollback section

📝 - Generated by Copilot
Add maturity enum to frontmatter schemas for extension channel control:
- agent-frontmatter.schema.json: maturity field with stable/preview/experimental/deprecated
- chatmode-frontmatter.schema.json: maturity field for chatmode filtering
- instruction-frontmatter.schema.json: maturity field for instruction filtering
- prompt-frontmatter.schema.json: maturity field for prompt filtering

Update Prepare-Extension.ps1 with channel-based filtering:
- Add -Channel parameter (Stable/PreRelease)
- Filter agents and chatmodes by maturity level
- Stable channel: only 'stable' maturity
- PreRelease channel: 'stable', 'preview', 'experimental'
Add extension-publish-prerelease.yml workflow:
- Manual trigger with ODD minor version validation
- Dry-run option for testing without publish
- OIDC authentication for marketplace publishing

Update extension-package.yml:
- Add channel input parameter for maturity filtering
- Install PowerShell-Yaml module for frontmatter parsing
- Run Prepare-Extension.ps1 with channel parameter

Update Package-Extension.ps1:
- Add -PreRelease switch for marketplace pre-release track
- Pass --pre-release flag to vsce package command
- Output pre-release status to GITHUB_OUTPUT

Update PACKAGING.md:
- Document EVEN/ODD versioning strategy
- Add pre-release packaging examples
- Document agent maturity filtering by channel
Add maturity: stable to all production prompts:
- ado-create-pull-request, ado-get-build-info, ado-get-my-work-items
- ado-process-my-work-items-for-task-planning, ado-update-wit-items
- git-commit-message, git-commit, git-merge, git-setup
- github-add-issue, prompt-build, pull-request, risk-register
- task-plan, task-research

Add maturity: stable to all production chatmodes:
- ado-prd-to-wit, adr-creation, arch-diagram-builder, brd-builder
- gen-data-spec, gen-jupyter-notebook, gen-streamlit-dashboard
- github-issue-manager, pr-review, prd-builder, prompt-builder
- rpi-agent, security-plan-creator, task-implementor, task-planner
- task-researcher, test-streamlit-dashboard

Add GHCP Maturity Detection and Output sections to pull-request.prompt.md
- release-process.md: extension channels and maturity lifecycle
- ai-artifacts-common.md: maturity field requirements section
- prompts.md, instructions.md, chatmodes.md: maturity as required field
- extension/README.md: pre-release channel section

📚 - Generated by Copilot
- add maturity: stable to 18 instruction files for channel filtering

🔧 - Generated by Copilot
@WilliamBerryiii WilliamBerryiii requested a review from a team as a code owner January 15, 2026 22:17
Copilot AI review requested due to automatic review settings January 15, 2026 22:17
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Jan 15, 2026

Dependency Review

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

OpenSSF Scorecard

PackageVersionScoreDetails
actions/actions/checkout 8e8c483db84b4bee98b60c0593521ed34d9990e8 🟢 6.7
Details
CheckScoreReason
Binary-Artifacts🟢 10no binaries found in the repo
Maintained🟢 79 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Code-Review🟢 10all changesets reviewed
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
License🟢 10license file detected
Fuzzing⚠️ 0project is not fuzzed
Packaging⚠️ -1packaging workflow not detected
Signed-Releases⚠️ -1no releases found
Pinned-Dependencies🟢 3dependency not pinned by hash detected -- score normalized to 3
Security-Policy🟢 9security policy file detected
Branch-Protection🟢 5branch protection is not maximal on development and all release branches
Vulnerabilities🟢 91 existing vulnerabilities detected
SAST🟢 8SAST tool detected but not run on all commits
actions/actions/download-artifact 37930b1c2abaa49bbe596cd826c3c89aef350131 🟢 6.5
Details
CheckScoreReason
Code-Review🟢 10all changesets reviewed
Maintained🟢 1025 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies⚠️ 1dependency not pinned by hash detected -- score normalized to 1
License🟢 10license file detected
Fuzzing⚠️ 0project is not fuzzed
Signed-Releases⚠️ -1no releases found
Security-Policy🟢 9security policy file detected
Branch-Protection⚠️ 0branch protection not enabled on development/release branches
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 9SAST tool detected but not run on all commits
actions/actions/setup-node 395ad3262231945c25e8478fd5baf05154b1d79f 🟢 5.7
Details
CheckScoreReason
Code-Review🟢 10all changesets reviewed
Binary-Artifacts🟢 9binaries present in source code
Maintained🟢 56 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
License🟢 10license file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Fuzzing⚠️ 0project is not fuzzed
Packaging⚠️ -1packaging workflow not detected
Signed-Releases⚠️ -1no releases found
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Security-Policy🟢 9security policy file detected
Pinned-Dependencies⚠️ 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection⚠️ 1branch protection is not maximal on development and all release branches
Vulnerabilities🟢 73 existing vulnerabilities detected
SAST🟢 9SAST tool is not run on all commits -- score normalized to 9
actions/actions/upload-artifact b7c566a772e6b6bfb58ed0dc250532a479d7789f 🟢 6.5
Details
CheckScoreReason
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Binary-Artifacts🟢 10no binaries found in the repo
Code-Review🟢 10all changesets reviewed
Packaging⚠️ -1packaging workflow not detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
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
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 9SAST tool detected but not run on all commits
actions/azure/login a457da9ea143d694b1b9c7c869ebb04ebe844ef5 UnknownUnknown
actions/step-security/harden-runner 20cf305ff2072d973412fa9b1e3a4f227bda3c76 🟢 8.6
Details
CheckScoreReason
Binary-Artifacts🟢 10no binaries found in the repo
Branch-Protection🟢 8branch protection is not maximal on development and all release branches
CI-Tests🟢 107 out of 7 merged PRs checked by a CI test -- score normalized to 10
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Code-Review🟢 10all changesets reviewed
Contributors🟢 6project has 2 contributing companies or organizations -- score normalized to 6
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Dependency-Update-Tool🟢 10update tool detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Maintained🟢 1012 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Packaging⚠️ -1packaging workflow not detected
Pinned-Dependencies🟢 6dependency not pinned by hash detected -- score normalized to 6
SAST🟢 10SAST tool is run on all commits
Security-Policy🟢 10security policy file detected
Signed-Releases⚠️ -1no releases found
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Vulnerabilities🟢 91 existing vulnerabilities detected

Scanned Files

  • .github/workflows/extension-publish-prerelease.yml

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR implements a comprehensive maturity-based filtering system for GitHub Copilot (GHCP) artifacts to enable dual-channel extension publishing. The stable channel includes only production-ready artifacts while the pre-release channel provides early access to preview and experimental features.

Changes:

  • Added maturity enum field (stable, preview, experimental, deprecated) to all GHCP artifact schemas (prompts, instructions, chatmodes, agents)
  • Implemented build-time filtering in Prepare-Extension.ps1 and Package-Extension.ps1 with channel-based maturity inclusion logic
  • Created extension-publish-prerelease.yml workflow with ODD/EVEN versioning validation and Azure OIDC authentication
  • Updated all 51 GHCP artifacts (18 instructions, 17 chatmodes, 16 prompts) with maturity: stable frontmatter
  • Enhanced documentation across contributing guides, README, PACKAGING, and release-process.md with maturity lifecycle and channel guidance

Reviewed changes

Copilot reviewed 66 out of 66 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
scripts/linting/schemas/*.schema.json Added maturity enum to prompt, instruction, chatmode, and agent schemas
scripts/extension/Prepare-Extension.ps1 Added Channel parameter with maturity-based filtering logic for artifacts
scripts/extension/Package-Extension.ps1 Added PreRelease switch for VS Code Marketplace pre-release track
.github/workflows/extension-publish-prerelease.yml New workflow with ODD minor version validation and OIDC publishing
.github/workflows/extension-package.yml Added channel input parameter and PowerShell-Yaml module installation
extension/README.md Documented pre-release channel with maturity level table
extension/PACKAGING.md Added EVEN/ODD versioning strategy and agent maturity filtering guidance
docs/contributing/*.md Added maturity field requirements, channel documentation, and lifecycle diagrams
.github/prompts/pull-request.prompt.md Added GHCP maturity detection logic for PR generation
.github/{prompts,chatmodes,instructions}/*.md Added maturity: stable to all 51 GHCP artifact files

- correct broken link to agent maturity documentation
- standardize maturity description across schema files
- fix orphaned list item in ai-artifacts-common.md

🔧 - Generated by Copilot
@WilliamBerryiii
Copy link
Copy Markdown
Member Author

@agreaves-ms, @katriendg and @eedorenko ... this is a run at creating a pre-release extension. The intent behind this is to allow us to release more experimental prompts and explore how they fair across a broader set of projects.

@agreaves-ms agreaves-ms merged commit fb38233 into main Jan 16, 2026
14 checks passed
@agreaves-ms agreaves-ms deleted the feat/installer-extension-support branch January 16, 2026 01:09
@katriendg
Copy link
Copy Markdown
Contributor

I love this new feature, it makes a lot of sense to differentiate our extension versions. I know this is already merged but just wanted to mention there is one concern I see with this: the maturity front-matter key not being recognized by VS Code will most likely give the warning / squiggly when users open the files. For the extension users this is hidden but for users importing with the other methods and having cloned the repo they will be more apparent. Just a thought.

WilliamBerryiii pushed a commit that referenced this pull request Jan 19, 2026
🤖 I have created a release *beep* *boop*
---


##
[1.1.0](hve-core-v1.0.0...hve-core-v1.1.0)
(2026-01-19)


### ✨ Features

* **.devcontainer:** add development container configuration
([#24](#24))
([45debf5](45debf5))
* **.github:** add github metadata and mcp configuration
([#23](#23))
([1cb898d](1cb898d))
* **agent:** Add automated installation via hve-core-installer agent
([#82](#82))
([a2716d5](a2716d5))
* **agents:** add brd-builder.agent.md for building BRDs
([#122](#122))
([bfdc9f3](bfdc9f3))
* **agents:** redesign installer with Codespaces support and method
documentation ([#123](#123))
([6329fc0](6329fc0))
* **ai:** Establish AI-Assisted Development Framework
([#48](#48))
([f5199a4](f5199a4))
* **build:** implement automated release management with release-please
([#86](#86))
([90150e2](90150e2))
* **chatmodes:** add architecture diagram builder agent
([#145](#145))
([db24637](db24637))
* **config:** add development tools configuration files
([#19](#19))
([9f97522](9f97522))
* **config:** add npm package configuration and dependencies
([#20](#20))
([fcba198](fcba198))
* **copilot:** add GitHub Copilot instruction files
([#22](#22))
([4927284](4927284))
* **copilot:** add specialized chat modes for development workflows
([#21](#21))
([ae8495f](ae8495f))
* **docs:** add comprehensive AI artifact contribution documentation
([#76](#76))
([d81cf96](d81cf96))
* **docs:** add getting started guide for project configuration
([#57](#57))
([3b864fa](3b864fa))
* **docs:** add repository foundation and documentation files
([#18](#18))
([ad7efb6](ad7efb6)),
closes [#2](#2)
* **docs:** add RPI workflow documentation and restructure docs folder
([#102](#102))
([c3af708](c3af708))
* **extension:** hve core vs code extension
([#149](#149))
([041a1fd](041a1fd))
* **extension:** implement pre-release versioning with agent maturity
filtering ([#179](#179))
([fb38233](fb38233))
* **instructions:** add authoring standards for prompt engineering
artifacts ([#177](#177))
([5de3af9](5de3af9))
* **instructions:** add extension quick install and enhance installer
agent ([#176](#176))
([48e3d58](48e3d58))
* **instructions:** add VS Code variant prompt and gitignore
recommendation to installer
([#185](#185))
([b400493](b400493))
* **instructions:** add writing style guide for markdown content
([#151](#151))
([02df6a8](02df6a8))
* **instructions:** consolidate C# guidelines and update prompt agent
fields ([#158](#158))
([65342d4](65342d4))
* **instructions:** provide guidance on using safe commands to reduce
interactive prompting
([#117](#117))
([1268580](1268580))
* **linting:** add linting and validation scripts
([#26](#26))
([66be136](66be136))
* **prompt-builder:** enhance prompt engineering instructions and
validation protocols
([#155](#155))
([bc5004f](bc5004f))
* **prompts:** add ADR placement planning and update template paths
([#69](#69))
([380885f](380885f))
* **prompts:** add git workflow prompts from edge-ai
([#84](#84))
([56d66b6](56d66b6))
* **prompts:** add github-add-issue prompt and github-issue-manager
chatmode with delegation pattern
([#55](#55))
([d0e1789](d0e1789))
* **prompts:** add PR template discovery and integration to pull-request
prompt ([#141](#141))
([b8a4c7a](b8a4c7a))
* **prompts:** add task research initiation prompt and rpi
agent([#124](#124))
([5113e3b](5113e3b))
* **release:** implement release management strategy
([#161](#161))
([6164c3b](6164c3b))
* Risk Register Prompt
([#146](#146))
([843982c](843982c))
* **scripts:** enhanced JSON Schema validation for markdown frontmatter
([#59](#59))
([aba152c](aba152c))
* **security:** add checksum validation infrastructure
([#106](#106))
([07528fb](07528fb))
* **security:** add security scanning scripts
([#25](#25))
([82de5a1](82de5a1))
* **workflows:** add CodeQL security analysis to PR validation
([#132](#132))
([e5b6e8f](e5b6e8f))
* **workflows:** add orchestration workflows and documentation
([#29](#29))
([de442e0](de442e0))
* **workflows:** add security reusable workflows
([#28](#28))
([2c74399](2c74399))
* **workflows:** add validation reusable workflows
([#27](#27))
([f52352d](f52352d))


### 🐛 Bug Fixes

* **build:** add token parameter to release-please action
([#166](#166))
([c9189ec](c9189ec))
* **build:** disable MD012 lint rule in CHANGELOG for release-please
compatibility ([#173](#173))
([54502d8](54502d8)),
closes [#172](#172)
* **build:** pin npm commands for OpenSSF Scorecard compliance
([#181](#181))
([c29db54](c29db54))
* **build:** remediate GHSA-g9mf-h72j-4rw9 undici vulnerability
([#188](#188))
([634bf36](634bf36))
* **build:** seed CHANGELOG.md with version entry for release-please
frontmatter preservation
([#170](#170))
([2b299ac](2b299ac))
* **build:** use GitHub App token for release-please
([#167](#167))
([070e042](070e042))
* **build:** use hashtable splatting for named parameters
([#164](#164))
([02a965f](02a965f))
* **devcontainer:** remove unused Python requirements check
([#78](#78))
([f17a872](f17a872)),
closes [#77](#77)
* **docs:** fix broken links and update validation for .vscode/README.md
([#118](#118))
([160ae7a](160ae7a))
* **docs:** improve language consistency in Automated Installation
section ([#139](#139))
([a932918](a932918))
* **docs:** replace install button anchor with VS Code protocol handler
([#111](#111))
([41a265e](41a265e))
* **docs:** update install badges to use aka.ms redirect URLs
([#114](#114))
([868f655](868f655))
* **linting:** use cross-platform path separators in gitignore pattern
matching ([#121](#121))
([3f0aa1b](3f0aa1b))
* **scripts:** accepts the token (YYYY-MM-dd) in frontmatter validation
([#133](#133))
([2648215](2648215))
* **tools:** correct Method 5 path resolution in hve-core-installer
([#129](#129))
([57ef20d](57ef20d))


### 📚 Documentation

* add comprehensive RPI workflow documentation
([#153](#153))
([cbaa4a9](cbaa4a9))
* enhance README with contributing, responsible AI, and legal sections
([#52](#52))
([a424adc](a424adc))


### ♻️ Refactoring

* **instructions:** consolidate and enhance AI artifact guidelines
([#206](#206))
([54dd959](54dd959))
* migrate chatmodes to agents architecture
([#210](#210))
([712b0b7](712b0b7))


### 🔧 Maintenance

* **build:** clean up workflow permissions for Scorecard compliance
([#183](#183))
([64686e7](64686e7))
* **deps-dev:** bump cspell in the npm-dependencies group
([#61](#61))
([38650eb](38650eb))
* **deps-dev:** bump glob from 10.4.5 to 10.5.0
([#74](#74))
([b3ca9fd](b3ca9fd))
* **deps-dev:** bump markdownlint-cli2 from 0.19.1 to 0.20.0 in the
npm-dependencies group
([#134](#134))
([ebfbe84](ebfbe84))
* **deps-dev:** bump the npm-dependencies group across 1 directory with
2 updates ([#109](#109))
([936ab84](936ab84))
* **deps-dev:** bump the npm-dependencies group with 2 updates
([#30](#30))
([cf99cbf](cf99cbf))
* **deps:** bump actions/upload-artifact from 5.0.0 to 6.0.0 in the
github-actions group
([#142](#142))
([91eac8a](91eac8a))
* **deps:** bump js-yaml, markdown-link-check and markdownlint-cli2
([#75](#75))
([af03d0e](af03d0e))
* **deps:** bump the github-actions group with 2 updates
([#108](#108))
([3e56313](3e56313))
* **deps:** bump the github-actions group with 2 updates
([#135](#135))
([4538a03](4538a03))
* **deps:** bump the github-actions group with 2 updates
([#62](#62))
([d1e0c09](d1e0c09))
* **deps:** bump the github-actions group with 3 updates
([#87](#87))
([ed550f4](ed550f4))
* **deps:** bump the github-actions group with 6 updates
([#162](#162))
([ec5bb12](ec5bb12))
* **devcontainer:** enhance gitleaks installation with checksum
verification ([#100](#100))
([5a8507d](5a8507d))
* **devcontainer:** refactor setup scripts for improved dependency
management ([#94](#94))
([f5f50d1](f5f50d1)),
closes [#98](#98)
* **security:** configure GitHub branch protection for OpenSSF
compliance ([#191](#191))
([90aab1a](90aab1a))

---
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>
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(extension): Implement pre-release versioning with agent maturity filtering

4 participants