koryta-cli
Guidelines on how to evaluate pipeline outputs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines on how to evaluate pipeline outputs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | koryta-cli |
| description | Guidelines on how to evaluate pipeline outputs. |
To test and view the output of a data pipeline from the scrapers directory, use the koryta cli command.
The command is part of the package's virtual environment set up by Poetry.
Example:
.venv/bin/koryta <pipeline_name> --output stdout
Do not write custom Python scripts with setup_context to evaluate pipelines manually.
The pipelines use a caching mechanism (e.g., saving outputs to data/versioned/). If you modify pipeline code and need those changes to propagate, do NOT manually delete the cache files. Instead, use the --refresh flag to force the pipeline and its dependents to re-run.
Example:
.venv/bin/koryta <target_pipeline> --refresh <pipeline_to_refresh>
For example, if you updated PeopleMerged and want PeoplePayloads to rebuild using the new PeopleMerged output, run:
poetry run koryta PeoplePayloads --refresh PeopleMerged