revert: remove Peek, restore repo to pre-extraction state - #17
Merged
Conversation
Peek (the data-leakage auditor) has been extracted into its own repo: https://github.com/OnePunchMonk/peek This reverts the tree to exactly commit 22bbe0b (the state before PR #15 introduced Peek into this monorepo): removes peek/, its tests, CLAUDE.md and docs/AGENTQUANT.md (both peek-pivot-specific), and restores pyproject.toml, README.md, .gitignore, and the CI workflow to their pre-Peek content. 63 tests passing (the original AgentQuant suite).
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.
Summary
Peek (the data-leakage auditor added in #15) has been extracted into its own repo: https://github.com/OnePunchMonk/peek — trimmed dependencies (pandas+numpy only), fixed Python floor (3.9+), own CI, own PyPI packaging as
peek-audit, plus the audit-hardening fixes from #16.This PR reverts AgentQuant back to exactly the tree at
22bbe0b(the commit before #15 merged):peek/and its 5 test filesCLAUDE.mdanddocs/AGENTQUANT.md(both were peek-pivot-specific documents, not general project docs —CLAUDE.mdwas literally titled "Build Plan: Peek")pyproject.toml,README.md,.gitignore,.github/workflows/ci.ymlto their pre-Peek contentVerified
git diff 22bbe0b -- .is empty after this change — the tree is byte-identical to pre-Peekmain.Why
Keeping AgentQuant and Peek in one repo meant Peek's users had to install streamlit/plotly/yfinance/etc. to get a two-dependency (pandas+numpy) library, and it diluted both projects' identity. Splitting them lets each move independently.
Test plan
git diff 22bbe0b -- .— empty, confirms exact revert63 passed(the original AgentQuant tests; Peek's 24 now live in its own repo)