ソース情報
- リポジトリ
- wisam79/dental
- ソースの最終更新活動
- 2026年2月18日 11:37
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/wisam79/dental --skill verify-integrityコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | verify_integrity |
| description | Verify the digital integrity of forensic evidence and audit logs. |
Use this skill to ensure that evidence files, database records, and logs have not been tampered with. This is critical for maintaining the Chain of Custody.
DentalID.Core.Interfaces.IIntegrityService (Hashing logic)DentalID.Core.Entities.DentalImage (Stores FileHash)System.Security.Cryptography.SHA256Verify File Integrity:
FileHash in the database (DentalImage.FileHash).Verify Audit Log Chain:
PreviousHash of the current log entry matches the Hash of the previous entry.Digital Seal Verification:
using System.Security.Cryptography;
public bool VerifyEvidence(DentalImage evidence, string currentFilePath)
{
if (!File.Exists(currentFilePath)) return false;
// Use Interface Method
var currentHash = await integrityService.ComputeFileHashAsync(currentFilePath);
// Compare
bool isValid = string.Equals(currentHash, evidence.FileHash, StringComparison.OrdinalIgnoreCase);
if (!isValid)
{
Console.WriteLine($"[SECURITY ALERT] Hash Mismatch for Image {evidence.Id}!");
Console.WriteLine($"Expected: {evidence.FileHash}");
Console.WriteLine($"Actual: {currentHash}");
}
return isValid;
}