gitmem-mcp 1.2.1 → 1.3.0

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.
@@ -1,6 +1,6 @@
1
1
  [
2
2
  {
3
- "id": "00000000-0000-0000-0000-000000000002",
3
+ "id": "81fe2d44-24ae-4946-a063-d4ea3a12a71a",
4
4
  "learning_type": "scar",
5
5
  "title": "Done != Deployed != Verified Working",
6
6
  "description": "Code being 'done' (merged) doesn't mean it's deployed, and being deployed doesn't mean it's working correctly in production. The full loop is: merge → deploy → verify the feature works end-to-end in the target environment. Skipping verification leads to silent failures.",
@@ -18,7 +18,7 @@
18
18
  "created_at": "2026-01-01T00:00:00Z"
19
19
  },
20
20
  {
21
- "id": "00000000-0000-0000-0000-000000000004",
21
+ "id": "07c7f9d3-1336-4fef-81da-af7c97590ab9",
22
22
  "learning_type": "scar",
23
23
  "title": "Database Migration Without Rollback Plan",
24
24
  "description": "Running database migrations without a tested rollback plan risks data loss or extended downtime. Destructive migrations (dropping columns, changing types) are especially dangerous. Always write and test the down migration before running the up migration in production.",
@@ -36,7 +36,7 @@
36
36
  "created_at": "2026-01-01T00:00:00Z"
37
37
  },
38
38
  {
39
- "id": "00000000-0000-0000-0000-000000000010",
39
+ "id": "33996174-a7f4-42f5-81ac-f601e566cc5a",
40
40
  "learning_type": "scar",
41
41
  "title": "Silent Error Swallowing Hides Real Failures",
42
42
  "description": "Empty catch blocks and generic error handlers that log but don't surface errors lead to silent failures. The system appears to work while data is lost or corrupted. At minimum, log errors with enough context to diagnose the issue. Better: fail visibly so problems are caught early.",
@@ -52,5 +52,77 @@
52
52
  "project": "default",
53
53
  "source_date": "2026-01-01",
54
54
  "created_at": "2026-01-01T00:00:00Z"
55
+ },
56
+ {
57
+ "id": "726c03d4-8962-4b0f-89a2-ea1cd0b223aa",
58
+ "learning_type": "scar",
59
+ "title": "Untested Code Passes By Coincidence",
60
+ "description": "Code without tests may appear to work because the happy path succeeds, but untested edge cases silently fail. Tests that don't exist can't catch regressions. 'It works on my machine' is not a test — write assertions for the behavior you expect, especially boundary conditions and error paths.",
61
+ "severity": "high",
62
+ "scar_type": "process",
63
+ "is_starter": true,
64
+ "counter_arguments": [
65
+ "The code is simple enough that tests aren't needed — but simple code gets modified later and regressions appear without test coverage",
66
+ "Manual testing is sufficient for this — but manual tests don't run automatically and get skipped under time pressure"
67
+ ],
68
+ "keywords": ["testing", "coverage", "regression", "assertions", "edge-cases"],
69
+ "domain": ["testing", "quality"],
70
+ "project": "default",
71
+ "source_date": "2026-01-01",
72
+ "created_at": "2026-01-01T00:00:00Z"
73
+ },
74
+ {
75
+ "id": "8a376e29-dc8d-49a7-b840-28643086e90a",
76
+ "learning_type": "scar",
77
+ "title": "Environment Config Drift Between Local and Production",
78
+ "description": "Environment variables, feature flags, and configuration that differ between local dev and production cause bugs that only appear after deployment. The fix works locally but breaks in prod because of a missing env var, different API URL, or stricter security policy. Keep a canonical list of all config, validate it at startup, and test with production-like config.",
79
+ "severity": "high",
80
+ "scar_type": "operational",
81
+ "is_starter": true,
82
+ "counter_arguments": [
83
+ "We use the same .env file everywhere — but .env files drift silently and new variables get added locally without updating production",
84
+ "Our staging environment matches production — but staging configs still diverge over time without automated drift detection"
85
+ ],
86
+ "keywords": ["environment", "config", "env-vars", "production", "deployment", "drift"],
87
+ "domain": ["config", "deployment"],
88
+ "project": "default",
89
+ "source_date": "2026-01-01",
90
+ "created_at": "2026-01-01T00:00:00Z"
91
+ },
92
+ {
93
+ "id": "b6a9ac29-25ba-4667-9fed-0ada98dd588e",
94
+ "learning_type": "scar",
95
+ "title": "Changing Dependencies Without Checking Breaking Changes",
96
+ "description": "Upgrading or adding dependencies without reading the changelog introduces breaking changes that surface later as mysterious failures. Semver violations are common — a minor version bump can still break your code. Always read the changelog, check for breaking changes, and run your test suite after any dependency change.",
97
+ "severity": "medium",
98
+ "scar_type": "process",
99
+ "is_starter": true,
100
+ "counter_arguments": [
101
+ "It's just a patch version so it should be safe — but semver is a social contract, not a guarantee, and patch releases do contain breaking changes",
102
+ "Our lockfile protects us — but lockfiles only help if everyone uses them consistently and CI doesn't do fresh installs"
103
+ ],
104
+ "keywords": ["dependencies", "npm", "upgrade", "breaking-changes", "changelog", "semver"],
105
+ "domain": ["dependencies", "maintenance"],
106
+ "project": "default",
107
+ "source_date": "2026-01-01",
108
+ "created_at": "2026-01-01T00:00:00Z"
109
+ },
110
+ {
111
+ "id": "5db0ffc7-e6d8-48bc-aa23-fce7fd8eaadb",
112
+ "learning_type": "scar",
113
+ "title": "Fixing Symptoms Instead of Root Causes",
114
+ "description": "Adding workarounds, special cases, or retry logic to mask a bug treats the symptom while the root cause remains. The workaround becomes tech debt that makes the real fix harder to find later. Before writing a fix, trace the execution path to understand WHY the failure happens, not just WHERE it happens.",
115
+ "severity": "high",
116
+ "scar_type": "process",
117
+ "is_starter": true,
118
+ "counter_arguments": [
119
+ "We need a quick fix now and can investigate later — but 'later' rarely comes and the workaround becomes permanent",
120
+ "The root cause is in a system we don't control — but understanding the root cause still helps write a better workaround with clear documentation"
121
+ ],
122
+ "keywords": ["debugging", "root-cause", "workaround", "tech-debt", "symptoms"],
123
+ "domain": ["debugging", "engineering"],
124
+ "project": "default",
125
+ "source_date": "2026-01-01",
126
+ "created_at": "2026-01-01T00:00:00Z"
55
127
  }
56
128
  ]