This release is a pre-release and may not be stable for production use.
ARX 3
Project-Aware Compatibility Intelligence for Windows
ARX 3 correlates what a machine provides with what a selected software target or project requires. It resolves the active execution context, preserves the evidence behind every decision, reports readiness as GREEN, YELLOW, or RED, and proposes the shortest trusted path to GREEN without changing the workstation.
This branch presents ARX 3.0 Release Candidate (3.0.0rc1; planned tag v3.0.0-rc1). The deterministic engine and local inspection workflows remain fully usable without an AI provider or network connection.
ARX is a read-only compatibility intelligence tool. It is not a malware scanner, does not guarantee that arbitrary software will run, and is not an autonomous repair bot.
Why ARX 3 is different
Many diagnostic tools primarily tell users what exists on a machine.
ARX correlates what the machine actually provides with what a specific software target or project actually requires, resolves the active execution context, explains the evidence behind the decision, and can optionally consult external intelligence without allowing external advice to become ARX evidence.
That distinction matters. An installed runtime is not necessarily the runtime a command resolves. A compatible provider elsewhere on the machine does not make the current project context GREEN. A recommendation is not proof that it was applied.
Architecture at a glance
Project DNA --> Requirement Graph -------------------\
\
Machine DNA --> Provider Graph --> Execution Context --> Resolution
/ |
Software DNA --> Evidence -----------------------------/ |
v
Satisfaction / Readiness
GREEN / YELLOW / RED
|
v
Trusted Recovery Plan
The recovery plan is advisory and policy-constrained. It prefers an existing healthy provider when possible and never installs, removes, or reconfigures software automatically.
External intelligence is a separate, one-way layer:
ARX deterministic evidence
|
| explicit user action + bounded redacted context
v
optional ChatGPT/OpenAI | Codex CLI | safe web research
|
v
unverified advisory output --> Human decision
There is no return path from external advice into ARX evidence.
The ARX evidence model
- Machine DNA records bounded observations about Windows, CPU, memory, GPU, storage, SDK hints, developer tools, runtimes, and safe environment state.
- Software DNA statically inspects a selected file or directory: hashes, magic/type, PE metadata, Authenticode status, archive listings, recognized manifests, and runtime indicators where available.
- Project DNA reads recognized Python project manifests without executing project code and preserves requirements, runtime-selection intent, provenance, conflicts, confidence, and unknowns.
- The Requirement Graph groups sourced project claims by capability without discarding competing evidence.
- The Provider Graph keeps discovered runtimes distinct by identity, path, version, architecture, health, scope, and discovery method.
- The Execution Context fingerprints the command, working directory, effective PATH, and relevant environment state so resolution is scoped to the context that was actually examined.
- Resolution records what
python,python3, orpyinvokes in that context. Resolved, compatible, project-pinned, and ARX-preferred provider roles remain separate.
ARX keeps the analytical questions independent:
availability != resolution != compatibility != relevance
relevance != satisfaction != severity != remediation
OBSERVED, INFERRED, and VERIFIED reasoning
- OBSERVED facts come from bounded static reads or fixed, timeout-bound diagnostic probes.
- INFERRED conclusions are produced by deterministic rules and retain the evidence references and confidence that support them.
- VERIFIED relationships or decisions have passed ARX's semantic invariant checks and, where serialized, schema validation. VERIFIED does not mean guaranteed compatibility or a safety verdict.
Serialized evidence provenance remains explicit as declared, observed, inferred, or unknown. ARX does not turn missing or unsupported information into certainty.
GREEN, YELLOW, and RED
- GREEN: the evaluated required capability is satisfied in the recorded execution context.
- YELLOW: the result is recoverable, partial, ambiguous, conflicting, or uncertain—for example, a healthy compatible provider exists but the current command resolves elsewhere.
- RED: a required capability is unsatisfied with no confirmed healthy compatible provider, or an authoritative blocking conflict exists.
GREEN is deliberately scoped. The current Python readiness vertical verifies interpreter/toolchain requirements; it does not prove dependency installation, lock/site-packages synchronization, project imports, or complete application startup.
Windows desktop application
ARX Desktop presents the same canonical evidence and decisions as the CLI in a responsive Windows interface. It includes Project Preflight, Machine DNA, Software DNA, compatibility findings, evidence inspection, selectable and searchable reports, safe path navigation, redacted export, contextual advisory actions, background work, cancellation, and human-readable technical errors.
Unknown targets are never launched, imported, or extracted. Static inspection recognizes EXE/DLL/PE, MSI identity, ZIP/JAR/APK containers, scripts, application directories, and bounded project manifests. Trusted developer-tool diagnostics use fixed argument arrays, shell=False, captured output, and timeouts.
Run the desktop from source:
$env:PYTHONPATH = 'src'
python -m arx.desktop
Windows distribution
ARX 3 RC can be built in two forms:
- a portable x64 folder and versioned ZIP containing
ARX.exeand its private_internalruntime; - an optional Inno Setup installer with a stable application identity, x64 Program Files installation, Start Menu and uninstall entries, an optional desktop shortcut, and SHA-256 checksums.
Generated release artifacts stay under the ignored release/ directory and are not committed. Current RC builds are unsigned and use the executable's version resources rather than a custom signed project icon. See the installer documentation.
Optional advisory and safe research
External assistance is always optional, explicitly user-triggered, cancellable where the provider permits, visibly labeled, and separate from deterministic ARX evidence.
- ChatGPT/OpenAI advisory uses the OpenAI Responses API when
OPENAI_API_KEYis present in the ARX process environment. A ChatGPT subscription is not treated as an API credential. - Codex CLI advisory detects the official CLI and sends the bounded prompt through standard input to a read-only, ephemeral process in an empty temporary directory.
- Safe web research creates a short redacted, URL-encoded query and opens an allowlisted HTTPS search URL in the user's browser. ARX does not scrape or import results.
Only the selected finding and relevant bounded context may cross an external boundary after consent. ARX removes recognizable credentials, tokens, usernames, private roots, user-profile paths, project paths, arbitrary absolute local paths, control characters, and unrelated evidence. Copy/save paths reapply redaction.
AI and web outputs remain unverified advice. They cannot change an observed fact, assign GREEN/YELLOW/RED, mutate the evidence graph, or execute a recovery step. The human remains the final decision-maker.
Read the complete AI assistance and external-boundary security model.
Install and use from source
py -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -e .
arx quick
arx deep
arx inspect C:\Path\To\Application.exe
arx compare C:\Path\To\Application.exe
arx project C:\Path\To\Project
arx resolve C:\Path\To\Project
arx preflight C:\Path\To\Project
arx codex --project C:\Path\To\Project
Use the global --output option to save structured output, for example arx --output machine.json deep.
Build the Windows RC artifacts
python -m pip install -e ".[build]"
.\scripts\build-desktop.ps1
.\scripts\package-desktop-release.ps1 -Version 3.0.0rc1
.\scripts\build-installer.ps1 -Version 3.0.0rc1
Expected release filenames are:
ARX-Desktop-win-x64-v3.0.0-rc1.zipARX-Desktop-Setup-win-x64-v3.0.0-rc1.exeSHA256SUMS-v3.0.0-rc1.txt
Building an installer is not install, upgrade, or uninstall acceptance. Those operating-system transitions remain explicit manual checks.
Security and privacy
ARX treats inspected targets and project contents as untrusted. Recognized files are size-bounded, encoding-checked, and symlink-safe; archives are listed without extraction; unknown executables and project scripts are never run. Reports redact profile/project paths and expose only allowlisted or fingerprinted environment state. ARX does not read credential stores, browser data, Wi-Fi secrets, private keys, or password/token variables.
The Resolution Planner only recommends actions. Normal analysis does not install or uninstall software, edit PATH or the registry, change execution aliases, weaken security controls, or apply remediation. See the security model and security policy.
Documentation
| Document | Purpose |
|---|---|
| ARX 3.0 RC1 release notes | Changes since ARX 2, compatibility, verification, and RC limitations |
| Architecture | Canonical domain, evidence boundaries, path identity, UI lifecycle, and packaging decisions |
| Project-aware semantic engine | Requirement/provider graphs, execution resolution, readiness, and planning rules |
| Security model | Local inspection, subprocess, privacy, remediation, and external trust boundaries |
| AI assistance security | OpenAI, Codex CLI, web research, consent, redaction, and failure behavior |
| Testing and acceptance | Deterministic suite, runtime-shaped GUI isolation, CI, and evidence levels |
| ARX 3 implementation report | Point-by-point engineering record and remaining limitations |
| Windows manual acceptance | Visible UX, DPI, accessibility, installer, upgrade, and uninstall checklist |
| Report schemas | Application/contract version independence and schema routing |
| Changelog | Release history |
Historical release notes and frozen contracts remain available under docs/ and schemas/.
Development, CI, and CodeQL
python -m pip install -e ".[dev]"
python -m pytest
python scripts/run-isolated-gui-tests.py
GitHub Actions runs compilation and deterministic pytest coverage on Windows and Linux for Python 3.10, 3.12, and 3.14. Windows runs each Tk-backed GUI node in a fresh interpreter; Linux runs the full suite under Xvfb. A separate job builds and imports the source distribution and wheel without publishing. CodeQL analyzes Python and GitHub Actions with least-privilege workflow permissions and pinned action revisions.
Release-candidate limitations
- Real DPI and multi-monitor acceptance is incomplete.
- Screen-reader and full accessibility acceptance is incomplete.
- Interactive/silent install, launch-after-install, upgrade, uninstall, and clean-removal acceptance is incomplete.
- The aggregate Definition of Done remains partial because those visible/manual checks are not complete.
- The installer is unsigned and has no separately approved custom application icon.
- Python is the implemented project-readiness ecosystem; other ecosystem adapters remain future work.
Unchecked manual items are not reported as tested. Review the Windows acceptance checklist before promoting the release candidate to a final release.
License
ARX is available under the MIT License. Contributions are welcome under CONTRIBUTING.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arx_prescanner-3.0.0rc1.tar.gz.
File metadata
- Download URL: arx_prescanner-3.0.0rc1.tar.gz
- Upload date:
- Size: 114.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b163a6503343045ef5a4fdd6671716bbe92e010a05a553777601716f4129ee49
|
|
| MD5 |
ba477ba9f471d815074db15568d8971d
|
|
| BLAKE2b-256 |
57e851c25742dc4007c625550aeeb5ae0b49b3a2d1e352e08dd83ed5adeffc54
|
Provenance
The following attestation bundles were made for arx_prescanner-3.0.0rc1.tar.gz:
Publisher:
publish-pypi.yml on chatgptopenaiagi/ARX
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arx_prescanner-3.0.0rc1.tar.gz -
Subject digest:
b163a6503343045ef5a4fdd6671716bbe92e010a05a553777601716f4129ee49 - Sigstore transparency entry: 2577739686
- Sigstore integration time:
-
Permalink:
chatgptopenaiagi/ARX@11a1d76d1dd7225622cb41d862c8cb129ab4db80 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/chatgptopenaiagi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@11a1d76d1dd7225622cb41d862c8cb129ab4db80 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file arx_prescanner-3.0.0rc1-py3-none-any.whl.
File metadata
- Download URL: arx_prescanner-3.0.0rc1-py3-none-any.whl
- Upload date:
- Size: 91.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5da90c84540aeaaa59de5be43e4b2a3ac89091da52d1e25a9f68c1275142b87
|
|
| MD5 |
6419f5f9fed293ac53e8deb4e4abee57
|
|
| BLAKE2b-256 |
4a76567bef80912aad37d5829594d397cc5340068ab60a100d825ce3f511c3e1
|
Provenance
The following attestation bundles were made for arx_prescanner-3.0.0rc1-py3-none-any.whl:
Publisher:
publish-pypi.yml on chatgptopenaiagi/ARX
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arx_prescanner-3.0.0rc1-py3-none-any.whl -
Subject digest:
b5da90c84540aeaaa59de5be43e4b2a3ac89091da52d1e25a9f68c1275142b87 - Sigstore transparency entry: 2577739769
- Sigstore integration time:
-
Permalink:
chatgptopenaiagi/ARX@11a1d76d1dd7225622cb41d862c8cb129ab4db80 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/chatgptopenaiagi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@11a1d76d1dd7225622cb41d862c8cb129ab4db80 -
Trigger Event:
workflow_dispatch
-
Statement type: