toga-ai 1.0.79 → 1.0.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ project: _Underscore
5
5
  client: shared
6
6
  type: standard
7
7
  status: active
8
- updated: 2026-06-08
8
+ updated: 2026-06-15
9
9
  owners: [jcardinal]
10
10
  files: []
11
11
  related:
@@ -425,6 +425,13 @@ if ($user->load()) { /* found */ }
425
425
 
426
426
  * Use tabs for indentation, not spaces.
427
427
 
428
+ #### **Line Endings**
429
+
430
+ * The 2.0 repos have **no `.gitattributes`** and contain a **mix of LF and CRLF files** — there is no single repo-wide line ending. Core files (e.g. `Model.php`, `Loader.php`, `Email.php`) are CRLF; many others (e.g. `Model/Client/EmailTemplate.php`) are LF.
431
+ * **Preserve a file's existing line ending when you edit it.** Do not let an editor or tool silently convert the whole file (a common LF→CRLF flip on Windows).
432
+ * A whole-file ending flip turns a one-line change into a full-file rewrite in `git diff`, burying the real change, breaking `git blame`, and inviting merge conflicts.
433
+ * **Check before committing:** if `git diff --stat` shows a tiny edit as a near-total rewrite, the endings flipped. Restore them — e.g. for an LF file: `tr -d '\r' < file > file.tmp && mv file.tmp file` — then re-stage.
434
+
428
435
  #### **Braces**
429
436
 
430
437
  * Opening braces for classes, methods and control structures (`if`, `else`, `for`, `while`, etc.) should go on the same line.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toga-ai",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
4
4
  "description": "TOGA Technology Team Claude Knowledge System — shared AI coding harness with skills, knowledge base CLI, and project installer for Claude Code.",
5
5
  "keywords": [
6
6
  "claude",