Skip to content
Merged
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
37 changes: 36 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,42 @@ See @pyproject.toml for project metadata and dependencies.
### Repository Layout

```
TODO
.agents/ # LLM assistant skills and context
skills/
create-pr/
SKILL.md
dependencies-management/
SKILL.md
update-agents-md/
SKILL.md
.github/ # GitHub configuration and CI/CD workflows
workflows/
build-test.yml # Runs full test suite on platform/python matrix
draft-release-notes.yml # Drafts release notes from merged PRs
release.yml # Releases a new version to PyPI
release-drafter.yml # Configuration for release notes drafter
docs/ # Documentation
tutorials/
tutorial.ipynb # Walk-through of all functionality
readme_examples.ipynb # README examples
src/
valimp/
valimp.py # Single-module source implementing all functionality
tests/
test_valimp.py # All tests (comprehensive test suite)
.pre-commit-config.yaml
.python-version # Pinned python version
AGENTS.md
CLAUDE.md
LICENSE.txt
MANIFEST.in
README.md
mypy.ini
pyproject.toml
pytest.ini
requirements.txt
ruff.toml
uv.lock
```

## Technology Stack
Expand Down
Loading