Foundation — repo hygiene, module skeleton, quality gates#14
Merged
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.
What changed: Removed generated artifacts and stale top-level demo scripts from version control. Added module skeleton for the new architecture (protocols.py, profile.py, verifier.py, plan.py, providers/*) — no runtime change, just scaffolding. Added CI workflows for tests, type-check, lint, AERF v0.1 conformance, security audit, example execution. Added pre-commit configuration. Added a strict-xfail conformance test that documents the current drift from AERF v0.1.
Why: This is the first PR in a multi-PR migration toward the architecture described in the build spec (one decorator, eight protocols, profiles for vertical depth, AERF v0.1 receipts, six-command CLI). This PR sets the workspace and the rules; subsequent PRs port the implementation.
What this does not do yet: No existing runtime behavior changes. The old AgentMint class, the old @require_receipt decorator, the old CLI, the old Notary structure all remain. PR 2 ports them. PR 3 deletes the old code.
Safety: This PR cannot break anything that currently runs. The conformance test is marked xfail so test suite stays green. The type-check workflow allows failures. The new modules are empty stubs that don't affect imports of the old code.