This repository is for establishing and disseminating standards related to accessibility, interoperability, documentation, and reuse of computational models. Please see our mission and charter for more details.
You can contribute to this site by following the directions at https://openmodelingfoundation.org/contribute/ - the process of proposing and accepting changes to OMF standards will be finalized once we have established our governance structure.
This repository includes an agent collaboration harness for AI-assisted work.
- Canonical policy:
AGENTS.mdis the source of truth for agent behavior. - Agent notes:
.github/copilot-instructions.mdandCLAUDE.mdare adapter files that defer toAGENTS.md. - Command environment for agents: run project commands in containers via Docker Compose (
hugoservice). - Agent artifacts:
.agent/stores generated working context and transfer records..agent/working-memory/for in-progress notes.agent/checkpoints/for progress snapshots.agent/handoffs/for transfer summaries
Agents should read AGENTS.md first and use the templates under .agent/checkpoints/ and .agent/handoffs/ when creating artifacts.
The site is deployed to GitHub Pages via the workflow at .github/workflows/gh-pages.yml. Pushes to the develop branch trigger an automated build-and-deploy.
- The
buildjob checks outdevelop, configures the Pages base URL, then builds the site inside the same Docker Composehugoservice used for local development (docker compose build --pull hugo+docker compose run --rm --no-deps --entrypoint sh hugo -c ...). The Hugo invocation itself is centralized in.github/scripts/build-site.sh, which is shared across local production-style rendering and CI workflows. - The
deployjob receives that artifact and publishes it directly to GitHub Pages via GitHub's OIDC-based Pages API (actions/deploy-pages).
No "built" branch is used. The old approach pushed compiled HTML to a main branch using peaceiris/actions-gh-pages. That is no longer the case — the deployment artifact goes straight to GitHub's Pages infrastructure. The main branch (if it still exists in the remote) is a leftover and is no longer updated.
The repository's Pages source must be set to GitHub Actions (not "Deploy from a branch"). In repository Settings → Pages → Build and deployment, select Source: GitHub Actions. Using "Branch: main" will not work with the current workflow.
This GitHub pages site is generated with hugo using the docsy theme and can be built locally by following these instructions:
To create a local setup of this site you can install Docker and docker-compose or hugo and npm on your local operating system.
Clone this repository via git clone --recurse-submodules -j8 https://github.com/openmodelingfoundation/openmodelingfoundation.github.io.git
If you have Docker and docker-compose installed, you can use the Makefile in the repository to automatically serve a local copy of the site to test out any changes:
Build and start a docker container with a hot-reloading hugo server that you can visit in your browser at http://localhost:1313 via
% make serve
Run the local production-style render path (equivalent to the CI shared build entrypoint):
% make render
Open a hugo shell in the docker container
% make shell
The shared build script used by CI workflows and make render is:
.github/scripts/build-site.sh
If you don't have docker installed and don't mind installing things in your operating system, you can do the following:
- Install the extended version of hugo from the releases page.
- Install npm via your operating system's package manager or from the npm site.
- Use hugo commands and npm to build/render the site.
% npm install
% hugo serve # dev server without drafts
# OR
% hugo serve -D # dev server with drafts