Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Inside the CLI, you can use `.help` to see available meta-commands (like `.table
- **Joins**: `INNER JOIN`, `LEFT JOIN`
- **Aggregates**: `COUNT()`, `SUM()`, `AVG()`, `MIN()`, `MAX()`
- **Operators**: `=`, `!=`, `<`, `>`, `<=`, `>=`, `AND`, `OR`, `NOT`, `LIKE`, `IS NULL`, `IS NOT NULL`, `BETWEEN`, `IN`
- **Utility**: `SHOW TABLES`, `DESCRIBE <table>`
- **Utility**: `SHOW TABLES`, `DESCRIBE <table>`

## License
MIT
No license it is open source
Comment on lines 73 to +74

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== repository files =="
git ls-files | sed -n '1,120p'

echo "== README license section =="
if [ -f README.md ]; then
  nl -ba README.md | sed -n '60,85p'
else
  echo "README.md not found"
fi

echo "== license files =="
git ls-files | grep -iE '(^|/)(LICENSE|LICENSE\.txt|LICENSE\.md|LICENSE\.json|UNLICENSE|COPYING)(\..*)?$' || true

Repository: Sudhss/fromScratch---Mini-SQL-RDB-

Length of output: 1445


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== README license section =="
sed -n '60,85p' README.md

echo "== license files =="
find . -maxdepth 2 -type f \( -iname 'LICENSE*' -o -iname 'COPYING*' -o -iname 'UNLICENSE*' \) -print

Repository: Sudhss/fromScratch---Mini-SQL-RDB-

Length of output: 889


State a real license or remove the open-source claim.

No license it is open source creates a contradictory policy: without a license, standard copyright restrictions still apply, while the project claims open-source status. Add an accepted license text, such as MIT, or remove the open-source description.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` around lines 73 - 74, Resolve the contradiction in the README
License section by either adding a complete, recognized license declaration and
text, such as MIT, or removing the claim that the project is open source; do not
leave an unlicensed project described as open source.

Source: MCP tools