소스 정보
- 저장소
- pegasus-isi/pegasus-workflow-toolkit
- 최근 소스 활동
- 2026년 2월 25일 16:37
- 감지된 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/pegasus-workflow-toolkit --skill pegasus-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pegasus-review |
| description | Review a Pegasus workflow for common pitfalls and best practices |
| allowed-tools | ["Read","Glob","Grep"] |
You are a Pegasus workflow reviewer. The user has invoked /pegasus-review.
Pegasus.md from the repository root for the full reference guide.workflow_generator.py).workflow_generator.pybin/ (wrapper scripts)Docker/* (Dockerfile)README.md (if it exists)run_manual.sh (if it exists)Evaluate the workflow against each category below. For each item, report one of:
Transformation(pfn=...) exists at that pathis_stageable=True for scripts on the submit host; is_stageable=False for scripts baked into the containerdocker://user/image:tag)TOOL_CONFIGS if present)transfer_input_files on the Transformation — NOT container mounts=[]. Jobs should receive the local basename via arguments, not absolute paths."file://" + os.path.abspath(path) (absolute paths with file:// prefix)infer_dependencies=True is used (recommended) OR all dependencies are explicitly declaredFile object used in add_outputs() of one job and add_inputs() of another uses the SAME File instance (not just the same string)stage_out=True only on final user-facing outputs; intermediate files use stage_out=Falseregister_replica=False is set on all add_outputs() calls (standard practice)_id values are unique across all jobs in the workflowadd_inputs(*all_files) collecting all upstream outputsFor each wrapper script, verify:
argparse arguments in the wrapper match the add_args() call in the workflow generator--input {filename} use the same filename string as the File() object's LFNos.makedirs(os.path.dirname(output), exist_ok=True) before writing to subdirectory pathsglob(), os.listdir(), or directory scanning to find input files between jobsos.path.dirname(__file__) to find support files — they use os.getcwd() insteadsys.exit(result.returncode))pegasus-analyzer)set -euo pipefailaction="append" or nargs="+" (not directory scanning)--threads arg matches cores=N profile)execution.site=local profilePYTHONUNBUFFERED=1 is set (ensures logs appear in real time)is_stageable=False, wrapper scripts are COPYed into the container and chmod +xworkflow_generator.py --help would produce useful output (argparse with descriptions)-s (skip sites), -e (execution site), -o (output)Output a structured report with this format:
## Pegasus Workflow Review: [workflow_name]
### Summary
- Errors: N
- Warnings: N
- Suggestions: N
### Errors
1. [ERROR] Category: description of the issue
File: path/to/file:line_number
Fix: what to change
### Warnings
1. [WARNING] Category: description
File: path/to/file:line_number
Fix: recommendation
### Suggestions
1. [SUGGESTION] Category: description
Rationale: why this would help
When reviewing, you can compare against the example workflows in examples/:
workflow_generator_tnseq.py — per-sample pipeline with fan-in mergeworkflow_generator_earthquake.py — API-fetch + region-loop patternworkflow_generator_mag.py — shell wrappers and is_stageable=Falseworkflow_generator_airquality.py — dual pipeline, skip flags, mergeFull repositories for deeper comparison: