fix: replace bare except with except Exception in analysis.py#1502
Open
srpatcha wants to merge 3 commits intogithub:stagedfrom
Open
fix: replace bare except with except Exception in analysis.py#1502srpatcha wants to merge 3 commits intogithub:stagedfrom
srpatcha wants to merge 3 commits intogithub:stagedfrom
Conversation
Bare except clauses catch SystemExit and KeyboardInterrupt which prevents clean process termination. Use except Exception per PEP 8.
Contributor
🔍 Skill Validator Results✅ All checks passed
Summary
Full validator output```text Found 1 skill(s) [datanalysis-credit-risk] 📊 datanalysis-credit-risk: 1,365 BPE tokens [chars/4: 1,546] (detailed ✓), 16 sections, 1 code blocks ✅ All checks passed (1 skill(s)) ``` |
Add comprehensive plugin validation tool with: - Schema validation for plugin definitions - Dependency checking across known plugins - Compatibility matrix verification - Both JSON and human-readable report generation - CLI interface with configurable options - Minimal YAML parser for plugin files Signed-off-by: Srikanth Patchava <spatchava@meta.com>
Test suite covering YAML parsing, semver validation, URL validation, license checking, and schema validation. Signed-off-by: Srikanth Patchava <spatchava@meta.com>
aaronpowell
requested changes
Apr 28, 2026
Contributor
aaronpowell
left a comment
There was a problem hiding this comment.
The test-plugins scripts are unrelated to the PR description, and we already have scripts in the repo related to validating plugins.
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.
Summary
Replaces bare \�xcept:\ with \�xcept Exception:\ in \skills/publish-to-pages/scripts/convert-pdf.py\ analysis function to avoid catching \SystemExit\ and \KeyboardInterrupt.
Re-targeted to \staged\ branch as requested in #1500.
Signed-off-by: Srikanth Patchava spatchava@meta.com