Add inline documentation to the user exposed functions/struct/anything. This would help a lot of the users by improving code editor inline suggestions + llm contexts. - [ ] JSDoc comments in typescript ```ts /** * Here my comment */ function myFunction() {} ``` - [ ] Documentation comments in rust ```rust /// Three slashes comment fn my_function(){} ```