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
21 changes: 17 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<!-- SPECKIT START -->
For additional context about technologies to be used, project structure,
shell commands, and other important information, read the current plan
<!-- SPECKIT END -->
# Agent notes — ComplyAIgent

## Read first
- [docs/ROADMAP.md](docs/ROADMAP.md) — phases and non-goals
- [docs/mvp/README.md](docs/mvp/README.md) — MVP definition of done + workstreams
- [docs/handover/README.md](docs/handover/README.md) — architecture + current priorities
- [docs/ONBOARDING.md](docs/ONBOARDING.md) — local setup
- Epic: https://github.com/liitkud/complyaigent/issues/74

## Defaults
- Branch from `dev`; small PRs mapped to MVP sub-issues (#75–#81)
- Backend: `cd backend && uv sync && uv run …`
- Do not reintroduce floating unpinned `ruff`/`ty` in CI without lockfile pins
- Prefer project-scoped changes; no drive-by refactors outside the issue

## Speckit
Feature plans live under `specs/` and `.specify/`. Constitution: `docs/constitution.md` → `.specify/memory/constitution.md`.
Empty file modified backend/.gitignore
100755 → 100644
Empty file.
Empty file modified backend/.python-version
100755 → 100644
Empty file.
Empty file modified backend/.secrets.baseline
100755 → 100644
Empty file.
Empty file modified backend/Dockerfile
100755 → 100644
Empty file.
Empty file modified backend/app/__init__.py
100755 → 100644
Empty file.
Empty file modified backend/app/api/activity.py
100755 → 100644
Empty file.
Empty file modified backend/app/api/ingest.py
100755 → 100644
Empty file.
Empty file modified backend/app/api/manifest.py
100755 → 100644
Empty file.
Empty file modified backend/app/api/validate.py
100755 → 100644
Empty file.
Empty file modified backend/app/core/config.py
100755 → 100644
Empty file.
Empty file modified backend/app/core/db.py
100755 → 100644
Empty file.
Empty file modified backend/app/core/hashing.py
100755 → 100644
Empty file.
Empty file modified backend/app/core/logging.py
100755 → 100644
Empty file.
Empty file modified backend/app/core/rate_limit.py
100755 → 100644
Empty file.
Empty file modified backend/app/models/rule.py
100755 → 100644
Empty file.
Empty file modified backend/app/models/task.py
100755 → 100644
Empty file.
Empty file modified backend/app/regintel/__init__.py
100755 → 100644
Empty file.
Empty file modified backend/app/regintel/rag.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/categorizer.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/compactor.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/comparator.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/extractor.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/logger.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/pipeline.py
100755 → 100644
Empty file.
Empty file modified backend/app/services/validator.py
100755 → 100644
Empty file.
Empty file modified backend/app/worker/tasks.py
100755 → 100644
Empty file.
Empty file modified backend/main.py
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion backend/pyproject.toml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ select = [
]
ignore = [
"B008", # Do not perform function call `Depends` in parameter defaults
"EXE002", # The file is executable but no shebang is present
# The file is executable but no shebang is present
"E501", # Line too long
"BLE001", # Do not catch blind exception: Exception
]
Expand Down
19 changes: 0 additions & 19 deletions backend/requirements.txt

This file was deleted.

Empty file modified backend/tests/conftest.py
100755 → 100644
Empty file.
Empty file modified backend/tests/integration/test_ingestion.py
100755 → 100644
Empty file.
Empty file modified backend/tests/integration/test_observability.py
100755 → 100644
Empty file.
Empty file modified backend/tests/integration/test_validation.py
100755 → 100644
Empty file.
Empty file modified backend/uv.lock
100755 → 100644
Empty file.
Loading