Useful Prompts#
Find unecessary project dependencies#
Analyze all of the project dependencies and identify any that are not necessary or could be reduced. Think very very hard.
Review and ensure error correctness#
Review all of the errors in the atproto-oauth-axum crate and ensure their names, messages, documentation, and usage are correct. Each error must have a globally unique identifier and error numbers must be ordered consistently. Think very very hard.
Review all of the errors and identify any that are unused. Think very very hard.
Add missing documentation#
Using cargo check, add documentation to things that are missing documentation to satisfy compiler warnings.
Document the crates/atproto-oauth/src/pkce.rs source file. Think very hard.
Review and ensure README correctness#
In the atproto-record crate, update project documentation and README files to ensure they are accurate and reflect current source code. Think very very hard.
Module documentation#
Write high level module documentation in the path/to/file.rs source file. Documentation should brief and specific. Think very hard about how to do this.
Update the high level module documentation in each of the source files in the atproto-identity, atproto-record, atproto-oauth, atproto-client, and atproto-oauth-axum crates. Documentation should brief and specific. Think very hard about how to do this.
Update the README.md files in the atproto-identity, atproto-record, atproto-oauth, atproto-oauth-axum, and atproto-client crates. Each README.md file should include a high level overview of what the crate provides and include a summary of each binary produced by the crate. Think very hard.
Write a project README.md file that describes the project as a library that supports ATProtocol identity record signing and verifying. Note that parts of this was extracted from the open sourced https://tangled.sh/@smokesignal.events/smokesignal project. This project is open source under the MIT license.
The README.md file should provide a high level overview of all of the project crates. It should also concisely reference the available binaries and provide a minimal example of how to use them.
Write a README.md file for the atproto-oauth crate. Use crates/atproto-identity/README.md and crates/atproto-record/README.md as references. Think really hard.
Check and clippy#
Using cargo clippy, satisfy warnings. Think very hard about how to do this.
Using cargo build, cargo fmt, cargo check, cargo clippy, and cargo test identity and resolve and warnings or errors. Think very hard.