crypto-shortterm’s GitHub repo was renamed and the code relocated as part of the pmv2 re-architecture into one self-contained git repo per component. This note records the new canonical names/paths and the producer/executor split that governs how crypto-shortterm places orders.
For Agents
Canonical from 2026-06-22 onward:
- GitHub repo:
wowjeeez/pmv2-crypto-algo(waswowjeeez/crypto-fetch). GitHub redirects old→new.origin/main = 7bfe3a0.- Local path:
/Users/levander/coding/pmv2/crypto_algo(was/Users/levander/coding/crypto_fetch, now empty).- The old repo name and old path are stale everywhere — use the new ones.
What Changed
| Item | Old | New |
|---|---|---|
| GitHub repo | wowjeeez/crypto-fetch | wowjeeez/pmv2-crypto-algo |
| Local workspace | /Users/levander/coding/crypto_fetch | /Users/levander/coding/pmv2/crypto_algo |
| Babylon handle | crypto | crypto (unchanged) |
Git history, .env, and .mcp.json all moved with the code. The local remote was updated and verified; the project builds clean from the new path. GitHub’s old→new redirect means stale clone URLs still resolve, but new references should use the new name.
pmv2 Re-Architecture: One Repo Per Component
The pmv2 system is realized as one self-contained git repo per component, split into producers, a shared executor, and a notification service:
| Component | Role |
|---|---|
crypto_algo (this project) | Producer — emits Directives |
cohort_algo | Producer |
us_weather_algo / as_weather_algo | Producers |
position_manager | Shared executor — consumes Directives, places orders via CLOB |
telegram_connector | Notification service |
For Agents — crypto-shortterm does NOT build its own order path
crypto-shortterm is a producer only. It does not own a wallet, key, or CLOB order path. It publishes a Directive envelope to NATS subject
cohort.signals; pmv2’sposition_managerexecutor consumes bysourceand places the order via CLOB. No new wallet/key/service is built on the crypto-shortterm side. See crypto-shortterm-phase1-execution-decision.
Related
- crypto-shortterm-phase1-execution-decision — the producer/executor decision and the staged $100 live latency test
- crypto-shortterm-phase1-emit — the emit binary (the producer) and its Directive schema
- crypto-shortterm-polymarket-token-overflow-fix — the
7bfe3a0fix that is noworigin/main - crypto-shortterm — project index