用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/u9401066/med-paper-assistant --skill test-generator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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.
正在显示 SKILL.md
基于 SOC 职业分类
| name | test-generator |
| description | 生成測試套件。觸發:test、測試、寫測試、coverage、覆蓋率、pytest、unittest、驗證、TG、unit test、整合測試、e2e、static、ruff、mypy、lint。 |
| 工具 | 用途 | 命令 |
|---|---|---|
| ruff | Linter + Formatter | uv run ruff check src/ --fix && uv run ruff format src/ |
| mypy | 類型檢查 | uv run mypy src/ --ignore-missing-imports |
| bandit | 安全掃描 | uv run bandit -r src/ -ll |
| vulture | 死代碼檢測 | uv run vulture src/ --min-confidence 80 |
完整:uv run ruff check src/; uv run mypy src/ --ignore-missing-imports; uv run bandit -r src/ -ll
| 層級 | 工具 | 目錄 |
|---|---|---|
| Unit | pytest | tests/unit/ |
| Integration | pytest + httpx | tests/integration/ |
| E2E | playwright | tests/e2e/ |
| Coverage | pytest-cov | 目標 ≥80% |
pytest.raises@pytest.mark.parametrizepytest tests/unit -v # 單元
pytest tests/integration -v -m integration # 整合
pytest --cov=src --cov-report=term-missing --cov-fail-under=80 # 覆蓋率