notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 8d3cf5ad0fa3ce2fc13442acf542952d9dd1b4dc
parent 66afa3b13b77c3f0bf93cb1dbcad6e07f431da71
Author: alltheseas <64376233+alltheseas@users.noreply.github.com>
Date:   Thu, 30 Oct 2025 14:35:08 -0500

Add guidelines for inspecting notedeck code

-added a line advising agent to inspect code for reusable patterns before creating new code
Diffstat:
MAGENTS.md | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/AGENTS.md b/AGENTS.md @@ -101,6 +101,7 @@ This document captures the current architecture, coding conventions, and design 4. Please set up code for performance profiling utilizing puffin (e.g. `cargo run --release --features puffin`). 5. Related to Puffin & performance profiling, for code suspected of impacting performance, carefully consider adding performance profiling attributes such as e.g. profiling::function in order to see functions performance in the profiler. 6. Global variables are not allowed in this codebase, even if they are thread local. State should be managed in an struct that is passed in as reference. +7. Inspect notedeck code for reusable components, elements, patterns etc. before creating new code for both A) notedeck updates, and B) apps built on notedeck.