Skip to content

Commit adbc250

Browse files
github-actions[bot]kazhou
authored andcommitted
Release v0.1.0
0 parents  commit adbc250

234 files changed

Lines changed: 50493 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copy this file to .env and fill in your credentials
2+
3+
# OpenRouter API Key
4+
OPENROUTER_API_KEY=your_openrouter_key_here
5+
6+
# OpenAI API Key
7+
# Generate at: https://platform.openai.com/api-keys
8+
OPENAI_API_KEY=your_openai_key_here
9+
10+
# Optional: Other AI Provider API Keys (if not already configured)
11+
# ANTHROPIC_API_KEY=your_anthropic_key_here
12+
# GOOGLE_API_KEY=your_google_key_here

.github/workflows/docs.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy Docs
2+
on:
3+
push:
4+
branches: [main]
5+
paths: ["docs/**", "mkdocs.yml"]
6+
workflow_dispatch:
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: astral-sh/setup-uv@v4
14+
- run: uv python install 3.12
15+
- run: uv sync --extra docs
16+
- run: uv run mkdocs build
17+
18+
- name: Push to docs repo
19+
run: |
20+
git clone https://x-access-token:${{ secrets.AutoChecklist_DOCS_PAT }}@github.com/autochecklist/autochecklist.github.io.git docs-repo
21+
# Only replace /docs/ — leave root-level files (homepage, CNAME, etc.) untouched
22+
mkdir -p docs-repo/docs
23+
rm -rf docs-repo/docs/*
24+
cp -r site/* docs-repo/docs/
25+
cd docs-repo
26+
git config user.name "github-actions[bot]"
27+
git config user.email "github-actions[bot]@users.noreply.github.com"
28+
git add -A
29+
git diff --staged --quiet || git commit -m "Deploy docs from AutoChecklist@${{ github.sha }}"
30+
git push

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish to PyPI
2+
on:
3+
release:
4+
types: [published]
5+
6+
permissions:
7+
id-token: write
8+
9+
jobs:
10+
publish:
11+
runs-on: ubuntu-latest
12+
environment: pypi
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: astral-sh/setup-uv@v4
16+
- run: uv python install 3.12
17+
- run: uv build
18+
- uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Tests
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
python-version: ["3.10", "3.11", "3.12"]
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: astral-sh/setup-uv@v4
17+
- run: uv python install ${{ matrix.python-version }}
18+
- run: uv sync --dev --extra dev
19+
- run: uv run ruff check autochecklist/
20+
- run: uv run pytest -v -m "not integration and not vllm_offline and not openai_api"

.gitignore

Lines changed: 221 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,221 @@
1+
agent_logs/transcripts/
2+
agent_logs/archived/
3+
4+
.vscode/
5+
.env
6+
7+
# Byte-compiled / optimized / DLL files
8+
__pycache__/
9+
*.py[codz]
10+
*$py.class
11+
12+
# C extensions
13+
*.so
14+
15+
# Distribution / packaging
16+
.Python
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
wheels/
29+
share/python-wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
MANIFEST
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.nox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*.cover
55+
*.py.cover
56+
.hypothesis/
57+
.pytest_cache/
58+
cover/
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
69+
70+
# Flask stuff:
71+
/instance/
72+
.webassets-cache
73+
74+
# Scrapy stuff:
75+
.scrapy
76+
77+
# Sphinx documentation
78+
docs/_build/
79+
80+
# PyBuilder
81+
.pybuilder/
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# IPython
88+
profile_default/
89+
ipython_config.py
90+
91+
# pyenv
92+
# For a library or package, you might want to ignore these files since the code is
93+
# intended to run in multiple environments; otherwise, check them in:
94+
# .python-version
95+
96+
# pipenv
97+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
98+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
99+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
100+
# install all needed dependencies.
101+
#Pipfile.lock
102+
103+
# UV
104+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
105+
# This is especially recommended for binary packages to ensure reproducibility, and is more
106+
# commonly ignored for libraries.
107+
#uv.lock
108+
109+
# poetry
110+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
111+
# This is especially recommended for binary packages to ensure reproducibility, and is more
112+
# commonly ignored for libraries.
113+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
114+
#poetry.lock
115+
#poetry.toml
116+
117+
# pdm
118+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
119+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
120+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
121+
#pdm.lock
122+
#pdm.toml
123+
.pdm-python
124+
.pdm-build/
125+
126+
# pixi
127+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
128+
#pixi.lock
129+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
130+
# in the .venv directory. It is recommended not to include this directory in version control.
131+
.pixi
132+
133+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
134+
__pypackages__/
135+
136+
# Celery stuff
137+
celerybeat-schedule
138+
celerybeat.pid
139+
140+
# SageMath parsed files
141+
*.sage.py
142+
143+
# Environments
144+
.env
145+
.envrc
146+
.venv
147+
env/
148+
venv/
149+
ENV/
150+
env.bak/
151+
venv.bak/
152+
153+
# Spyder project settings
154+
.spyderproject
155+
.spyproject
156+
157+
# Rope project settings
158+
.ropeproject
159+
160+
# mkdocs documentation
161+
/site
162+
163+
# mypy
164+
.mypy_cache/
165+
.dmypy.json
166+
dmypy.json
167+
168+
# Pyre type checker
169+
.pyre/
170+
171+
# pytype static type analyzer
172+
.pytype/
173+
174+
# Cython debug symbols
175+
cython_debug/
176+
177+
# PyCharm
178+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
179+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
180+
# and can be added to the global gitignore or merged into this file. For a more nuclear
181+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
182+
#.idea/
183+
184+
# Abstra
185+
# Abstra is an AI-powered process automation framework.
186+
# Ignore directories containing user credentials, local state, and settings.
187+
# Learn more at https://abstra.io/docs
188+
.abstra/
189+
190+
# Visual Studio Code
191+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
192+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
193+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
194+
# you could uncomment the following to ignore the entire vscode folder
195+
# .vscode/
196+
197+
# Ruff stuff:
198+
.ruff_cache/
199+
200+
# PyPI configuration file
201+
.pypirc
202+
203+
# Cursor
204+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
205+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
206+
# refer to https://docs.cursor.com/context/ignore-files
207+
.cursorignore
208+
.cursorindexingignore
209+
210+
# Marimo
211+
marimo/_static/
212+
marimo/_lsp/
213+
__marimo__/
214+
215+
.claude/
216+
217+
# UI backend data (generated at runtime)
218+
ui/backend/data/
219+
ui/frontend/.next/
220+
ui/frontend/node_modules/
221+
ui/data/

0 commit comments

Comments
 (0)