Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

scrutineer

scrutineer contiene 32 skills recopiladas de alpha-omega-security, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
32
Stars
138
actualizado
2026-07-15
Forks
26
Cobertura ocupacional
3 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

recon
Analistas de seguridad de la información

Map distinct externally reachable input-processing subsystems into focus areas for the threat-model skill to carry into later security audits. This is a short, read-only orientation pass, not a vulnerability scan.

2026-07-15
threat-model
Analistas de seguridad de la información

Derive a project's security contract from its source and docs, then emit it as structured data other skills can cite. Records what the project assumes about callers and inputs, what properties it claims and disclaims, which code is out of scope, and which recurring tool findings are known-safe. This is not a vulnerability scan; it produces the trust map that security-deep-dive loads instead of re-deriving boundaries per run.

2026-07-15
triage
Desarrolladores de software

Default pipeline scrutineer runs when a repository is added. Triggers a standard set of other skills in parallel, then writes a short summary of what was enqueued. Edit the list below to change the default scan coverage without touching scrutineer's Go code.

2026-07-15
security-deep-dive
Analistas de seguridad de la información

Audit first-party source for security vulnerabilities using an inventory-first, six-step per-sink methodology. Use when you want a thorough scan that distinguishes real findings from pattern matches and records both in a machine-readable report. The target is this codebase's own code, not its dependencies.

2026-07-10
finding-dedup
Analistas de seguridad de la información

Compare open findings in one repository and record how they relate. Marks same-vulnerability findings as duplicates, findings that another finding's fix will close as subsumed, and findings that combine into a higher-severity attack as a chain.

2026-07-10
vuln-scan
Analistas de seguridad de la información

High-recall static source-code vulnerability scan adapted from Anthropic's defending-code reference harness. Fans out by focus area, ranks candidates by confidence, and emits Scrutineer findings for later verification.

2026-07-10
revalidate
Desarrolladores de software

Cheap finding classifier. Reads a finding's six-step trace plus git history at its location and decides true_positive, false_positive, already_fixed, or uncertain, with an optional adjusted severity. Read-only; never executes the reproduction. Run automatically over High and Critical findings from security-deep-dive so the human queue is pre-sorted, and over imported findings whose severity is an external tool's unvalidated claim.

2026-07-09
semgrep
Desarrolladores de software

Run semgrep's `p/security-audit` and `p/secrets` rulesets and map hits into the findings shape.

2026-07-09
advisory-deep-dive
Desarrolladores de software

Re-audit every past GHSA/CVE advisory published against this repository, anchored on each advisory's fix commit, for three failure modes — a bypass of the fix, an incomplete fix that left a path open, and the same class of bug in sibling code the fix never touched. Use when you want to prove that prior fixes actually held rather than trusting that a shipped patch closed the hole. The target is this codebase's own first-party source, not its dependencies.

2026-07-09
disclose
Desarrolladores de software

Draft the disclosure content for a finding in GitHub Security Advisory shape. Produces a title, markdown description, affected package block, CVSS vector, CWE list, and references, then writes them back to the finding so the analyst can paste them into the GHSA form (or POST to GitHub's repository-advisories REST endpoint) rather than composing from scratch.

2026-07-09
reachability
Desarrolladores de software

Check whether known sinks in this application's dependencies are reachable from its own trust boundaries. Scrutineer already holds findings against the libraries this app uses; this skill traces each one from the app's entry points to the library call and reports the ones an attacker can reach. Use on applications (Gemfile.lock / package-lock.json present), not on libraries.

2026-07-09
report-upstream
Desarrolladores de software

File a finding on the upstream repository through GitHub's private vulnerability reporting, request the temporary private fork, and push the proposed patch to it when available. Use after disclose has produced a draft and (optionally) patch has produced a gated diff. This is the step that crosses the line to the maintainer; everything before it is internal.

2026-07-09
breaking-change
Desarrolladores de software

Decide whether a finding's suggested fix is a breaking change for top dependents. Reads the unified-diff fix on the finding, identifies the public API surface that changes (signatures, exports, removed fields, renamed types), and lists which top dependents are most likely to break. Static analysis on the diff and the dependent metadata from the scrutineer API; never executes dependent code.

2026-07-09
cna-match
Desarrolladores de software

Match the repository to a CVE Numbering Authority so disclosures route to the CNA's security contact when one covers the repo.

2026-07-09
exposure
Desarrolladores de software

For one (finding, dependent) pair, decide whether the dependent's code reaches the upstream finding. Emits a CSAF 2.0 product_status verdict with VEX justification.

2026-07-09
ingest
Desarrolladores de software

Normalize an externally-produced security report in an arbitrary format into scrutineer findings. The raw report is staged at import/report by the /v1/import fallback; read it, extract each distinct finding, resolve locations against the checkout, and write the findings report. Runs when no deterministic importer recognised the payload.

2026-07-09
maintainers
Desarrolladores de software

Identify the real maintainers of a repository and the best way to contact them about a security issue. Distinguishes active leads from occasional contributors and bots, using commit history, issue activity, and registry ownership. Use when preparing a disclosure and needing to know who to reach.

2026-07-09
mitigate
Desarrolladores de software

Draft operational mitigations for a finding consumers can apply before a fix ships. Workarounds (config flags, input restrictions, safe defaults), detection guidance (what to log and what pattern to alert on), and optionally a semgrep rule that flags the same pattern in other code bases. Distinct from disclose, which drafts the public advisory, and from patch, which proposes the code fix.

2026-07-09
patch
Desarrolladores de software

Propose a code patch for a finding. Produces a unified diff against the scanned ref plus a short rationale; a diff that passes the worker's applicability gate is stored on the finding as its suggested fix, and a summary note is posted for analyst review. The skill never pushes to the remote.

2026-07-09
posture
Analistas de seguridad de la información

Assess a repository's security posture and its readiness to receive a vulnerability report. Checks for a security policy, private vulnerability reporting, security.txt, prior advisories, scanning workflows, and other hygiene signals, then rates the project ready / partial / unprepared. Use before disclosure to decide how much hand-holding the maintainer will need, or as a standalone health check.

2026-07-09
verify
Analistas de garantía de calidad de software y probadores

Re-run a finding's reproduction against current HEAD and record whether it is confirmed, fixed, inconclusive, or deferred.

2026-07-09
release-watch
Analistas de seguridad de la información

After a finding has been marked fixed, watch the upstream for a release that contains the fix. When one shows up, record the release tag, URL, and timestamp on the finding. Closes the gap between "the maintainer landed a patch" and "consumers have a shipped version they can pin to".

2026-06-28
repo-overview
Desarrolladores de software

Run `brief --json` to produce a structured overview of the repository. Used by other skills as orientation.

2026-06-26
sbom
Desarrolladores de software

Generate a CycloneDX SBOM for the repository via `git-pkgs sbom`. Stored verbatim on the scan.

2026-06-26
advisories
Analistas de seguridad de la información

Fetch published GHSA and CVE advisories affecting any package this repository produces, via advisories.ecosyste.ms.

2026-06-22
dependencies
Desarrolladores de software

Index the repository's dependencies via `git-pkgs list`, recording manifest path, ecosystem, and requirement per entry.

2026-06-18
public-issue
Analistas de seguridad de la información

File a low-severity finding as an ordinary public GitHub issue after explicit analyst confirmation. Use for hardening gaps, defence-in-depth misses, and other bugs that do not warrant coordinated private disclosure.

2026-06-18
metadata
Desarrolladores de software

Fetch repository metadata (description, default branch, languages, license, stars, archived, icon) from repos.ecosyste.ms and save it on the repository row.

2026-06-15
zizmor
Analistas de seguridad de la información

Audit GitHub Actions workflows with zizmor and map hits into the findings shape.

2026-06-15
fork
Desarrolladores de software

Stage a scanned repository into a private repo in the configured GitHub organisation. Creates the repo (no fork relationship), seeds it with the upstream tree, writes scrutineer metadata under the configured metadata directory, files one issue per open finding, and gives an org team push access. The staging repo is the per-project working surface for triage, fix development, and the disclosure paper trail.

2026-06-12
packages
Desarrolladores de software

Look up every package this repository publishes across all registries via packages.ecosyste.ms, with downloads, dependent counts, latest version, and registry URL.

2026-06-08
subprojects
Analistas de seguridad de la información

Enumerate scannable sub-folders inside a repository. Identifies monorepo packages, workspaces, and discrete modules so the analyst can scope deep-dive scans to a specific sub-path instead of treating a huge tree as one unit. Runs at repo level; writes back a list that surfaces on the repo overview.

2026-05-07