Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .claude/rules/uv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
description: Enforce uv as the package manager for all Python operations
globs:
- "**/*.py"
- "**/pyproject.toml"
---

- Always use `uv run` to execute commands — never bare `python`, `pytest`, `ruff`, or other tools.
- Never use `pip install` — use `uv sync` (with `--group` flags) to manage dependencies.
- The `uv.lock` file is the source of truth for resolved dependency versions.
- When adding dependencies, add them to `pyproject.toml` and run `uv sync`.
- HSSM uses PEP 735 dependency groups: `--group dev`, `--group notebook`, `--group docs`.
3 changes: 2 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## What is HSSM?

HSSM (Hierarchical Sequential Sampling Models) is a Python package for Bayesian inference on sequential sampling models (DDM, LBA, etc.) using PyMC and bambi. It provides a high-level API for defining, fitting, and analyzing these models.
HSSM (Hierarchical Sequential Sampling Models) is a Python package for Bayesian inference on sequential sampling models (DDM, LBA, etc.) using PyMC and bambi. It provides a high-level API for defining, fitting, and analyzing these models. This is the user-facing package in the HSSM ecosystem. For ecosystem-wide context, see the HSSMSpine repo.

## Project Structure

Expand Down Expand Up @@ -100,6 +100,7 @@ Two separate skip mechanisms for notebooks:
| `coverage.yml` | Code coverage |
| `build_docs.yml` | Build documentation |
| `build_and_publish.yml` | Release to PyPI (triggered on release publish) |
| `prepare-release.yml` | Release preparation automation |

## Known Issues / Notes

Expand Down
Loading