chore: Initial work to add agent config schema#1741
Draft
mvicknr wants to merge 3 commits into
Draft
Conversation
Co-Authored-By: Claude <noreply@anthropic.com>
✅MegaLinter analysis: Success
See detailed reports in MegaLinter artifacts
|
Co-Authored-By: Claude <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1741 +/- ##
==========================================
- Coverage 82.08% 82.07% -0.02%
==========================================
Files 215 215
Lines 26309 26309
Branches 4150 4150
==========================================
- Hits 21597 21593 -4
- Misses 3301 3303 +2
- Partials 1411 1413 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Overview
Adds a script to automatically generate and update a configuration schema for the agent. This PR has the initial schema generated from the script.
The script will automatically run on local build and PR to main creation. It will determine if there are config changes and if so, it will update the schema and its version. On local, the dev should include these changes in their commit. In the PR build, if the changes aren't already made in the schema, it will make the changes and add them to the PR.
Testing
The agent includes a suite of tests which should be used to
verify your changes don't break existing functionality. These tests will run with
Github Actions when a pull request is made. More details on running the tests locally can be found in our
testing guidelines,
For most contributions it is strongly recommended to add additional tests which
exercise your changes.