-
Notifications
You must be signed in to change notification settings - Fork 93
Enhance README with project details and guidelines #247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -36,3 +36,35 @@ Early. The foundation is being laid. If you believe the Python numerical stack d | |||||||||||||||||||||
| ## license | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| MIT | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## 📖 Overview | ||||||||||||||||||||||
| Brief description of the project, what it does, and the problem it solves. | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## ✨ Features | ||||||||||||||||||||||
| - Feature 1 | ||||||||||||||||||||||
| - Feature 2 | ||||||||||||||||||||||
| - Feature 3 | ||||||||||||||||||||||
|
Comment on lines
+43
to
+46
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate Features section. The README already has a "what's coming" section at lines 15-23 that provides a detailed, project-specific feature list (N-dimensional arrays, parallel operations, string arrays, Apache Arrow integration, etc.). This new Features section with generic "Feature 1, Feature 2, Feature 3" placeholders is redundant and provides no value. Recommended fix-## ✨ Features
-- Feature 1
-- Feature 2
-- Feature 3
-📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## 🛠️ Tech Stack | ||||||||||||||||||||||
| - Language / Framework | ||||||||||||||||||||||
| - Libraries / Dependencies | ||||||||||||||||||||||
| - Tools used | ||||||||||||||||||||||
|
Comment on lines
+48
to
+51
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate Tech Stack section. The README already has a "built with" section at lines 29-34 that lists the actual technology stack: Rust, PyO3, arrow-rs, and Rayon with links. This new section with generic placeholders duplicates that existing content. Recommended fix-## 🛠️ Tech Stack
-- Language / Framework
-- Libraries / Dependencies
-- Tools used
-📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## 📦 Installation | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## 🚀 Usage | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ```bash id="t7k2xa" | ||||||||||||||||||||||
| cargo run | ||||||||||||||||||||||
|
Comment on lines
+57
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove non-standard code block attribute. The Recommended fix-```bash id="t7k2xa"
+```bash
cargo run
+```🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| 🤝 Contributing | ||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix markdown heading syntax. Line 60 is missing the Recommended fix-🤝 Contributing
+## 🤝 Contributing📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
| Fork the repository | ||||||||||||||||||||||
| Create a feature branch | ||||||||||||||||||||||
| Make your changes | ||||||||||||||||||||||
| Run tests and linters | ||||||||||||||||||||||
| Submit a pull request | ||||||||||||||||||||||
|
Comment on lines
+61
to
+65
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix list formatting. Lines 61-65 are not formatted as a proper markdown list. Each item should start with a Recommended fix-Fork the repository
-Create a feature branch
-Make your changes
-Run tests and linters
-Submit a pull request
+- Fork the repository
+- Create a feature branch
+- Make your changes
+- Run tests and linters
+- Submit a pull request📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| 📄 License | ||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix markdown heading syntax. Line 67 is missing the Recommended fix-📄 License
+## 📄 License📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| This project is licensed under the terms of the LICENSE file. | ||||||||||||||||||||||
|
Comment on lines
+67
to
+69
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate License section. The README already has a license section at lines 36-38 that clearly states "MIT". This new section with generic template text creates unnecessary duplication and could cause confusion about the actual license terms. Recommended fix-📄 License
-
-This project is licensed under the terms of the LICENSE file.
-📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove duplicate Overview section.
The README already has a concise project description at lines 3-7 and a "why" section at lines 9-13 that explains the project's purpose and the problem it solves. This new Overview section with generic placeholder text creates unnecessary duplication and conflicts with the existing well-written content.
Per the PR objectives to "remove unstructured/internal content," this template section should be removed rather than added on top of existing content.
Recommended fix
🤖 Prompt for AI Agents