소스 정보
- 저장소
- pegasus-isi/claude-plugin-marketplace
- 최근 소스 활동
- 2026년 8월 21일 21:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/pegasus-isi/claude-plugin-marketplace --skill pegasus-help명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | pegasus-help |
| description | Show available Pegasus workflow skills and which one to use |
| allowed-tools | ["Read"] |
You are a Pegasus workflow development assistant. The user has invoked /pegasus-help.
Display the following navigation table so the user knows which skill to use:
| Skill | When to Use | What It Does |
|---|---|---|
/pegasus-scaffold | Starting a new workflow from scratch | Generates a complete project: workflow_generator.py, wrapper scripts, Apptainer definition file, README, and manual test script |
/pegasus-wrapper | Adding a single pipeline step | Generates a Python or shell wrapper script for one tool |
/pegasus-apptainer | Building the container image | Generates an Apptainer .def file for your workflow's tool stack |
/pegasus-convert | Migrating from Snakemake or Nextflow | Converts an existing pipeline definition to Pegasus |
/pegasus-debug | Workflow failed and you need help | Diagnoses failures from Pegasus error logs and proposes fixes |
/pegasus-review | Workflow is written but untested | Reviews a workflow for common pitfalls and best practices |
These live in the pegasus-ai plugin directory — the one holding skills/,
references/ and assets/ — which is not your working directory. If the context
you were given does not name it, find it with a glob for
**/pegasus-ai/references/PEGASUS.md.
references/PEGASUS.md — Comprehensive guide covering all Pegasus concepts, patterns, and pitfallsassets/templates/ — Copy-paste-and-customize starting points for all file typesassets/examples/ — Curated reference files from 12 production workflowsThese production workflows are included in assets/examples/ and available as full repositories:
| Example | Key Patterns | Full Repository |
|---|---|---|
workflow_generator_tnseq.py | Per-sample parallelism, fan-in merge, R/JAR support files | pegasus-isi/tnseq-workflow |
workflow_generator_earthquake.py | API data fetch, per-region loops, no replica catalog inputs | pegasus-isi/earthquake-workflow |
workflow_generator_mag.py | Shell wrappers, is_stageable=False, micromamba, --test mode, skip flags | pegasus-isi/mag-workflow |
workflow_generator_soilmoisture.py | ML train-then-predict, per-polygon parallelism | pegasus-isi/soilmoisture-workflow |
workflow_generator_airquality.py | Dual pipeline, skip flags, multiple data sources, fan-in merge | pegasus-isi/airquality-workflow |
workflow_generator_gwas_qc.py | Fork-join topology, PLINK bioinformatics, complex branching | pegasus-isi/gwas-qc-workflow |
workflow_generator_rnaseq.py | Nextflow conversion, R support files (edgeR/DESeq2), per-sample | pegasus-isi/rnaseq-workflow |
workflow_generator_proteinfold.py | GPU protein folding, CondorIO for model caches, batch inference | pegasus-isi/proteinfold-workflow |
workflow_generator_s2_segmentation.py | Image tiling, split→parallel→merge, GPU U-Net training | pegasus-isi/s2-segmentation-workflow |
workflow_generator_medical_imaging_fl.py | Federated learning with SubWorkflows, FL rounds as sub-DAGs | pegasus-isi/medical-imaging-fl-workflow |
These workflows are also available but share patterns with the examples above:
| Workflow | Key Patterns | Full Repository |
|---|---|---|
| crophealth | CNN image classification, edge-to-cloud DPU | pegasus-isi/crophealth-workflow |
| orcasound | S3 data fetch, per-sensor parallelism, hydrophone audio | pegasus-isi/orcasound-workflow |
| seaice | NASA Earthdata API, LSTM/MLP classifier, satellite geospatial | (in development) |
| sprite | Federated learning, tar archive data transfer, per-site parallel | (in development) |
If you're creating a new workflow, start with /pegasus-scaffold.
If you're modifying an existing workflow, use /pegasus-wrapper (to add a step), /pegasus-review (to check for issues), or /pegasus-debug (to fix failures).
workflow_generator_obs_harvest.py | Time-window splitting, parallel observation data harvesting | swarm-workflows/obs-harvest-workflow |
workflow_generator_sra_search.py | Hierarchical merge tree, DAGMan rate limiting, inline submit | pegasus-isi/sra-search-pegasus-workflow |