Set up Cursor Cloud dev environment (AGENTS.md) - #56
Draft
vistone wants to merge 1 commit into
Draft
Conversation
Co-authored-by: stone <vistone@users.noreply.github.com>
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
Sets up and verifies the development environment for the
fingerprint-rustRust workspace, and documents durable, non-obvious setup/run guidance for future cloud agents in a newAGENTS.md.No application code was changed — only
AGENTS.mdwas added.Environment
1.90.0(pinned viarust-toolchain.toml).pkg-config,libssl-dev(required byopenssl-sys),redis-server(for the optional gateway).cargo fetch(minimal, idempotent dependency refresh).Verified (core product — Rust workspace)
cargo build(default members)cargo fmt --all -- --checkcargo clippy --workspace --all-targets(0 warnings)cargo test --workspace --lib(all crates pass, 0 failures)cargo run -p fingerprint-core --example modern_fingerprinting(JA4 TLS / JA4X X.509 / PQC / WASM fingerprint generation)Optional service
fingerprint-gatewaycompiles, boots, binds:8080, connects to Redis.run_serverwrapsArc<RateLimiter>/Arc<ApiKeyValidator>inweb::Data, so handlers extractingweb::Data<RateLimiter>/web::Data<ApiKeyValidator>can't resolve app data and every route returns HTTP 500. This is application code, not environment setup, so it is left as-is and documented inAGENTS.md.Notes
examples/dir is not a compiled Cargo target; examples live in individual crates (run via-p <crate> --example <name>).phase7_api/Python FastAPI service is optional and needs uncommitted.pklmodels for real inference.