Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
7
This is an HTTP proxy server for Anthropic API requests, written in Rust. It provides a proxy layer for handling Anthropic API calls with configuration management and logging.
Sign in to like and favorite skills
This is an HTTP proxy server for Anthropic API requests, written in Rust. It provides a proxy layer for handling Anthropic API calls with configuration management and logging.
snake_casePascalCaseSCREAMING_SNAKE_CASEResult<T, E> and ? operator, avoid unwrap() in production.await syntaxsrc/ directorytests/ directoryexamples/ directorytokio: Async runtime for I/O operationshyper: HTTP server and client implementationtracing: Structured logging and diagnosticsserde: Serialization and deserializationtoml: Configuration file parsing# Build the project cargo build # or just build # Run tests cargo test # Test specific file cargo test --test integration_tests # Test specific function cargo test <test_name> # Lint code cargo clippy # or just lint # Format code cargo fmt # or just fmt # Run application cargo run # or just run
#[cfg(test)] modules within source filestests/ directory.env.example)config.toml for application configurationconfig.example.toml for configuration optionstracing for structured logging with appropriate levelsthiserror or similarserde for serialization/deserialization of config and data