MIT License
Copyright (c) 2025 Koray Taylan
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Add Open Source License (LICENSE file) and Update Contributing Documentation
Summary
The repository currently has no LICENSE file. This is a significant oversight for a project that has:
README.mdwith "Contributing", "Definition of Done", and "Rules" sectionsWithout a license, the legal status of the code is ambiguous. Technically, under copyright law, no one is allowed to copy, modify, or distribute the code (even for personal use in many jurisdictions) without explicit permission.
What is the problem?
LICENSEorLICENSE.mdfile at the repository root.README.mdnever mentions licensing terms.Why this matters
-D warnings, detailed security model, and a 800+ line README — but no license. This looks unprofessional.How to solve it (clear, junior-dev friendly steps)
Recommended License: MIT
Why MIT?
(Apache-2.0 is also acceptable if the maintainer prefers patent protection language.)
Step-by-step execution
Create the LICENSE file (do not use the year range trick unless you are the sole copyright holder)
The simplest correct form for 2025 onward:
Save this as
LICENSE(no extension) in the repository root.Update the README.md
Add a new small section near the top (after the title and one-line description, before Table of Contents) or at the bottom:
Also update the "Contributing" section to include a sentence like:
(Optional but nice) Add a license badge or link in the README header.
Verify
ls -l LICENSEto confirm the file existsAcceptance Criteria
LICENSEfile exists at repository root with valid MIT (or Apache-2.0) textREADME.mdcontains a clear "License" section that links to the fileLearning Goals for This Task
Relevant Files
README.md(multiple sections: Contributing, Definition of Done, Roadmap)Out of Scope
This is an excellent "good first issue" — it is low-risk, high-visibility, teaches an important real-world concept (licensing), and has a very clear finish line. A junior developer who completes this will have made the entire project legally usable by others for the first time.