Discover and install skills to enhance your AI agent's capabilities.
| Name | Contains | Score |
|---|---|---|
requirement-comparison-reporter santosomar/general-secure-coding-agent-skills Compares two versions of a requirements document and reports additions, removals, semantic changes, and scope drift — distinguishing clerical edits from meaning changes. Use when a spec was revised, when checking if a new version of a standard affects you, or when the user asks what changed between spec versions. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
python-to-lean4-translator santosomar/general-secure-coding-agent-skills Translates Python into Lean 4 for interactive theorem proving, handling dynamic types and duck typing by specializing to the concrete types actually used. Use when proving correctness of a Python algorithm beyond what testing can establish, or when building a verified reference for numerical or combinatorial Python code. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
dependency-resolver santosomar/general-secure-coding-agent-skills Diagnoses and resolves package dependency conflicts — version mismatches, diamond dependencies, cycles — across npm, pip, Maven, Cargo, and similar ecosystems. Use when install fails with a resolution error, when two packages require incompatible versions of a third, or when upgrading one dependency breaks another. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
requirement-enhancer santosomar/general-secure-coding-agent-skills Rewrites vague or incomplete requirements into precise, testable statements — filling in quantities, actors, conditions, and error behavior while preserving intent. Use after ambiguity-detector flags problems, when a requirement can't be turned into a test, or when engineers keep asking the same clarification questions. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
pseudocode-extractor santosomar/general-secure-coding-agent-skills Extracts language-agnostic pseudocode from real code, stripping syntax noise and language-specific machinery while preserving the algorithmic structure. Use when documenting an algorithm for a paper or spec, when porting and wanting a neutral intermediate, or when explaining code to someone who doesn't know the source language. | Skills | 94 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
change-log-generator santosomar/general-secure-coding-agent-skills Generates a structured CHANGELOG.md from VCS history and PR/issue references, categorized by change type. Use when cutting a release, when the user asks to update CHANGELOG.md, or when backfilling a changelog from git history. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
test-guided-migration-assistant santosomar/general-secure-coding-agent-skills Uses an existing test suite as the behavioral oracle during a migration, tracking which tests pass at each step and localizing regressions to specific migration changes. Use when porting or refactoring code that has tests, when the user wants to migrate incrementally with a safety net, or when a migration broke something and you need to find which step did it. | Skills | 97 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
test-case-documentation santosomar/general-secure-coding-agent-skills Writes documentation for test cases — names, docstrings, and comments that explain what behavior is being tested and why, so a failing test tells you what broke without reading the assertion. Use when test names are test_1 through test_47, when tests fail and nobody knows what they mean, or when onboarding needs a readable test suite. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
cd-pipeline-generator santosomar/general-secure-coding-agent-skills Generates deployment pipelines with environment promotion, approval gates, and rollback triggers based on target infrastructure. Use when wiring automated deployments from CI to staging/production, when the user asks for a release pipeline, or when adding promotion gates to an existing deploy workflow. | Skills | 97 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
model-guided-code-repair santosomar/general-secure-coding-agent-skills Uses a model checker's counterexample trace to localize the fault in the model, propose a fix, and propagate that fix back to the source code. Use when a model checker (TLC, NuSMV, Spin) finds a violation and you need to turn the trace into a code change, not just understand it. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
build-ci-migration-assistant santosomar/general-secure-coding-agent-skills Assists migrating a build or CI pipeline from one system to another — Jenkins to GitHub Actions, Travis to GitLab CI, Makefile to Bazel — preserving semantics and surfacing untranslatable constructs. Use when switching CI providers, when modernizing a legacy build, or when the user pastes a Jenkinsfile and asks for the GitHub Actions equivalent. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
bug-localization santosomar/general-secure-coding-agent-skills Pinpoints the exact file, function, or line in a codebase responsible for a reported bug using static and dynamic analysis signals. Use when a bug is reported but the fault location is unknown, when narrowing down a failure to a specific code region, when triaging an issue tracker ticket, or when the user asks to locate where a bug originates. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
counterexample-to-test-generator santosomar/general-secure-coding-agent-skills Converts a model checker counterexample trace into an executable test case in the source language, so the bug found in the model is reproducible (and regression-guarded) in the real code. Use when TLC/NuSMV/Spin finds a violation and you want a failing test before writing the fix. | Skills | 90 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
semantic-szz-analyzer santosomar/general-secure-coding-agent-skills Extends classic SZZ with semantic code understanding to reduce false positives and improve accuracy of bug-introducing commit identification. Use after classic SZZ has produced candidates, when SZZ precision is too low for the task, or when the user needs high-confidence bug-introduction data. | Skills | 85 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
bug-to-patch-generator santosomar/general-secure-coding-agent-skills Automatically synthesizes code patches to fix identified bugs, leveraging the bug location and surrounding context. Use when a bug has been localized and the user wants an automated fix, when generating candidate patches for review, or when the user asks to fix a specific bug. | Skills | 93 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
test-oracle-generator santosomar/general-secure-coding-agent-skills Generates test oracles — the "expected output" part of a test — by choosing among reference implementations, invariants, inverse functions, or differential comparison when the correct answer isn't obvious. Use when the hard part of testing is knowing what the right answer is, not generating inputs. | Skills | 90 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
behavior-preservation-checker santosomar/general-secure-coding-agent-skills Verifies that a refactoring or transformation preserved observable behavior by comparing before and after execution, differential testing, or I/O capture. Use after a refactoring, after automated code transformation, before merging a structural PR, or whenever the claim is that two code versions do the same thing. | Skills | 97 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
mocking-test-generator santosomar/general-secure-coding-agent-skills Generates tests that mock external dependencies — HTTP, databases, filesystems, clocks — isolating the unit under test while still exercising realistic interactions. Use when the code has side effects you can't run in a test, when external services are slow or unavailable, or when testing error paths that are hard to trigger for real. | Skills | 90 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
c-cpp-to-lean4-translator santosomar/general-secure-coding-agent-skills Translates C/C++ into Lean 4 for interactive theorem proving — deep verification where automated tools fail. Use when Dafny's automation isn't enough, when proving mathematical properties of an algorithm, or when building a machine-checked proof for publication or certification. | Skills | 93 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
scenario-generator santosomar/general-secure-coding-agent-skills Generates concrete scenarios from a requirement — happy paths, edge cases, and error conditions — expressed as Given/When/Then or equivalent structured narratives. Use when turning a requirement into acceptance tests, when exploring what could go wrong, or when the requirement is abstract and needs grounding. | Skills | 100 Impact Pending Average score across 0 eval scenarios Reviewed: Version: 47d56bb |
Can't find what you're looking for? Evaluate a missing skill, or if you're looking for agent context for an open source dependency, request a tile.