소스 정보
- 저장소
- ffsshhttiikk/opencode-agents-skills
- 최근 소스 활동
- 2026년 2월 28일 22:46
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill microbiology명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | microbiology |
| description | Study of microorganisms including bacteria, viruses, fungi, and parasites |
| category | biology |
| keywords | ["microbiology","bacteria","viruses","fungi","pathogens","infection","immune response","antibiotics"] |
Microbiology studies microorganisms including bacteria, viruses, fungi, and parasites. I cover microbial structure, metabolism, genetics, pathogenicity, antimicrobial resistance, and host-microbe interactions. I help understand infectious diseases, microbial ecology, and applied microbiology.
import numpy as np
from typing import List, Dict, Tuple
class BacterialGrowth:
def __init__(self, organism: str):
self.organism = organism
def calculate_generation_time(self, initial_cfu: float,
final_cfu: float,
hours: float) -> float:
n = np.log2(final_cfu / initial_cfu)
return hours / n
def exponential_growth(self, initial_cells: float,
growth_rate: float,
time: float) -> float:
return initial_cells * np.exp(growth_rate * time)
def calculate_moi(self, multiplicity: int,
target_cells: float) -> float:
return multiplicity * target_cells
def kill_curve_analysis(self, antibiotic_conc: List[float],
survival_fractions: List[float]) -> Dict:
log_kill = [-np.log10(sf) for sf in survival_fractions sf > ]
(log_kill) >= :
slope = (log_kill[-] - log_kill[]) / (antibiotic_conc[-] - antibiotic_conc[])
{: slope, : log_kill}
{: , : log_kill}
() -> :
conc, inhibition (antibiotic_conc, growth_inhibition):
inhibition >= :
conc
(antibiotic_conc)
() -> :
mic *
:
():
.antibiotic_class = antibiotic_class
() -> :
targets = {
: {: , : },
: {: , : },
: {: , : },
: {: , : },
: {: , : }
}
targets.get(.antibiotic_class, {: , : })
() -> :
resistance_genes = {
: ,
: ,
: ,
: ,
:
}
mechanisms = []
gene gene_list:
gene resistance_genes:
mechanisms.append(resistance_genes[gene])
{: mechanisms}
() -> :
fici = (mic_ab / mic_a) + (mic_ab / mic_b)
fici <= :
fici <= :
fici <= :
:
():
.virus = virus
() -> :
positive_count = ( w wells_positive w > )
tcid50 = dilution_factor * positive_count / volume_inoculated
tcid50
() -> :
avg_plaques = np.mean(plaques)
pfu_ml = avg_plaques / (dilution * volume)
{
: pfu_ml,
: np.log10(pfu_ml) pfu_ml >
}
() -> :
virus_titer / target_cells
() -> :
** ((ct_day1 - ct_day3) / )
:
():
.pathogen = pathogen
() -> :
responses = {
: {: , : },
: {: , : },
: {: , : }
}
responses.get(infection_severity, {: , : })
() -> :
levels = {: , : , : }
levels.get(inflammation_level, )
() -> :
pct < :
pct < :
pct < :
microbe = BacterialGrowth()
gen_time = microbe.calculate_generation_time(, , )
()
n = microbe.exponential_growth(, , )
()
mic = microbe.calculate_mic([, , , , , ], [, , , , , ])
()
SOC 직업 분류 기준