用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/u9401066/med-paper-assistant --skill ddd-architect命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Run multiple complementary literature searches and merge results for broad coverage. Triggers include parallel search, 並行搜尋, 廣泛搜尋.
Cross-agent workflow for evidence-grounded manuscripts, proposals, reports, student papers, and preprints with auditable gates.
Cross-agent workflow for evidence-grounded manuscripts, proposals, reports, student papers, and preprints with auditable gates.
基于 SOC 职业分类
正在显示 SKILL.md
| name | ddd-architect |
| description | DDD 架構輔助與檢查。觸發:架構、新功能、新模組、domain、structure。 |
觸發:新增功能/模組、架構檢查、建立新檔案時自動檢查
工具:grep_search(搜尋 import)、list_dir、read_file、create_file
src/domain/ → entities, value_objects, aggregates, repositories(介面), services
src/application/ → use_cases, dtos
src/infrastructure/ → persistence, services(外部服務實作)
src/interfaces/ → api, mcp
✅ Presentation → Application → Domain ← Infrastructure(實作介面) ❌ Domain → Infrastructure, Domain → Application, Application → Presentation
| 違規 | 修復 |
|---|---|
| Domain → Infrastructure | 使用 Repository 介面 |
| 直接 SQL 在 Domain | 抽出到 Repository |
| Application → DB | 透過 Repository |
檢查方法:grep_search(query="from.*infrastructure.*import", isRegexp=True, includePattern="**/domain/**/*.py")
A: 新功能腳手架 — 依序建立 Domain(entity+repo介面) → Application(use_case+dto) → Infrastructure(repo實作) B: 架構違規檢查 — grep Domain 層的 Infrastructure import → 有結果即違規