Skip to content
Merged
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
42 changes: 42 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# EditorConfig — Consistent formatting across all contributors
# https://editorconfig.org

root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

[*.py]
indent_style = space
indent_size = 4
max_line_length = 99
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The max_line_length of 99 for Python files conflicts with the project's configuration in pyproject.toml, which sets the limit to 88 (lines 48 and 232). Keeping these values synchronized ensures that the editor's visual guides align with the linting rules enforced in CI.

max_line_length = 88


[*.{yaml,yml}]
indent_style = space
indent_size = 2

[*.{json,js,jsx,ts,tsx,css,html}]
indent_style = space
indent_size = 2

[*.{go,rs}]
indent_style = tab
Comment on lines +25 to +26
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Rust (.rs) files should use 4 spaces for indentation according to the standard Rust style guide, while Go files use tabs. It is recommended to separate these into distinct blocks to avoid applying tab indentation to Rust code.

[*.go]
indent_style = tab

[*.rs]
indent_style = space
indent_size = 4


[*.md]
trim_trailing_whitespace = false
indent_style = space
indent_size = 2

[Makefile]
indent_style = tab

[Dockerfile*]
indent_style = space
indent_size = 4

[*.tf]
indent_style = space
indent_size = 2
4 changes: 2 additions & 2 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pytest pytest-asyncio pytest-cov httpx pydantic structlog google-genai opentelemetry-api opentelemetry-sdk opentelemetry-exporter-otlp tenacity redis
pip install pytest "pytest-asyncio>=0.23.0" pytest-cov httpx fastapi pydantic structlog google-genai opentelemetry-api opentelemetry-sdk opentelemetry-exporter-otlp tenacity redis networkx

- name: Run tests
run: |
export AUTH_DISABLED=true
python -m pytest tests/unit/ -v --tb=short
python -m pytest tests/unit/ -v --tb=short --cov=agents --cov=tools --cov-report=term-missing --cov-fail-under=70

- name: Lint check
run: |
Expand Down
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ coverage.xml
*.log
build_log*.txt
dashboard_build_log*.txt
dashboard_build*.log
uvicorn.log

# ── Node / TypeScript / Next.js ─────────────────────────
node_modules/
Expand Down Expand Up @@ -68,6 +70,8 @@ credentials/
# ── Output / Generated per-run (not source code) ────────
claude/
output/
deliverables/
docs/
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Ignoring the entire docs/ directory may lead to documentation source files being excluded from the repository. If docs/ contains source material (e.g., Markdown or Sphinx source), consider ignoring only the specific build output directory (e.g., docs/_build/) instead.

generated/
artifacts/
tmp_repos/
Expand Down Expand Up @@ -149,3 +153,11 @@ keys/
*.pem
.vercel/
tmp_repos/
tmp/
tmpdir.py
general_hardcoded_tmp.py
*.tmp

# Recursive tmp patterns for research repositories
tmp_repos/**/tmp*
tmp_repos/**/*tmp*
Loading