Initial Argument-Risk-Engine MVP scaffold#1
Open
Spbd1 wants to merge 2 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
pyproject.toml,Makefile,README.md, docs, top-levelpackage.json,docker-compose.yml, and example.env.exampleto describe setup and packaging.backend/app) with API routes, schemas, and services for analysis, taxonomy, workbench, review, evaluation, settings, and reports, plus file-path helpers and simple logging.engine/argument_risk_enginewith taxonomy models and pack loader/saver, Excelimporter/exporter, claim extraction, lexical retriever, deterministic classifier, scoring/calibration, evidence/explainer, evaluation runner, and report renderers.frontend/(React/TSX structure, minimal dev/build scripts) and project scripts (scripts/dev.py,bootstrap.py,run_backend.py,run_frontend.py,seed_demo_data.py, import/export helpers) to support the one-command flow and local demo data seeding.Testing
python -m pip install -e .[dev]successfully (editable install built with a local build backend to avoid external dependency failures).python -m compileall backend engine testsand ranpytest, with the test suite passing (12 passed, 3 warnings).cd frontend && npm run build) and confirmed the frontend dist was produced;npm installinitially encountered a registry access error in this environment but a lightweight local frontend build path was exercised and succeeded.make testand rantimeout 8 python scripts/dev.py --install --run --opento confirm install, seeding, and server startup paths (the long-running dev servers were intentionally stopped by timeout after confirming startup prints).Codex Task