Copilot

Results 4682 issues of Copilot

## Problem The `rmg_kinetics.py` script had two issues affecting the accuracy of kinetic rate coefficient calculations: 1. **Double multiplication of the A factor by degeneracy**: The code was multiplying the...

This PR replaces the minimal 2-line README.md with comprehensive documentation that provides users with all the information they need to understand, install, and use the upm-embed Unity extension. ## What...

This PR adds a new `/health` endpoint that provides a simple way to determine when the Stellar Quickstart image is fully ready for use, addressing the issue where users need...

The `deny.toml` configuration file used deprecated format and fields, causing cargo-deny 2.0.13 to fail with multiple errors including `error[unexpected-value]: expected '["all", "workspace", "transitive", "none"]'` and `error[deprecated]: this key has been...

This PR implements `VecN`, a new type that provides compile-time guarantees for vectors with exactly N elements, following the same pattern as `BytesN`. ## Motivation In Soroban contracts, there are...

Implements a new `symbol!` macro that provides optimal Symbol creation by choosing the best approach at compile time, addressing the performance trade-offs identified in the Symbol::new implementation. ## Problem The...

The Rust unit type `()` was incorrectly being encoded as `SC_SPEC_TYPE_TUPLE` instead of `SC_SPEC_TYPE_VOID` in contract specifications. This affected both function parameters and return types that use the unit type....

Loadgen has gotten pretty complex with all the different modes and configurations. The problem is that when misconfigured, it just reports a generic failure in metrics. This makes debugging downstream...

Thanks for assigning this issue to me. I'm starting to work on it and will keep this PR's description up to date as I form a plan and make progress....

With 1200+ open issues, manually identifying duplicates is impractical. This adds an automated detection system using multi-metric similarity analysis. ## Implementation ### Core Tool (`tools/find-duplicates.py`) - Weighted similarity scoring: Title...