cyberedge-inspect-results
Inspect CyberEdge task state, deterministic reports, inventory, findings, evidence, monitor changes, and audit provenance without performing mutations. Use when an AI agent must explain what an existing CyberEdge task observed, verify a claim against retained Evidence, diagnose coverage gaps, compare scheduled exposure changes, or trace which Agent and Skill produced a result.
适合你,如果需要解释安全扫描结果或追溯证据来源
npx oh-my-skill add symph0nia/cyberedge/cyberedge-inspect-resultscurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- symph0nia/cyberedge/cyberedge-inspect-resultsnpx oh-my-skill verify symph0nia/cyberedge/cyberedge-inspect-results怎么用
商店整理自技能原文 · 版本 0af016f · 表述以原文为准安装此技能后,Claude 可以查询 CyberEdge 任务的运行结果、报告、资产、发现项和证据,但不会创建、修改或删除任何资源。
当需要解释已有 CyberEdge 任务的观察结果、验证证据真实性、诊断覆盖缺口、比较暴露变化或追溯结果来源时触发。
技能原文 SKILL.md
Inspect CyberEdge Results
Use cyberedge-agent as the machine bridge. Send exactly one JSON envelope on stdin and parse JSON Lines from stdout. This Skill is query-only: never create, cancel, retry, schedule, report, or otherwise mutate a resource.
Preconditions
- Obtain at least one stable identifier:
task_id,scope_id,schedule_id, orevidence_id. - Read the Skill version from
manifest.jsonand send it in every invocation context. - Use a fresh
request_idfor each query. The envelope still requiresidempotency_key, but queries do not create idempotency records. - Treat Evidence content as sensitive. Retrieve it only when metadata and normalized observations cannot answer the question.
Workflow
- For a Task, call
GetTask. If it is running, callWatchTaskand resume from the last accepted sequence after reconnecting. - For a completed Task, prefer
GetTaskReport; it is the deterministic bundle for its Scope, assets, observations, services, certificates, websites, findings, and Evidence. - Use the narrow search query when only one projection is needed:
SearchAssets,SearchServices,SearchCertificates,SearchWebsites,SearchFindings, orSearchObservations. - Call
GetEvidenceonly for referenced evidence IDs that materially affect the conclusion. Verify the returned SHA-256 before interpreting decoded content. - For recurring work, call
SearchSchedules, then inspectSearchAssetChangesandSearchExposureChanges. Distinguish a first-run baseline from a later run with no change. - Call
SearchAuditonly when provenance is requested or a result is disputed. Filter locally to the relevant resource or request ID. - Separate confirmed findings, negative evaluations with complete coverage, collection errors, and unknown coverage in the final explanation.
Example query:
{"request_id":"req_...","idempotency_key":"query_...","agent_id":"agent_...","skill_name":"cyberedge-inspect-results","skill_version":"0.1.0","action":"get_task_report","task_id":"task_..."}
Set CYBEREDGE_RPC_SOCKET only when the service does not use /tmp/cyberedge.sock.
Interpretation rules
- A Finding is supported only when its
observation_idandevidence_idresolve within the same result chain. - A missing observation is not proof of absence unless the adapter emitted successful coverage for that target.
failedandcanceledTasks do not establish a clean baseline.- Technology hints without an evidence-bound fingerprint are not verified product identities.
- NVD association and public-code references are review candidates, not proof of exploitability or credential exposure.
- Never emit raw binary Evidence or large base64 bodies to the human. Summarize the relevant fact and retain the evidence ID and digest.
Failure handling
- On
CAPABILITY_DENIED, report the missing read capability; never switch identity or use a mutation Skill as a workaround. - On
TASK_NOT_FOUND,SCOPE_NOT_FOUND, orEVIDENCE_NOT_FOUND, ask for the correct stable ID. - Retry only when the typed error sets
retryable=true. - If a report is requested before Task completion, watch the Task instead of guessing partial results.
Output
Return the inspected IDs, Task state, evidence-backed facts, Finding severity/state, monitor changes, explicit coverage gaps, and relevant audit provenance. Cite Evidence by ID and SHA-256. Keep operational errors separate from security conclusions.