원클릭으로
add-cert
Add a new security certification to the roadmap by writing data/certs/<vendor>/<slug>.json from official + third-party sources.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add a new security certification to the roadmap by writing data/certs/<vendor>/<slug>.json from official + third-party sources.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a new authoritative source agency to data/sources/agencies.json so that future cert evaluations can cite it.
Compute every cert's tier (foundational / associate / professional / expert / specialty) by simulating three independent reviewer personas, and gate the run on persona disagreement.
Curate cross-vendor "commonly taken before" recommendations based on community / industry reputation. Adds entries to prerequisites.recommended_certs[] tagged with source "community" and a one-sentence rationale. Distinct from infer-relationships (which only handles official ladders).
Propose prerequisite cert relationships across the entire roadmap from neutral AI analysis of cert facts. Both within-vendor ladders and cross-vendor industry-conventional flows are in scope.
Triage a GitHub Issue (add-cert / update-cert / add-source / evaluation) and dispatch to the right skill, ending with a draft PR or a clarifying comment.
Bootstrap-time skill that web-researches the latest popular security certifications per domain and drafts JSON stubs for any missing ones, as one PR per domain.
| name | add-cert |
| description | Add a new security certification to the roadmap by writing data/certs/<vendor>/<slug>.json from official + third-party sources. |
The user (or an Issue picked up by respond-to-issue) names a certification
that should appear in the roadmap. You verify it does not already exist,
research it from primary sources, and write a single new JSON file.
data/domains.json)japan_only (true for IPA, SEA/J, JP-only national exams)Dedupe. Check data/manifest.json and data/certs/<vendor-slug>/.
If the cert already exists, refuse and point at the existing file (or
delegate to update-cert).
Fetch the official source using WebFetch. Required: an authoritative
URL on the vendor's domain (or the issuing government agency's domain).
Capture today's date as official.fetched_at.
Find at least two third-party evaluations. Acceptable sources are
listed in data/sources/agencies.json under trust_tier: high (NIST
NICE, DoD 8140 baseline list, ANSI ISO/IEC 17024 directory, IPA registry,
ENISA, NCSC-UK, CREST, JPCERT, NISC). Vendor self-assessment does not
count. If you cannot find two, stop and ask the user; do not invent
evaluations.
Identify scoring factors. Plus factors are evidence the cert is
substantive (regulatory recognition, accreditation, hands-on practical,
long-standing reputation, performance-based exam, requires verified
experience). Minus factors are evidence it is weaker than its
reputation (vendor-only recognition, no accreditation, multiple-choice
only, very short exam, recently created without uptake, expensive
renewal). Every factor needs a code (UPPER_SNAKE) and a weight_hint
(low / medium / high). Where you have a URL for the claim, attach it as
evidence.
Write the JSON file at data/certs/<vendor-slug>/<cert-slug>.json,
conforming to schema/certification.schema.json. Leave evaluation as:
{ "computed_tier": null, "computed_at": null, "computed_by_skill": null, "rationale": null }
Populate prerequisites.recommended_certs[] with the ids of any certs
the official source explicitly lists as prerequisites or strongly
recommends as preparation. The roadmap UI inverts this list to draw
"commonly followed by" arrows from each prereq to its successors, so
keeping it accurate makes the visual roadmap useful. Use ids exactly as
they appear in data/manifest.json (e.g. "isc2.cissp"). It is OK to
reference certs that don't yet exist in the manifest — the UI will mark
them as missing.
Set availability if the cert is not actively examinable. Default
is available (omit the field). Use paused when the vendor has
explicitly suspended exam delivery without retiring the cert; retired
when delivery has ended; coming-soon for announced but not-yet-launched
exams. Pair with a short availability_note quoting the vendor's
wording when possible.
Update the manifest. Run python3 scripts/build_manifest.py (or
make manifest).
Validate. Run make validate. Fix any schema errors before
considering the work done.
Hand off to infer-relationships. Run
python3 scripts/infer_relationships.py --dry-run to surface any
prerequisite edges (same-vendor ladder steps + curated cross-vendor
industry flows) the new cert should have. Apply the ones the
maintainer accepts, then proceed.
Hand off to evaluate-roadmap-3-personas. Tell the user the new
cert exists with evaluation.computed_tier = null and the evaluation
skill must be re-run before the PR is mergeable.
data/certs/isc2/cissp.json is the canonical shape. Mirror its field
ordering for readability.