用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wisam79/dental --skill manage-lab命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | manage_lab |
| description | Manage subjects, cases, and administrative lab tasks. |
Use this skill to perform CRUD operations on Subjects and Cases, archive closed cases, and generate lab performance reports.
DentalID.Core.Interfaces.ISubjectRepositoryDentalID.Core.Interfaces.ICaseRepositoryDentalID.Core.Entities.SubjectDentalID.Core.Entities.CaseOnboard New Subject:
Subject entity.FullName (or "Unknown-{Date}" for John Does), Gender (if known).SUB-{YYYY}-{SEQ}.Create Case:
Subject to a Case.Open.Investigator (currrent user).Archive Case:
ClosedSolved or ClosedUnsolved.Advanced: Bulk Import:
manifest.json or folder structure (SubjectName/Image.jpg).Subject.DentalImage, Calculate Hash, Move to Storage.Lab Reporting:
OpenCases, AverageTurnaroundTime, and MatchSuccessRate.public async Task<Case> CreateNewInvestigation(string subjectName, ISubjectRepository subRepo, ICaseRepository caseRepo)
{
// 1. Create Subject
var subject = new Subject
{
FullName = subjectName,
SubjectId = $"SUB-{DateTime.Now.Year}-{Guid.NewGuid().ToString().Substring(0, 4)}"
};
await subRepo.AddAsync(subject);
// 2. Open Case
var newCase = new Case
{
SubjectId = subject.Id,
Status = CaseStatus.Open,
OpenedAt = DateTime.UtcNow,
Description = "New forensic intake"
};
await caseRepo.AddAsync(newCase);
return newCase;
}