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
6 changes: 6 additions & 0 deletions COPYRIGHT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Copyright © 2025 The Stable Order
All rights reserved.

All works in this repository may be used according to the conditions stated in the LICENSE.md file available in this repository.

These works are WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Comment on lines +4 to +6
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

# Search for LICENSE-related files in the repository
find . -maxdepth 1 -type f -name "LICENSE*" -o -name "license*" 2>/dev/null | head -20

Repository: StabilityNexus/HackathonsAndGrantPrograms

Length of output: 67


🏁 Script executed:

# Check if COPYRIGHT.md exists and read it
cat -n COPYRIGHT.md 2>/dev/null || echo "COPYRIGHT.md not found"

# Also search for LICENSE files anywhere in the repo
find . -type f -iname "LICENSE*" 2>/dev/null | head -20

Repository: StabilityNexus/HackathonsAndGrantPrograms

Length of output: 440


🏁 Script executed:

# Search for any license-related information in common places
if [ -f README.md ]; then grep -i "license\|copyright" README.md | head -10; fi

# Check if there's any .github/LICENSE file
find . -type f -name "*LICENSE*" -o -name "*license*" -o -name "COPYING*" 2>/dev/null

# Check common metadata files for license info
for f in package.json setup.py setup.cfg pyproject.toml; do
  if [ -f "$f" ]; then echo "=== $f ==="; grep -i "license" "$f" | head -5; fi
done

Repository: StabilityNexus/HackathonsAndGrantPrograms

Length of output: 67


LICENSE.md does not exist; the reference on line 4 is broken.

The file referenced on line 4 (LICENSE.md) is missing from the repository. Additionally, "All rights reserved." on line 2 suggests a proprietary license, which contradicts the statement that works may be used according to conditions in a (non-existent) license file. Either add the missing LICENSE.md file or revise the COPYRIGHT.md text to accurately reflect the actual licensing status of the repository.

🤖 Prompt for AI Agents
In COPYRIGHT.md around lines 4 to 6, the file references LICENSE.md which does
not exist and conflicts with the "All rights reserved." statement; either add a
LICENSE.md to the repo and update COPYRIGHT.md to reference it (include the full
license text or a clear SPDX identifier and ensure the license chosen matches
"All rights reserved." if proprietary or a permissive/OSS license if you intend
to permit reuse), or remove/replace the LICENSE.md reference and rewrite
COPYRIGHT.md to accurately state the repository's licensing status (e.g., keep
"All rights reserved." and remove the usage permission sentence, or replace with
the correct license name/SPDX identifier and link to the added LICENSE.md).
Ensure the two files are consistent and that COPYRIGHT.md points to the actual
license file or contains the correct license identifier.