-
Notifications
You must be signed in to change notification settings - Fork 26
Agentready quick fixes #1331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
yashvardhannanavati
merged 3 commits into
release-engineering:main
from
yashvardhannanavati:agentready-quick-fixes
May 14, 2026
Merged
Agentready quick fixes #1331
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| excluded_attributes: | ||
| # Not applicable to this Python API service | ||
| - dbt_project_config | ||
| - dbt_model_documentation | ||
| - dbt_data_tests | ||
| - dbt_project_structure | ||
| - container_setup | ||
| - progressive_disclosure | ||
| # Requires GitHub API integration — cannot be assessed from repo contents | ||
| - branch_protection | ||
| # False positive: pip-compile --generate-hashes format misread as unpinned deps | ||
| - lock_files | ||
| # False positive: tox-based quality gates (black, flake8, mypy, pytest) not | ||
| # recognised by agentready's keyword pattern matching on CI job names | ||
| - ci_quality_gates | ||
| # Blocked: AGENTS.md is CI-enforced to ≤60 lines; single-file commands cannot | ||
| # be added without breaching that limit | ||
| - single_file_verification | ||
| # External optional tool; not a meaningful quality gate for this project | ||
| - repomix_config |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| --- | ||
| name: Bug report | ||
| about: Report a reproducible bug in IIB | ||
| title: '[BUG] ' | ||
| labels: bug | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Describe the bug** | ||
| A clear description of what is broken. | ||
|
|
||
| **Request type** | ||
| Which IIB request type is affected? (add / rm / merge-index-image / regenerate-bundle / fbc-operations / create-empty-index) | ||
|
|
||
| **To reproduce** | ||
| Steps or minimal API call to reproduce the behaviour. | ||
|
|
||
| **Expected behaviour** | ||
| What should have happened instead. | ||
|
|
||
| **Logs / error output** | ||
| Paste relevant API or worker log lines (redact tokens and credentials). | ||
|
|
||
| **Environment** | ||
| - IIB version / commit: | ||
| - OpenShift / OCP version: | ||
| - OPM version: |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| --- | ||
| name: Feature request | ||
| about: Propose a new capability or improvement | ||
| title: '[FEATURE] ' | ||
| labels: enhancement | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Problem / motivation** | ||
| What problem does this solve? Who is affected? | ||
|
|
||
| **Proposed solution** | ||
| Describe the change you'd like to see, including any new API endpoints or request types. | ||
|
|
||
| **Alternatives considered** | ||
| Other approaches you explored and why they were rejected. | ||
|
|
||
| **Additional context** | ||
| Relevant upstream issues, RFCs, or related PRs. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| ## Summary | ||
|
|
||
| <!-- Describe what this PR does and why. Link to the relevant issue if applicable. --> | ||
|
|
||
| Fixes # | ||
|
|
||
| ## Type of change | ||
|
|
||
| - [ ] Bug fix | ||
| - [ ] New feature / request type | ||
| - [ ] Refactor | ||
| - [ ] Documentation | ||
| - [ ] CI / tooling | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] Unit tests added or updated (`tox -e py312`) | ||
| - [ ] All tests and linters pass (`tox`) | ||
| - [ ] New Alembic migration created if models changed (never edit existing migrations) | ||
| - [ ] API ↔ Worker task signatures kept in sync if task args changed | ||
| - [ ] CHANGELOG.md updated if user-visible behaviour changes |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| --- | ||
| name: AgentReady Assessment | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| agentready: | ||
| name: Check repo with agentready | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 | ||
|
|
||
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 | ||
| with: | ||
| python-version: '3.12' | ||
|
|
||
| - name: Install agentready | ||
| run: python -m pip install agentready==2.35.1 | ||
|
|
||
| - name: Run agentready check | ||
| run: | | ||
| agentready --version | ||
| agentready assess --config "${GITHUB_WORKSPACE}"/.agentready/config/.agentready-config.yaml . | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| repos: | ||
| - repo: https://github.com/psf/black | ||
| rev: 22.3.0 | ||
| hooks: | ||
| - id: black | ||
| args: [--line-length, "100", --skip-string-normalization] | ||
|
|
||
| - repo: https://github.com/PyCQA/flake8 | ||
| rev: 7.3.0 | ||
| hooks: | ||
| - id: flake8 | ||
| args: [--max-line-length, "100", --ignore, "D100,D104,D105,W503"] | ||
|
|
||
| - repo: https://github.com/compilerla/conventional-pre-commit | ||
| rev: v4.0.0 | ||
| hooks: | ||
| - id: conventional-pre-commit | ||
| stages: [commit-msg] | ||
| args: [feat, fix, docs, style, refactor, test, chore, ci, build, perf] |
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.
Uh oh!
There was an error while loading. Please reload this page.