Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body:
attributes:
value: |
Thanks for taking the time to suggest a feature! Please fill out the sections below.

- type: textarea
id: feature-description
attributes:
Expand Down Expand Up @@ -38,5 +38,4 @@ body:
options:
- label: I have joined the [Discord server](https://discord.gg/hjUhu33uAn) and will post updates there
required: true
- label: I have searched existing issues to avoid duplicates
required: true

11 changes: 1 addition & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb

Comment on lines 1 to +4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

# First, let's read the full .gitignore file to see what patterns exist
cat -n .gitignore

Repository: AOSSIE-Org/Template-Repo

Length of output: 5591


🏁 Script executed:

# Also run the suggested verification script to check for LaTeX files
#!/bin/bash
# Description: Check for LaTeX files in the repository to assess impact

echo "=== Searching for .tex files in repository ==="
fd -e tex -t f | head -n 20

echo ""
echo "=== Searching for LaTeX auxiliary files that would now be tracked ==="
fd -e log -e lot -e fls -e out -e toc -e fmt -e fot -e cb -e cb2 -t f | head -n 20

echo ""
echo "=== Count of LaTeX source and auxiliary files ==="
echo "TeX files: $(fd -e tex -t f | wc -l)"
echo "Log files: $(fd -e log -t f | wc -l)"
echo "Other aux files: $(fd -e lot -e fls -e out -e toc -t f | wc -l)"

Repository: AOSSIE-Org/Template-Repo

Length of output: 281


Add missing LaTeX auxiliary file patterns to the .gitignore "Core latex/pdflatex auxiliary files" section.

The "Core latex/pdflatex auxiliary files" section is incomplete. Standard patterns like *.log, *.out, *.toc, *.fmt, *.fot, *.cb, and *.cb2 are missing from this section and should be restored. While the repository currently contains no LaTeX files, this template repository should maintain these patterns for consistency with standard LaTeX gitignore configurations, ensuring future users have proper protection against accidental commits of auxiliary files.

🤖 Prompt for AI Agents
In .gitignore around lines 1 to 4, the "Core latex/pdflatex auxiliary files"
section is missing common LaTeX auxiliary patterns; update that section to
include the standard entries (*.log, *.out, *.toc, *.fmt, *.fot, *.cb, *.cb2)
alongside the existing *.aux and *.lof so future commits don't accidentally
include LaTeX aux files.


## Intermediate documents:
*.dvi
Expand Down
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Preamble

The GNU General Public License is a free, copyleft license for
nse is a free, copyleft license for
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check the LICENSE file content around line 9
echo "=== LICENSE file lines 1-20 ==="
head -n 20 LICENSE

echo ""
echo "=== Exact line 9 of LICENSE ==="
sed -n '9p' LICENSE

echo ""
echo "=== Line count of LICENSE ==="
wc -l LICENSE

echo ""
echo "=== Full LICENSE file preview (first 100 chars) ==="
head -c 500 LICENSE

Repository: AOSSIE-Org/Template-Repo

Length of output: 1604


🌐 Web query:

Official GNU GPL v3 license text preamble

💡 Result:

The preamble of the GNU General Public License, version 3 (official text):

The GNU General Public License is a free, copyleft license for software and other kinds of works.

The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.

To protect your rights, we need to make requirements that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.

(Full license text available from the GNU Project.) [1][2]

Sources:
[1] GNU General Public License (Version 3) text as published on GNU/FSF pages.
[2] GNU Project — Licenses overview.


Restore the corrupted GPL v3 license text on line 9.

The LICENSE file contains corrupted text. Line 9 currently reads "nse is a free, copyleft license for" but the official GPL v3 text specifies "The GNU General Public License is a free, copyleft license for". The opening phrase "The GNU General Public License is" is missing. License texts are legal documents and must match the official version exactly to maintain validity.

Replace line 9:

-nse is a free, copyleft license for
+The GNU General Public License is a free, copyleft license for
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
nse is a free, copyleft license for
The GNU General Public License is a free, copyleft license for
🤖 Prompt for AI Agents
In LICENSE around line 9, the GPLv3 text was corrupted: line 9 reads "nse is a
free, copyleft license for" but must exactly match the official wording. Replace
that line with the correct phrase "The GNU General Public License is a free,
copyleft license for" so the LICENSE file matches the official GPL v3 text
verbatim.

software and other kinds of works.

The licenses for most software and other practical works are designed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ TODO: List your main features here:
---

## 💻 Tech Stack

zvx
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Remove the random "zvx" text.

This appears to be accidental test input that was committed. It has no meaning in the context of the Tech Stack section and should be removed.

🔎 Proposed fix
-zvx
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
zvx
🤖 Prompt for AI Agents
In README.md around line 70, remove the stray text "zvx" which is accidental
test input; delete that token or the entire line so the Tech Stack section reads
cleanly and ensure surrounding paragraph/markdown spacing remains correct after
removal.

TODO: Update based on your project

### Frontend
Expand Down