Discover and install skills to enhance your AI agent's capabilities.
| Name | Contains | Score |
|---|---|---|
release-notes-writer santosomar/general-secure-coding-agent-skills Transforms a changelog or commit range into user-friendly release notes with highlights, upgrade guidance, and narrative framing. Use when publishing a release announcement, when the changelog is too dense for users to read, or when the user needs a blog-post-shaped summary of a version. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues 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 Securityby Passed No known issues Reviewed: Version: 47d56bb |
traceability-matrix-generator santosomar/general-secure-coding-agent-skills Builds a bidirectional traceability matrix linking requirements to design elements, code, and tests — so every requirement traces forward to its implementation and every test traces back to its justification. Use for compliance audits, when answering why a piece of code exists, or when checking that nothing was built without a reason. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
code-pattern-extractor santosomar/general-secure-coding-agent-skills Identifies recurring structural patterns in a codebase — idioms, copy-paste clones, homegrown abstractions — and characterizes each as a reusable template. Use when learning a codebase's conventions, when hunting for copy-paste that should be a function, or when documenting how this team does things. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
runtime-error-explainer santosomar/general-secure-coding-agent-skills Translates cryptic runtime error messages and stack traces into understandable explanations, pointing to the concrete line at fault and the most likely fix. Use when a user pastes an error they don't understand, when a stack trace is deep and the user doesn't know where to start, or when an error message misleads about the real cause. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Advisory Suggest reviewing before use Reviewed: Version: 47d56bb |
code-review-assistant santosomar/general-secure-coding-agent-skills Performs structured code review on a diff or file set, producing inline comments with severity levels and a summary. Checks correctness, error handling, security, and maintainability — in that priority order. Use when reviewing a pull request, when the user asks for a code review, when preparing code for merge, or when a second opinion is needed on a change. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues 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 Securityby Passed No known issues Reviewed: Version: 47d56bb |
coverage-enhancer santosomar/general-secure-coding-agent-skills Raises test coverage by identifying uncovered code regions, ranking them by risk, and generating targeted tests that hit them — prioritizing branches and conditions over raw line count. Use when coverage is below target, when untested code is blocking a release, or when deciding which tests to write next. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
api-design-assistant santosomar/general-secure-coding-agent-skills Reviews and designs API contracts — function signatures, REST endpoints, library interfaces — for usability, evolvability, and the principle of least surprise. Use when designing a new public interface, when reviewing an API PR, when the user asks whether a signature is well-designed, or when planning a breaking change. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues 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 Securityby Passed No known issues Reviewed: Version: 47d56bb |
ambiguity-detector santosomar/general-secure-coding-agent-skills Detects ambiguity in natural-language requirements — weak words, dangling references, underspecified quantities, conflicting interpretations — before they become implementation bugs. Use when reviewing requirements, when a spec uses words like "appropriate" or "fast", or when two engineers read the same requirement and built different things. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
ci-pipeline-synthesizer santosomar/general-secure-coding-agent-skills Generates CI pipeline configs by analyzing a repo's structure, language, and build needs — GitHub Actions, GitLab CI, or other platforms. Use when bootstrapping CI for a new repo, when porting from one CI to another, when the user asks for a pipeline that builds and tests their project, or when wiring in security gates. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues 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 Securityby Passed No known issues Reviewed: Version: 47d56bb |
specification-to-temporal-logic-generator santosomar/general-secure-coding-agent-skills Translates specifications into temporal logic formulas (LTL, CTL, or TLA) by matching the specification's shape to the right logic and operators. Use when formalizing requirements for any model checker, when choosing between LTL and CTL for a property, or when the user has a temporal claim and doesn't know which operators express it. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
test-suite-prioritizer santosomar/general-secure-coding-agent-skills Orders tests so failures surface earliest — runs tests covering changed code first, historically flaky/failing tests early, and slow low-value tests last. Use when the suite is too slow to run in full on every change, when CI feedback takes too long, or when deciding what to run in a smoke-test tier. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
code-summarizer santosomar/general-secure-coding-agent-skills Produces natural-language summaries of what code does at the function, class, module, or subsystem level, with length and abstraction scaled to the scope. Explains purpose, side effects, and non-obvious behavior rather than restating syntax. Use when onboarding to unfamiliar code, when the user asks what something does, when generating docstrings or architecture notes, or when preparing a handoff document. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
multi-version-behavior-comparator santosomar/general-secure-coding-agent-skills Compares the runtime behavior of two or more versions of the same code by running them on identical inputs and diffing outputs, side effects, and errors. Use when validating a refactor, port, or optimization; when the user asks if two implementations behave the same; or when investigating a suspected regression across versions. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 47d56bb |
swift-concurrency-expert Dimillian/Skills Swift Concurrency review and remediation for Swift 6.2+. Use when asked to review Swift Concurrency usage, improve concurrency compliance, or fix Swift concurrency compiler errors in a feature or file. Concrete actions include adding Sendable conformance, applying @MainActor annotations, resolving actor isolation warnings, fixing data race diagnostics, and migrating completion handlers to async/await. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 05ba982 |
macos-spm-app-packaging Dimillian/Skills Scaffold, build, and package SwiftPM-based macOS apps without an Xcode project. Use when you need a from-scratch macOS app layout, SwiftPM targets/resources, a custom .app bundle assembly script, or signing/notarization/appcast steps outside Xcode. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: 2bf48d7 |
app-store-changelog Dimillian/Skills Create user-facing App Store release notes by collecting and summarizing all user-impacting changes since the last git tag (or a specified ref). Use when asked to generate a comprehensive release changelog, App Store "What's New" text, or release notes based on git history or tags. | Skills | 100 Impact Pending Average score across 0 eval scenarios Securityby Passed No known issues Reviewed: Version: da4e31a |
Can't find what you're looking for? Evaluate a missing skill.