Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

scrutineer

scrutineer에는 alpha-omega-security에서 수집한 skills 32개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
32
Stars
138
업데이트
2026-07-15
Forks
26
직업 범위
직업 카테고리 3개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

recon
정보 보안 분석가

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
정보 보안 분석가

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
소프트웨어 개발자

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
정보 보안 분석가

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
정보 보안 분석가

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
정보 보안 분석가

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
소프트웨어 개발자

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
소프트웨어 개발자

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

2026-07-09
advisory-deep-dive
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
정보 보안 분석가

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
소프트웨어 품질 보증 분석가·테스터

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

2026-07-09
release-watch
정보 보안 분석가

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
소프트웨어 개발자

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

2026-06-26
sbom
소프트웨어 개발자

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

2026-06-26
advisories
정보 보안 분석가

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

2026-06-22
dependencies
소프트웨어 개발자

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

2026-06-18
public-issue
정보 보안 분석가

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
소프트웨어 개발자

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
정보 보안 분석가

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

2026-06-15
fork
소프트웨어 개발자

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
소프트웨어 개발자

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
정보 보안 분석가

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
scrutineer GitHub Agent Skills | SkillsMP