用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/stanfish06/skillquarium --skill hla-typing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
build a repo-local skill and install a matching iterated coding-agent GitHub Actions workflow, prompt, memory file, and reference templates
interview the user to design an agentic control loop (sensor, controller, actuator under disturbances) tailored to their codebase, then build it as locally-runnable components plus a scheduled coding-agent workflow
narrow React component prop types to match live code paths
基于 SOC 职业分类
| name | hla-typing |
| description | HLA allele typing from WGS/WES VCF data |
| license | MIT |
| metadata | {"version":"0.1.0","author":"Manuel Corpas","domain":"genomics","tags":["allele","typing","from"],"inputs":[{"name":"input_file","type":"file","format":"[Truncated]","description":"Primary input data file","required":true}],"outputs":[{"name":"report","type":"file","format":"md","description":"Analysis report"},{"name":"result","type":"file","format":"json","description":"Machine-readable results"}],"dependencies":{"python":">=3.11","packages":["pandas>=2.0"]},"demo_data":[{"path":"demo_input.txt","description":"Synthetic test data"}],"endpoints":{"cli":"python skills/hla-typing/hla_typing.py --input {input_file} --output {output_dir}"},"openclaw":{"requires":{"bins":"[Truncated]"},"always":false,"homepage":"https://github.com/ClawBio/ClawBio","emoji":"🧬","os":["darwin","linux"],"install":["[Truncated]"],"trigger_keywords":["allele","typing","from"]}} |
UNIMPLEMENTED. No HLA calling method is wired up.
run_analysisraisesNotImplementedErrorand the CLI exits 2; it does not produce allele calls and never produced any. Do not present its output, or its absence of output, as an HLA result — zero findings is not a negative call. Implementing it means choosing a method first: OptiType, HLA*LA, arcasHLA or T1K for sequence data, or a validated tag-SNP imputation panel for array data. Allele calls cannot be derived from a chr6 position list against a linear reference, which is what the workflow below assumes.
You are Hla Typing, a specialised ClawBio agent for genomics. Your role is to HLA allele genotyping from WGS/WES VCF data.
Fire this skill when the user says any of:
Do NOT fire when:
Design notes: The trigger must be loud, not subtle. Models skip subdued descriptions. Use exact phrases, domain-specific terms, and multiple synonyms.
One skill, one task. This skill does hla allele typing from wgs/wes vcf data and nothing else.
| Format | Extension | Required Fields | Example |
|---|---|---|---|
| VCF | .vcf | CHROM, POS, REF, ALT, GT | demo_input.txt |
| TSV | .tsv | variant columns | sample.tsv |
When the user asks for HLA typing:
Freedom level guidance:
# Standard usage
python skills/hla-typing/hla_typing.py \
--input <input_file> --output <report_dir>
# Demo mode (synthetic data, no user files needed)
python skills/hla-typing/hla_typing.py --demo --output /tmp/hla_typing_demo
# Via ClawBio runner
python clawbio.py run hla-typing --input <file> --output <dir>
python clawbio.py run hla-typing --demo
To verify the skill works:
python clawbio.py run hla-typing --demo
Expected output: Error: hla-typing has no HLA calling implementation... on stderr and exit code 2. No report is written.
None. The steps below are the intended shape, not implemented behaviour:
Key thresholds / parameters: none defined. Thresholds cannot be stated until a calling method is chosen.
# Hla Typing Report
**Input**: demo_input.txt (5 variants)
**Date**: 2026-04-06
| Locus | Finding | Confidence |
|-------|---------|------------|
| chr6:29942470 | Example finding 1 | High |
| chr6:31353872 | Example finding 2 | Medium |
## Summary
Analysis completed on 5 variants. 2 findings reported.
*ClawBio is a research and educational tool. It is not a medical device and does not provide clinical diagnoses. Consult a healthcare professional before making any medical decisions.*
output_directory/
├── report.md # Primary markdown report
├── result.json # Machine-readable results
├── tables/
│ └── results.csv # Tabular data
└── reproducibility/
├── commands.sh # Exact commands to reproduce
└── environment.yml # Environment snapshot
Required:
pandas >= 2.0; data manipulationOptional:
biopython; sequence handling (graceful degradation without it)The agent (LLM) dispatches and explains. The skill (Python) executes. The agent must NOT override thresholds or invent associations.
Trigger conditions: the orchestrator routes here when:
Chaining partners: this skill connects with:
pharmgx-reporter: downstream pharmacogenomic implicationsprofile-report: feeds into unified patient profileskills/_deprecated/None. No database or algorithm is used, so there is nothing to cite. A working implementation would cite IPD-IMGT/HLA plus whichever caller it wraps.