You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developer utilities, automation scripts, and ecosystem management tools for the OmniBioAI platform. Covers stack lifecycle management, build automation, CI/CD control, coverage reporting, GitHub project setup, and ecosystem health monitoring.
Scripts
Stack Management
Script
Description
omnibioai-up.sh
Starts the full OmniBioAI stack in a tmux session
omnibioai-down.sh
Tears down the tmux session and stops all services
start_all.sh
Starts all OmniBioAI services sequentially
start_stack_tmux.sh
Launches the full stack in named tmux windows with port management
start-all-uis.sh
Starts all React frontend UIs and backend APIs
stop-all-uis.sh
Stops all running React UI dev servers
smoke_test_stack.sh
Runs HTTP health checks against all core service endpoints
Build Automation
Script
Description
build-all-new.sh
Builds and pushes all service images to GHCR (ghcr.io/man4ish)
build_all_tools.sh
Builds all bioinformatics tool images and pushes to ECR and GHCR
build_cython.sh
Compiles all high-priority Cython files across repos before Docker builds
Ecosystem Management
Script
Description
ecosystem_status.sh
Reports git branch and clean/dirty status across all 32 repos
clock_count.sh
Counts lines of code across the full ecosystem using cloc
run_coverage.sh
Aggregates pytest coverage reports across all repos into out/coverage/
disable_cicd.sh
Moves .github/workflows to workflows_disabled across all repos
update_descriptions.sh
Updates GitHub repo descriptions for all OmniBioAI repos via API
update_topics.sh
Sets GitHub topics for all OmniBioAI repos via gh api
Project Setup
Script / File
Description
setup_beta_project.py
Creates GitHub Project "OmniBioAI Beta Launch" with Board + Roadmap views, custom fields (Priority, Category, Repo, Due Date), and issues across all repos linked to the project
build-results.txt
Latest build results log
PubMed Data Pipeline
Script
Description
download_pubmed.sh
Loads PubMed abstracts into the RAG FAISS index via ragbio.utils.rag_data_loader, run inside the omnibioai-studio-rag-1 container for a set of predefined disease/topic studies
split_general_corpus.sh
Splits the _general_corpus abstract directory (tens of millions of files) into fixed-size chunk subdirectories so embedding_engine can process them per-chunk without code changes
test_split_on_sample.sh
Dry-run of split_general_corpus.sh against a small sample copied into /tmp; verifies chunk counts match before running the real split on the full corpus
run_chunks.sh
Runs embedding_engine.py over each _general_corpus_chunk* directory with bounded concurrency, to avoid the OOM/swap issues seen when running unbounded
sync_pubmed_updates.py
Daily incremental PubMed sync — pulls new/updated files from the NCBI FTP update feed, updates existing abstract JSON files in place, and tracks progress in sync_state.json
create_new_chunks.py
Creates new _general_corpus_chunk* directories from abstracts updated by sync_pubmed_updates.py, continuing the existing chunk numbering
Reference Data
Script
Description
download_references.py
Downloads reference genomes, variant sets, and databases by species/assembly, with resume support and a JSON dataset registry; supports --dry-run and --status
restore_reference_data.sh
Intended to restore reference data, SIFs, and indexes — currently an empty file (0 bytes), not yet implemented
Container Image Management
Script
Description
migrate_public_images.sh
Copies public container images from ghcr.io/man4ish to ghcr.io/omnibioai via skopeo, skipping private packages
set_public_visibility.sh
Bulk-sets visibility=public on omnibioai org container packages via the GitHub API
set_packages_public.sh
Lists all container packages in the omnibioai org and PATCHes any non-public ones to public
make_public_browser.py
Playwright browser automation to set package visibility to public, for cases the REST API doesn't support (no visibility-update endpoint)
push_sifs.sh
Pushes local .sif Singularity images to ghcr.io/omnibioai/omnibioai-sif/<name>:arm64 via oras, skipping images already pushed
rebuild_ml_base_plugins.sh
Rebuilds and pushes plugin images whose Dockerfiles build FROM a shared omnibioai-ml-* base image, after a base-image migration
update_ghcr_refs.sh
Finds, and optionally replaces (with .bak backups), lingering ghcr.io/man4ish references across a repo
sweep_all_repos.sh
Runs update_ghcr_refs.sh in dry-run mode across all sibling OmniBioAI repos and summarizes which ones still reference ghcr.io/man4ish
verify_migration.sh
Compares packages and tags between the man4ish and omnibioai GHCR namespaces and writes a migration verification report
delete_old_packages.sh
Deletes packages listed in old_packages.txt (produced by verify_migration.sh) from the man4ish namespace; dry-run by default, requires typed DELETE confirmation
delete_packages_browser.py
Playwright browser automation fallback for bulk package deletion, for use when the API token lacks delete:packages scope
Testing & Evaluation
Script
Description
agent_tool_selection_eval.py
Evaluates how reliably a local Ollama model selects the correct tool and fills valid arguments from a semantically-narrowed shortlist drawn from the TES tool corpus
prepare_real_data_facs.py
Builds a real ClinVar-derived training set (CADD, gnomAD, GERP, PhyloP, SIFT, PolyPhen features) for the variant_pathogenicity_classifier plugin, replacing its synthetic 24-row toy dataset
Usage
Check ecosystem status
bash ecosystem_status.sh
# or from machine root:
bash utils/ecosystem_status.sh