Skip to content
Closed
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
69 changes: 69 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/
.python-version

# Test / coverage / type / lint caches
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
.tox/
.nox/
.mypy_cache/
.ruff_cache/
.hypothesis/

# IDE / editor
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store

# Secrets / local config
.env
.env.local
.env.*.local
*.pem
*.key

# Claude Code / claude-flow project-local state
.claude/
.claude-flow/
CLAUDE.md

# Project-local working notes (kept on disk, not in VCS)
analyze.md
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
<p align="center">
<img src="https://raw.githubusercontent.com/nullrunio/nullrun-sdk-python/master/docs/nullrun-logo.png"
alt="NullRun" width="320"/>
</p>

<p align="center">
<a href="https://pypi.org/project/nullrun/"><img
src="https://img.shields.io/pypi/v/nullrun?style=for-the-badge&logo=pypi&logoColor=white"
alt="PyPI version"/></a>
<a href="https://pypi.org/project/nullrun/#files"><img
src="https://img.shields.io/pypi/pyversions/nullrun?style=for-the-badge&logo=python&logoColor=white"
alt="Python versions"/></a>
<a href="https://github.com/nullrunio/nullrun-sdk-python/blob/master/LICENSE"><img
src="https://img.shields.io/pypi/l/nullrun?style=for-the-badge"
alt="License"/></a>
<a href="https://pypi.org/project/nullrun/"><img
src="https://img.shields.io/pypi/dm/nullrun?style=for-the-badge&color=blue"
alt="Downloads"/></a>
</p>

<p align="center">
<a href="https://github.com/nullrunio/nullrun-sdk-python/actions/workflows/ci.yml"><img
src="https://img.shields.io/github/actions/workflow/status/nullrunio/nullrun-sdk-python/ci.yml?style=for-the-badge&logo=github&label=CI"
alt="CI"/></a>
<a href="https://codecov.io/gh/nullrunio/nullrun-sdk-python"><img
src="https://img.shields.io/codecov/c/github/nullrunio/nullrun-sdk-python?style=for-the-badge&logo=codecov&logoColor=white"
alt="Coverage"/></a>
<a href="https://github.com/nullrunio/nullrun-sdk-python"><img
src="https://img.shields.io/github/stars/nullrunio/nullrun-sdk-python?style=for-the-badge&logo=github"
alt="Stars"/></a>
<a href="https://docs.nullrun.io"><img
src="https://img.shields.io/badge/docs-nullrun.io-0A66C2?style=for-the-badge&logo=readthedocs&logoColor=white"
alt="Documentation"/></a>
</p>

# nullrun

**Enforcement gateway for AI agents.**
Expand Down
Loading
Loading