aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrottedfm <rottedfm@proton.me>2026-08-19 11:21:20 -0400
committerrottedfm <rottedfm@proton.me>2026-08-19 11:21:20 -0400
commit8c0b4c53b130555f040884c1f52b90f16b23e241 (patch)
treecbb77a8b94db0dcf36c09a1b0087ac762b3a4ee2
parentc6ae4660d1cc2414b22c492c5e819d009c8187c2 (diff)
chore: add BSD-2-Clause license and ignore rules
The repository had no license, which blocks distribution and left the README's "setup license" item open. Ignore rules now cover the runtime data directory, coverage output, and local assistant notes. Class: Process/docs only Requirements: none — no source changed Verified: no source changed; gate unaffected Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
-rw-r--r--.gitignore13
-rw-r--r--LICENSE24
2 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index ea8c4bf..5f605d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,14 @@
/target
+
+# Runtime data directory: logs and state, not source.
+# `.envrc` points MOJIBAKE_DATA here during development.
+/.data/
+
+# Coverage output
+/lcov.info
+*.profraw
+
+# Local AI assistant instructions — personal, not part of the project
+CLAUDE.md
+CLAUDE.local.md
+.claude/
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..3a57b48
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,24 @@
+BSD 2-Clause License
+
+Copyright (c) 2026, rottedfm
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.