open-agreements 0.7.6 → 0.7.7

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.
Files changed (250) hide show
  1. package/README.md +1 -1
  2. package/content/templates/openagreements-due-diligence-request-list/template.docx +0 -0
  3. package/content/templates/openagreements-due-diligence-request-list/template.md +1 -1
  4. package/dist/core/fill-pipeline.d.ts.map +1 -1
  5. package/dist/core/fill-pipeline.js +0 -8
  6. package/dist/core/fill-pipeline.js.map +1 -1
  7. package/dist/core/unified-pipeline.d.ts.map +1 -1
  8. package/dist/core/unified-pipeline.js +4 -6
  9. package/dist/core/unified-pipeline.js.map +1 -1
  10. package/gemini-extension.json +1 -1
  11. package/node_modules/@xmldom/xmldom/CHANGELOG.md +939 -0
  12. package/node_modules/@xmldom/xmldom/LICENSE +8 -0
  13. package/node_modules/@xmldom/xmldom/SECURITY.md +50 -0
  14. package/node_modules/@xmldom/xmldom/index.d.ts +1664 -0
  15. package/node_modules/@xmldom/xmldom/lib/.eslintrc.yml +3 -0
  16. package/node_modules/@xmldom/xmldom/lib/conventions.js +429 -0
  17. package/node_modules/@xmldom/xmldom/lib/dom-parser.js +586 -0
  18. package/node_modules/@xmldom/xmldom/lib/dom.js +3192 -0
  19. package/node_modules/@xmldom/xmldom/lib/entities.js +2171 -0
  20. package/node_modules/@xmldom/xmldom/lib/errors.js +202 -0
  21. package/node_modules/@xmldom/xmldom/lib/grammar.js +533 -0
  22. package/node_modules/@xmldom/xmldom/lib/index.js +41 -0
  23. package/node_modules/@xmldom/xmldom/lib/sax.js +929 -0
  24. package/node_modules/@xmldom/xmldom/package.json +74 -0
  25. package/node_modules/@xmldom/xmldom/readme.md +364 -0
  26. package/node_modules/core-util-is/LICENSE +19 -0
  27. package/node_modules/core-util-is/README.md +3 -0
  28. package/node_modules/core-util-is/lib/util.js +107 -0
  29. package/node_modules/core-util-is/package.json +38 -0
  30. package/node_modules/immediate/LICENSE.txt +20 -0
  31. package/node_modules/immediate/README.md +93 -0
  32. package/node_modules/immediate/dist/immediate.js +75 -0
  33. package/node_modules/immediate/dist/immediate.min.js +1 -0
  34. package/node_modules/immediate/lib/browser.js +69 -0
  35. package/node_modules/immediate/lib/index.js +73 -0
  36. package/node_modules/immediate/package.json +42 -0
  37. package/node_modules/inherits/LICENSE +16 -0
  38. package/node_modules/inherits/README.md +42 -0
  39. package/node_modules/inherits/inherits.js +9 -0
  40. package/node_modules/inherits/inherits_browser.js +27 -0
  41. package/node_modules/inherits/package.json +29 -0
  42. package/node_modules/isarray/.npmignore +1 -0
  43. package/node_modules/isarray/.travis.yml +4 -0
  44. package/node_modules/isarray/Makefile +6 -0
  45. package/node_modules/isarray/README.md +60 -0
  46. package/node_modules/isarray/component.json +19 -0
  47. package/node_modules/isarray/index.js +5 -0
  48. package/node_modules/isarray/package.json +45 -0
  49. package/node_modules/isarray/test.js +20 -0
  50. package/node_modules/jszip/.codeclimate.yml +16 -0
  51. package/node_modules/jszip/.editorconfig +8 -0
  52. package/node_modules/jszip/.eslintrc.js +43 -0
  53. package/node_modules/jszip/.github/workflows/pr.yaml +58 -0
  54. package/node_modules/jszip/.jekyll-metadata +0 -0
  55. package/node_modules/jszip/.travis.yml +17 -0
  56. package/node_modules/jszip/CHANGES.md +204 -0
  57. package/node_modules/jszip/LICENSE.markdown +651 -0
  58. package/node_modules/jszip/README.markdown +33 -0
  59. package/node_modules/jszip/deps.js +37 -0
  60. package/node_modules/jszip/dist/jszip.js +11577 -0
  61. package/node_modules/jszip/dist/jszip.min.js +13 -0
  62. package/node_modules/jszip/graph.svg +601 -0
  63. package/node_modules/jszip/index.d.ts +330 -0
  64. package/node_modules/jszip/lib/base64.js +106 -0
  65. package/node_modules/jszip/lib/compressedObject.js +74 -0
  66. package/node_modules/jszip/lib/compressions.js +14 -0
  67. package/node_modules/jszip/lib/crc32.js +77 -0
  68. package/node_modules/jszip/lib/defaults.js +11 -0
  69. package/node_modules/jszip/lib/external.js +18 -0
  70. package/node_modules/jszip/lib/flate.js +85 -0
  71. package/node_modules/jszip/lib/generate/ZipFileWorker.js +539 -0
  72. package/node_modules/jszip/lib/generate/index.js +57 -0
  73. package/node_modules/jszip/lib/index.js +55 -0
  74. package/node_modules/jszip/lib/license_header.js +11 -0
  75. package/node_modules/jszip/lib/load.js +88 -0
  76. package/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
  77. package/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
  78. package/node_modules/jszip/lib/nodejsUtils.js +57 -0
  79. package/node_modules/jszip/lib/object.js +384 -0
  80. package/node_modules/jszip/lib/readable-stream-browser.js +10 -0
  81. package/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
  82. package/node_modules/jszip/lib/reader/DataReader.js +116 -0
  83. package/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
  84. package/node_modules/jszip/lib/reader/StringReader.js +38 -0
  85. package/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
  86. package/node_modules/jszip/lib/reader/readerFor.js +28 -0
  87. package/node_modules/jszip/lib/signature.js +7 -0
  88. package/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
  89. package/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
  90. package/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
  91. package/node_modules/jszip/lib/stream/DataWorker.js +116 -0
  92. package/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
  93. package/node_modules/jszip/lib/stream/StreamHelper.js +214 -0
  94. package/node_modules/jszip/lib/support.js +38 -0
  95. package/node_modules/jszip/lib/utf8.js +275 -0
  96. package/node_modules/jszip/lib/utils.js +501 -0
  97. package/node_modules/jszip/lib/zipEntries.js +261 -0
  98. package/node_modules/jszip/lib/zipEntry.js +293 -0
  99. package/node_modules/jszip/lib/zipObject.js +133 -0
  100. package/node_modules/jszip/package.json +67 -0
  101. package/node_modules/jszip/sponsors.md +21 -0
  102. package/node_modules/jszip/tsconfig.json +101 -0
  103. package/node_modules/jszip/vendor/FileSaver.js +247 -0
  104. package/node_modules/lie/README.md +62 -0
  105. package/node_modules/lie/dist/lie.js +350 -0
  106. package/node_modules/lie/dist/lie.min.js +1 -0
  107. package/node_modules/lie/dist/lie.polyfill.js +358 -0
  108. package/node_modules/lie/dist/lie.polyfill.min.js +1 -0
  109. package/node_modules/lie/lib/browser.js +273 -0
  110. package/node_modules/lie/lib/index.js +298 -0
  111. package/node_modules/lie/license.md +7 -0
  112. package/node_modules/lie/lie.d.ts +244 -0
  113. package/node_modules/lie/package.json +69 -0
  114. package/node_modules/lie/polyfill.js +4 -0
  115. package/node_modules/pako/LICENSE +21 -0
  116. package/node_modules/pako/README.md +191 -0
  117. package/node_modules/pako/dist/pako.js +6818 -0
  118. package/node_modules/pako/dist/pako.min.js +1 -0
  119. package/node_modules/pako/dist/pako_deflate.js +3997 -0
  120. package/node_modules/pako/dist/pako_deflate.min.js +1 -0
  121. package/node_modules/pako/dist/pako_inflate.js +3300 -0
  122. package/node_modules/pako/dist/pako_inflate.min.js +1 -0
  123. package/node_modules/pako/index.js +14 -0
  124. package/node_modules/pako/lib/deflate.js +400 -0
  125. package/node_modules/pako/lib/inflate.js +423 -0
  126. package/node_modules/pako/lib/utils/common.js +105 -0
  127. package/node_modules/pako/lib/utils/strings.js +187 -0
  128. package/node_modules/pako/lib/zlib/README +59 -0
  129. package/node_modules/pako/lib/zlib/adler32.js +51 -0
  130. package/node_modules/pako/lib/zlib/constants.js +68 -0
  131. package/node_modules/pako/lib/zlib/crc32.js +59 -0
  132. package/node_modules/pako/lib/zlib/deflate.js +1874 -0
  133. package/node_modules/pako/lib/zlib/gzheader.js +58 -0
  134. package/node_modules/pako/lib/zlib/inffast.js +345 -0
  135. package/node_modules/pako/lib/zlib/inflate.js +1556 -0
  136. package/node_modules/pako/lib/zlib/inftrees.js +343 -0
  137. package/node_modules/pako/lib/zlib/messages.js +32 -0
  138. package/node_modules/pako/lib/zlib/trees.js +1222 -0
  139. package/node_modules/pako/lib/zlib/zstream.js +47 -0
  140. package/node_modules/pako/package.json +44 -0
  141. package/node_modules/process-nextick-args/index.js +45 -0
  142. package/node_modules/process-nextick-args/license.md +19 -0
  143. package/node_modules/process-nextick-args/package.json +25 -0
  144. package/node_modules/process-nextick-args/readme.md +18 -0
  145. package/node_modules/readable-stream/.travis.yml +34 -0
  146. package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  147. package/node_modules/readable-stream/GOVERNANCE.md +136 -0
  148. package/node_modules/readable-stream/LICENSE +47 -0
  149. package/node_modules/readable-stream/README.md +58 -0
  150. package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  151. package/node_modules/readable-stream/duplex-browser.js +1 -0
  152. package/node_modules/readable-stream/duplex.js +1 -0
  153. package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
  154. package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
  155. package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
  156. package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
  157. package/node_modules/readable-stream/lib/_stream_writable.js +685 -0
  158. package/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
  159. package/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
  160. package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  161. package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  162. package/node_modules/readable-stream/package.json +52 -0
  163. package/node_modules/readable-stream/passthrough.js +1 -0
  164. package/node_modules/readable-stream/readable-browser.js +7 -0
  165. package/node_modules/readable-stream/readable.js +19 -0
  166. package/node_modules/readable-stream/transform.js +1 -0
  167. package/node_modules/readable-stream/writable-browser.js +1 -0
  168. package/node_modules/readable-stream/writable.js +8 -0
  169. package/node_modules/safe-buffer/LICENSE +21 -0
  170. package/node_modules/safe-buffer/README.md +584 -0
  171. package/node_modules/safe-buffer/index.d.ts +187 -0
  172. package/node_modules/safe-buffer/index.js +62 -0
  173. package/node_modules/safe-buffer/package.json +37 -0
  174. package/node_modules/setimmediate/LICENSE.txt +20 -0
  175. package/node_modules/setimmediate/package.json +30 -0
  176. package/node_modules/setimmediate/setImmediate.js +186 -0
  177. package/node_modules/string_decoder/.travis.yml +50 -0
  178. package/node_modules/string_decoder/LICENSE +48 -0
  179. package/node_modules/string_decoder/README.md +47 -0
  180. package/node_modules/string_decoder/lib/string_decoder.js +296 -0
  181. package/node_modules/string_decoder/package.json +31 -0
  182. package/node_modules/util-deprecate/History.md +16 -0
  183. package/node_modules/util-deprecate/LICENSE +24 -0
  184. package/node_modules/util-deprecate/README.md +53 -0
  185. package/node_modules/util-deprecate/browser.js +67 -0
  186. package/node_modules/util-deprecate/node.js +6 -0
  187. package/node_modules/util-deprecate/package.json +27 -0
  188. package/package.json +1 -1
  189. package/skills/client-email/SKILL.md +8 -6
  190. package/skills/employment-contract/SKILL.md +23 -6
  191. package/skills/non-compete-contract-explainer/content/alabama.md +251 -0
  192. package/skills/non-compete-contract-explainer/content/alaska.md +160 -0
  193. package/skills/non-compete-contract-explainer/content/american-samoa.md +187 -0
  194. package/skills/non-compete-contract-explainer/content/arizona.md +293 -0
  195. package/skills/non-compete-contract-explainer/content/arkansas.md +235 -0
  196. package/skills/non-compete-contract-explainer/content/california.md +270 -0
  197. package/skills/non-compete-contract-explainer/content/cnmi.md +168 -0
  198. package/skills/non-compete-contract-explainer/content/colorado.md +277 -0
  199. package/skills/non-compete-contract-explainer/content/connecticut.md +220 -0
  200. package/skills/non-compete-contract-explainer/content/delaware.md +222 -0
  201. package/skills/non-compete-contract-explainer/content/district-of-columbia.md +263 -0
  202. package/skills/non-compete-contract-explainer/content/florida.md +267 -0
  203. package/skills/non-compete-contract-explainer/content/georgia.md +323 -0
  204. package/skills/non-compete-contract-explainer/content/guam.md +180 -0
  205. package/skills/non-compete-contract-explainer/content/hawaii.md +236 -0
  206. package/skills/non-compete-contract-explainer/content/idaho.md +258 -0
  207. package/skills/non-compete-contract-explainer/content/illinois.md +266 -0
  208. package/skills/non-compete-contract-explainer/content/india.md +269 -0
  209. package/skills/non-compete-contract-explainer/content/indiana.md +253 -0
  210. package/skills/non-compete-contract-explainer/content/iowa.md +232 -0
  211. package/skills/non-compete-contract-explainer/content/kansas.md +227 -0
  212. package/skills/non-compete-contract-explainer/content/kentucky.md +201 -0
  213. package/skills/non-compete-contract-explainer/content/louisiana.md +272 -0
  214. package/skills/non-compete-contract-explainer/content/maine.md +178 -0
  215. package/skills/non-compete-contract-explainer/content/maryland.md +244 -0
  216. package/skills/non-compete-contract-explainer/content/massachusetts.md +272 -0
  217. package/skills/non-compete-contract-explainer/content/michigan.md +222 -0
  218. package/skills/non-compete-contract-explainer/content/minnesota.md +171 -0
  219. package/skills/non-compete-contract-explainer/content/mississippi.md +237 -0
  220. package/skills/non-compete-contract-explainer/content/missouri.md +219 -0
  221. package/skills/non-compete-contract-explainer/content/montana.md +202 -0
  222. package/skills/non-compete-contract-explainer/content/nebraska.md +206 -0
  223. package/skills/non-compete-contract-explainer/content/nevada.md +278 -0
  224. package/skills/non-compete-contract-explainer/content/new-hampshire.md +233 -0
  225. package/skills/non-compete-contract-explainer/content/new-jersey.md +277 -0
  226. package/skills/non-compete-contract-explainer/content/new-mexico.md +244 -0
  227. package/skills/non-compete-contract-explainer/content/new-york.md +226 -0
  228. package/skills/non-compete-contract-explainer/content/north-carolina.md +346 -0
  229. package/skills/non-compete-contract-explainer/content/north-dakota.md +187 -0
  230. package/skills/non-compete-contract-explainer/content/ohio.md +207 -0
  231. package/skills/non-compete-contract-explainer/content/oklahoma.md +196 -0
  232. package/skills/non-compete-contract-explainer/content/oregon.md +359 -0
  233. package/skills/non-compete-contract-explainer/content/pennsylvania.md +254 -0
  234. package/skills/non-compete-contract-explainer/content/philippines.md +211 -0
  235. package/skills/non-compete-contract-explainer/content/puerto-rico.md +163 -0
  236. package/skills/non-compete-contract-explainer/content/rhode-island.md +171 -0
  237. package/skills/non-compete-contract-explainer/content/singapore.md +229 -0
  238. package/skills/non-compete-contract-explainer/content/south-carolina.md +226 -0
  239. package/skills/non-compete-contract-explainer/content/south-dakota.md +222 -0
  240. package/skills/non-compete-contract-explainer/content/tennessee.md +251 -0
  241. package/skills/non-compete-contract-explainer/content/texas.md +297 -0
  242. package/skills/non-compete-contract-explainer/content/us-virgin-islands.md +193 -0
  243. package/skills/non-compete-contract-explainer/content/utah.md +250 -0
  244. package/skills/non-compete-contract-explainer/content/vermont.md +193 -0
  245. package/skills/non-compete-contract-explainer/content/virginia.md +213 -0
  246. package/skills/non-compete-contract-explainer/content/washington.md +296 -0
  247. package/skills/non-compete-contract-explainer/content/west-virginia.md +187 -0
  248. package/skills/non-compete-contract-explainer/content/wisconsin.md +293 -0
  249. package/skills/non-compete-contract-explainer/content/wyoming.md +55 -45
  250. package/skills/non-compete-contract-explainer/manifest.json +523 -1
@@ -0,0 +1,244 @@
1
+ ---
2
+ jurisdiction: "Maryland"
3
+ slug: maryland
4
+ countryCode: US
5
+ snapshotAsOf: "2026-06-08"
6
+ lastReviewed: "2026-06-03"
7
+ canonicalUrl: https://openagreements.org/legal/non-compete/maryland
8
+ license: CC BY 4.0
9
+ stale: false
10
+ ---
11
+
12
+ > [!IMPORTANT]
13
+ > **Informational only — not legal advice.** This is a snapshot of an OpenAgreements practice note,
14
+ > provided for general information. It is not legal advice, does not create an attorney-client
15
+ > relationship, and is not a substitute for a licensed attorney in the relevant jurisdiction.
16
+ > Laws change; verify against the canonical version before relying on it.
17
+ >
18
+ > **Canonical:** https://openagreements.org/legal/non-compete/maryland · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
19
+
20
+ # Non-Competes in Maryland[^about]
21
+
22
+ Maryland enforces non-competes only when the restraint is reasonable under common law, and a statute voids them outright for low-wage, veterinary, and many health care workers.
23
+
24
+
25
+ ## At a glance
26
+
27
+ | Question | Maryland |
28
+ | --- | --- |
29
+ | **Are non-competes enforceable?** | Allowed if reasonable |
30
+ | **Bottom line** | Maryland enforces an ordinary employee non-compete only if it is reasonable under the Becker common-law test, but a statute voids covenants outright for low-wage, veterinary, and many health care workers. |
31
+ | **Main law or case** | Becker v. Bailey, 268 Md. 93 (1973); Md. Code, Lab. & Empl. § 3-716 |
32
+ | **Main exceptions** | Low-wage ban (≤150% min wage); veterinary ban; health-care ≤$350k ban; high-earner clinician cap (1 yr/10 mi); client/patient-list carve-out |
33
+ | **Can a court narrow it?** | Only strikes wording |
34
+ | **Applies to contractors?** | Unclear |
35
+ | **Restriction extended during a breach?** | Unsettled |
36
+ | **Maximum length set by law** | No fixed cap for ordinary employees; 1 year for covered health-care |
37
+
38
+ ## Are employee non-compete agreements enforceable in Maryland? {#employee-noncompetes}
39
+
40
+ **Short answer.** Yes, sometimes. Maryland is a reasonableness state, not a general ban state, so an ordinary employee non-compete is enforceable only if the employer has a legally protected interest, the restraint is no wider in scope and duration than reasonably necessary, it does not impose undue hardship on the employee, and it does not violate public policy [^seneca-four-part-test][^becker-general-rule].
41
+
42
+ The common-law test traces to *Becker v. Bailey* and is restated in modern federal decisions applying Maryland law. In practice the recurring questions are protectable interest, scope and duration, hardship on the employee, and the public interest [^seneca-four-part-test][^becker-general-rule].
43
+
44
+ Maryland layers a statute on top of that common-law test. Labor and Employment § 3-716 makes a covenant null and void for whole categories of workers — low-wage employees, veterinary professionals, and many health care workers — before ordinary reasonableness balancing ever applies [^statute-3716-null-void].
45
+
46
+ > [!NOTE]
47
+ > **Practice note.**
48
+ >
49
+ > Do not treat Maryland as a pure reasonableness state or as a total-ban state. Start with the worker's wage and occupation, apply § 3-716 if the worker is covered, and only then run the common-law reasonableness test on any covenant that survives [^statute-3716-null-void][^seneca-four-part-test].
50
+
51
+ ## Which Maryland workers are automatically protected from non-competes? {#statutory-voids}
52
+
53
+ **Short answer.** Section 3-716 voids non-competes outright for employees who earn 150% or less of the State minimum wage, for veterinary practitioners and technicians, and for many licensed health care workers who provide direct patient care and earn $350,000 or less [^statute-150-threshold][^statute-vet-ban][^statute-healthcare-void].
54
+
55
+ The wage line is keyed to the State minimum wage in § 3-413, which has been $15.00 per hour since January 1, 2024, so the covered ceiling is $22.50 per hour [^statute-minimum-wage]. A covenant against any employee at or below that 150% line is void [^statute-150-threshold].
56
+
57
+ The 2024 amendment in House Bill 1388 added two occupation-based bans. The veterinary ban applies retroactively to agreements entered into on or before its effective date [^hb1388-vet-retroactive]. The statute also voids covenants for licensed health-occupations employees who provide direct patient care and earn $350,000 or less, and that health care expansion applies only to agreements executed on or after July 1, 2025 [^statute-healthcare-void][^hb1388-health-prospective].
58
+
59
+ > [!NOTE]
60
+ > **Practice note.**
61
+ >
62
+ > Do not rely on a § 3-716 covenant for a low-wage, veterinary, or covered health care worker. For those workers the covenant is void by statute, so the employer's protection has to come from confidentiality terms and trade-secret law, not from the non-compete [^statute-150-threshold][^statute-healthcare-void].
63
+
64
+ ## How are non-competes capped for high-earning Maryland health care workers? {#healthcare-high-earners}
65
+
66
+ **Short answer.** For a direct-patient-care health care employee who earns more than $350,000, a covenant is not void but is capped: it cannot run longer than one year or reach more than ten miles from the primary place of employment [^statute-highearner-bucket][^statute-cap-duration][^statute-cap-geography].
67
+
68
+ The statute draws a line at $350,000 in total annual compensation. At or below that figure the covenant is void; above it, the high-earner bucket applies and the employer may use a covenant only within the statutory one-year and ten-mile limits [^statute-highearner-bucket][^statute-cap-duration][^statute-cap-geography].
69
+
70
+ Staying inside the cap is necessary, not sufficient. Section 3-716(b) sets outer limits; it does not guarantee enforceability, so a covenant within the cap still has to satisfy the ordinary common-law reasonableness test [^becker-highearner-reasonableness].
71
+
72
+ There is also a patient-notice duty. On a patient's request, the employer must tell the patient where the departing clinician will be practicing [^statute-patient-notice].
73
+
74
+ > [!CAUTION]
75
+ > **Drafting note.**
76
+ >
77
+ > Do not copy a longer term or wider radius into a Maryland high-earner clinician covenant. Anything beyond one year or ten miles from the primary practice site exceeds the statutory cap, and pair the covenant with the required patient-notice process [^statute-cap-duration][^statute-patient-notice].
78
+
79
+ ## What legitimate business interests can support a Maryland non-compete? {#protectable-interests}
80
+
81
+ **Short answer.** Maryland enforces a covenant only to protect genuine interests such as unique services, trade secrets, customer routes or lists, and customer goodwill — not to prevent ordinary competition [^becker-protectable-interests][^fowler-no-broader-than-necessary].
82
+
83
+ *Becker* describes the categories Maryland courts recognize: covenants are enforced against employees who provide unique services, or to prevent misuse of trade secrets, routes, or client lists, or solicitation of customers [^becker-protectable-interests]. Even when a legitimate interest exists, the restraint can be no broader than necessary to protect it [^fowler-no-broader-than-necessary].
84
+
85
+ Section 3-716 reinforces that focus. Section 3-716(a)'s void rule carves out provisions aimed at the taking or use of a client or patient list or other proprietary client information — signaling that protecting customer data is treated differently from blocking competition outright [^statute-client-list-carveout].
86
+
87
+ > [!CAUTION]
88
+ > **Drafting note.**
89
+ >
90
+ > Do not use a Maryland non-compete to block ordinary competition unconnected to a protectable interest. Tie the restraint to specific unique services, trade secrets, customer lists, or goodwill, and handle confidential-information protection through separate confidentiality and trade-secret terms [^becker-protectable-interests][^statute-client-list-carveout].
91
+
92
+ ## What duration and geographic scope are reasonable for a Maryland non-compete? {#duration-geography}
93
+
94
+ **Short answer.** Outside the § 3-716 categories there is no fixed cap for ordinary employees. Maryland courts judge time and territory case by case, asking whether the restraint is reasonable on the specific facts [^ruhl-no-yardstick][^seneca-overbroad].
95
+
96
+ *Ruhl* makes the fact-specific nature explicit: there is no arbitrary yardstick for what protection is reasonably necessary, no fixed measure of undue hardship, and no precise scale for the public interest [^ruhl-no-yardstick]. A covenant is overbroad when it exceeds what is reasonably necessary to protect the employer's interest [^seneca-overbroad].
97
+
98
+ Scope of the prohibited activity matters as much as miles and months. In *Medispec*, a federal court applying Maryland law held a covenant unenforceable on its face because it barred the former employee from working in essentially any capacity, far beyond his prior sales role [^medispec-facially-overbroad].
99
+
100
+ > [!CAUTION]
101
+ > **Drafting note.**
102
+ >
103
+ > Do not copy a duration or radius from another Maryland form without matching the worker's role and customer exposure. A broad activity ban that sweeps in work unrelated to the employee's actual job is the kind of facial overbreadth that sinks a Maryland covenant [^medispec-facially-overbroad][^seneca-overbroad].
104
+
105
+ ## Is continued at-will employment enough consideration for a Maryland non-compete? {#continued-employment-consideration}
106
+
107
+ **Short answer.** Yes. Maryland treats an employer's agreement to continue an at-will employee as sufficient consideration for a covenant signed after employment begins [^simko-mutuality][^simko-minority-view].
108
+
109
+ *Simko* is the anchor. The court reasoned that because the at-will relationship is mutual, the employer's promise not to terminate in exchange for the covenant is just as good as the employee's promise to keep working [^simko-mutuality]. The court treated the contrary view — that continued at-will employment is not consideration — as the distinct minority position [^simko-minority-view].
110
+
111
+ > [!NOTE]
112
+ > **Practice note.**
113
+ >
114
+ > Do not assume a bare recital cures a consideration problem. Maryland accepts continued employment as consideration, but the record is cleaner when the agreement and the surrounding documents show that signing was connected to the employee's continued employment [^simko-mutuality].
115
+
116
+ ## Will a Maryland court blue-pencil or rewrite an overbroad non-compete? {#court-narrowing}
117
+
118
+ **Short answer.** Maryland courts blue-pencil rather than rewrite. A court may strike an offending, severable portion of a covenant and enforce what remains, but if the unreasonable language is not severable the whole covenant fails — and employers cannot count on a court redrafting an indivisible overbroad term into a new, enforceable one [^holloway-blue-pencil][^holloway-mechanical-rule].
119
+
120
+ *Holloway* describes the typical Maryland response to an invalid portion of a covenant: blue-pencil the violative words and, if what is excised is severable, enforce the rest; otherwise the entire agreement is void [^holloway-blue-pencil]. The traditional, strict version of that rule is mechanical — a court strikes words and enforces what is left only if the remainder still stands as a complete, valid contract [^holloway-mechanical-rule]. Maryland's focus is therefore on severability: the *Holloway* litigation, affirmed in part by the Maryland Supreme Court, turned on whether the covenant could be severed (there, on a client-by-client basis) rather than on a court rewriting the bargain.
121
+
122
+ *Hebb v. Stump, Harvey & Cook* shows the partial-enforcement side in practice. Where an overbroad restriction is not so interwoven as to be logically inseparable from the rest of the contract, a Maryland court will sever it and enforce the lawful remainder when partial enforcement works no injury to the public and no injustice to the parties [^hebb-severable-partial-enforcement].
123
+
124
+ > [!CAUTION]
125
+ > **Drafting note.**
126
+ >
127
+ > Draft severable, tiered restrictions rather than relying on a savings clause that asks a court to invent a narrower Maryland radius or duration. Whether a court applies a strict blue pencil or a more granular severance, an indivisible overbroad term gives it nothing to enforce [^holloway-blue-pencil][^holloway-mechanical-rule].
128
+
129
+ ## How does the Maryland Uniform Trade Secrets Act protect employers when a covenant is void? {#trade-secrets-mutsa}
130
+
131
+ **Short answer.** The Maryland Uniform Trade Secrets Act gives employers a separate remedy that does not depend on a non-compete. It defines what counts as a trade secret, authorizes injunctions against misappropriation, and allows damages including exemplary damages for willful, malicious conduct [^mutsa-trade-secret-definition][^mutsa-injunction][^mutsa-exemplary-damages].
132
+
133
+ A trade secret is information that derives independent economic value from not being generally known and is the subject of reasonable secrecy efforts [^mutsa-trade-secret-definition]. Actual or threatened misappropriation may be enjoined, and for willful and malicious misappropriation a court may award exemplary damages of up to twice the damages awarded under the statute's compensatory-damages provision [^mutsa-injunction][^mutsa-exemplary-damages].
134
+
135
+ Trade-secret remedies can also outrun a contract's damages cap. In *Ingram v. Cantwell-Cleary*, the court declined to enforce a non-compete's liquidated-damages provisions because they did not bar a separate recovery for trade-secret misappropriation, and it upheld findings that customer lists and pricing data were misappropriated trade secrets [^ingram-liquidated-not-bar][^ingram-trade-secret-finding].
136
+
137
+ > [!NOTE]
138
+ > **Practice note.**
139
+ >
140
+ > Where § 3-716 voids the covenant, build the protection plan around confidentiality and the trade-secret statute instead. Identify the actual trade secrets, document reasonable secrecy measures, and preserve the statutory injunction and damages remedies that do not depend on an enforceable non-compete [^mutsa-trade-secret-definition][^mutsa-injunction].
141
+
142
+ ## Does a Maryland non-compete toll or extend during breach or litigation? {#tolling-extension}
143
+
144
+ **Short answer.** This is an open Maryland question. No staged Maryland statute or appellate decision squarely endorses automatic judicial tolling or enforcement of an extension-on-breach clause after the stated restricted period expires [^ruhl-reasonableness-backdrop][^becker-reasonableness-backdrop].
145
+
146
+ Maryland law on pausing the clock during a violation, or extending a covenant for the length of litigation, is unsettled. The safest reading is that any such extension still has to satisfy the same reasonableness test that governs the covenant itself [^ruhl-reasonableness-backdrop]. If an extension-on-breach clause turns a fixed one-year restraint into an open-ended one, a court could find it unreasonable on the facts [^becker-reasonableness-backdrop].
147
+
148
+ > [!NOTE]
149
+ > **Practice note.**
150
+ >
151
+ > Open question: Maryland authority does not settle whether an extension-on-breach or tolling clause is enforceable after the original period expires. Draft any tolling clause as a separate, reasonable restraint tied to the duration of the breach, and do not assume a Maryland court will automatically extend an expired covenant [^ruhl-reasonableness-backdrop][^becker-reasonableness-backdrop].
152
+
153
+ ## Did the FTC's federal non-compete rule change Maryland non-compete law? {#federal-ftc-overlay}
154
+
155
+ **Short answer.** No. A federal court set aside the FTC's 2024 nationwide Non-Compete Rule, so Maryland non-competes remain governed by Maryland's statute, Maryland common law, and the state's trade-secret act [^ryan-rule-set-aside].
156
+
157
+ In *Ryan LLC v. FTC*, the court held the rule unlawful and set it aside, stating that the rule would not be enforced or take effect on its September 4, 2024 effective date [^ryan-rule-set-aside]. That removes the FTC rule as a nationwide overlay but does not make every Maryland covenant enforceable — § 3-716 and Maryland common law still control.
158
+
159
+ "The Rule shall not be enforced or otherwise take effect on its effective date of September 4, 2024, or thereafter."[^ryan-rule-set-aside]
160
+
161
+ ## What recent Maryland non-compete changes should employers watch? {#recent-amendments}
162
+
163
+ **Short answer.** The most recent enacted change is House Bill 1016 (2026), now Chapter 301. It is enacted but not yet effective: beginning October 1, 2026, it extends § 3-716's void rule to a new, narrow category — employees of a licensed architect whose employer, after employing more than 30 workers based mainly in Maryland, relocates the majority of that workforce out of state or no longer has its principal place of business in Maryland [^hb1016-architect-out-of-state].
164
+
165
+ This is the fourth wave of § 3-716 amendments, after the 2019 low-wage ban, the 2023 amendment altering the application of the prohibition (Senate Bill 591, Chapter 266, effective October 1, 2023 — the change that keyed the low-wage threshold to the State minimum wage), and the 2024 veterinary and health care expansion [^sb591-2023-threshold]. Mechanically, the new law inserts the architect category as a new § 3-716(a)(1)(i)3 and renumbers the existing veterinary category to (a)(1)(i)4, effective October 1, 2026 — so the subsection numbers used throughout this note reflect the statute as it reads before that date. The provision is narrow and prospective: it applies only to agreements executed on or after the effective date [^hb1016-architect-out-of-state].
166
+
167
+ A broader 2025 effort to clarify that § 3-716 reaches only post-separation restrictions died in committee, so the active-employment reach of the statute's conflict-of-interest language remains unsettled.
168
+
169
+ > [!NOTE]
170
+ > **Practice note.**
171
+ >
172
+ > Treat the § 3-716 categories as a moving target. Re-check the worker's wage band and occupation against the current statute each session, and remember the architect provision is enacted but does not begin until agreements executed on or after October 1, 2026 [^hb1016-architect-out-of-state].
173
+
174
+ [^about]: By Steven Obiajulu, J.D. Published by [openagreements.org](https://openagreements.org) · Maintained by [UseJunior](https://usejunior.com). Last reviewed 2026-06-03. License: CC BY 4.0. Steven Obiajulu, J.D. is admitted in New York, not Maryland. This article synthesizes Maryland primary law and is not legal advice from a Maryland-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
175
+
176
+ [^seneca-four-part-test]: **Seneca One Finance, Inc. v. Bloshuk** — "In Maryland, a restrictive employment covenant will only be enforced if it meets four requirements: ‘(1) the employer must have a legally protected interest, (2) the restrictive covenant must be no wider in scope and duration than is reasonably necessary to protect the employer’s interest, (3) the covenant cannot impose an undue hardship on the employee, and (4) the covenant cannot violate public policy.’" *Seneca One Fin., Inc. v. Bloshuk, 214 F. Supp. 3d 457 (D. Md. 2016).* <https://www.courtlistener.com/opinion/7322313/seneca-one-finance-inc-v-bloshuk/#:~:text=In%20Maryland%2C%20a%20restrictive%20employment,covenant%20cannot%20violate%20public%20policy.%E2%80%9D>
177
+
178
+ [^becker-general-rule]: **Becker v. Bailey** — "The general rule in Maryland is that if a restrictive covenant in an employment contract is supported by adequate consideration and is ancillary to the employment contract, an employee’s agreement not to compete with his employer upon leaving the employment will be upheld ‘if the restraint is confined within limits which are no wider as to area and duration than are reasonably necessary for the protection of the business of the employer and do not impose undue hardship on the employee or disregard the interests of the public.’" *Becker v. Bailey, 268 Md. 93 (1973).* <https://www.courtlistener.com/opinion/2322561/becker-v-bailey/#:~:text=The%20general%20rule%20in%20Maryland,the%20interests%20of%20the%20public.%E2%80%9D>
179
+
180
+ [^statute-3716-null-void]: **Md. Code, Lab. & Empl. § 3-716** — "A noncompete or conflict of interest provision in an employment contract or a similar document or agreement that restricts the ability of an employee to enter into employment with a new employer or to become self–employed in the same or similar business or trade shall be null and void as being against the public policy of the State." *Md. Code, Lab. & Empl. § 3-716(a)(3).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
181
+
182
+ [^statute-150-threshold]: **Md. Code, Lab. & Empl. § 3-716** — "an employee who earns equal to or less than 150% of the State minimum wage rate established under § 3–413 of this title" *Md. Code, Lab. & Empl. § 3-716(a)(1)(i)1.* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
183
+
184
+ [^statute-vet-ban]: **Md. Code, Lab. & Empl. § 3-716** — "an employee licensed as a veterinary practitioner or veterinary technician under Title 2, Subtitle 3 of the Agriculture Article" *Md. Code, Lab. & Empl. § 3-716(a)(1)(i)3.* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
185
+
186
+ [^statute-healthcare-void]: **Md. Code, Lab. & Empl. § 3-716** — "employment in a position for which the employee: A. is required to be licensed under the Health Occupations Article; B. is employed in a position that provides direct patient care; and C. earns equal to or less than $350,000 in total annual compensation" *Md. Code, Lab. & Empl. § 3-716(a)(1)(i)2.* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
187
+
188
+ [^statute-minimum-wage]: **Md. Code, Lab. & Empl. § 3-413** — "the State minimum wage rate is: (i) for the 12–month period beginning January 1, 2023, $13.25 per hour; and (ii) beginning January 1, 2024, $15.00 per hour." *Md. Code, Lab. & Empl. § 3-413(c)(1).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-413>
189
+
190
+ [^hb1388-vet-retroactive]: **2024 Md. Laws ch. 378 (H.B. 1388)** — "That this Act shall be construed to apply retroactively and shall be applied to and interpreted to affect an employment contract or a similar contract or agreement entered into on or before the effective date of this Act." *2024 Md. Laws ch. 378, § 2 (H.B. 1388).* <https://mgaleg.maryland.gov/2024rs/Chapters_noln/CH_378_hb1388e.pdf>
191
+
192
+ [^hb1388-health-prospective]: **2024 Md. Laws ch. 378 (H.B. 1388)** — "That § 3–716(a)(1)(i)2 and (b) of the Labor and Employment Article, as enacted by Section 1 of this Act, shall be construed to apply only to employment contracts or similar documents or agreements for employment executed on or after July 1, 2025." *2024 Md. Laws ch. 378, § 3 (H.B. 1388).* <https://mgaleg.maryland.gov/2024rs/Chapters_noln/CH_378_hb1388e.pdf>
193
+
194
+ [^statute-highearner-bucket]: **Md. Code, Lab. & Empl. § 3-716** — "This subsection applies only to an employment contract or similar document or agreement concerning employment in a position for which the employee: (i) is required to be licensed under the Health Occupations Article; (ii) is employed in a position that provides direct patient care; and (iii) earns more than $350,000 in total annual compensation." *Md. Code, Lab. & Empl. § 3-716(b)(1).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
195
+
196
+ [^statute-cap-duration]: **Md. Code, Lab. & Empl. § 3-716** — "The period for which a noncompete or conflict of interest provision in an employment contract or similar document or agreement is in effect may not exceed 1 year from the last day of employment." *Md. Code, Lab. & Empl. § 3-716(b)(2)(i).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
197
+
198
+ [^statute-cap-geography]: **Md. Code, Lab. & Empl. § 3-716** — "The geographical restriction in a noncompete or conflict of interest provision in an employment contract or similar document or agreement may not exceed 10 miles from the primary place of employment." *Md. Code, Lab. & Empl. § 3-716(b)(2)(ii).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
199
+
200
+ [^becker-highearner-reasonableness]: **Becker v. Bailey** — "The general rule in Maryland is that if a restrictive covenant in an employment contract is supported by adequate consideration and is ancillary to the employment contract, an employee’s agreement not to compete with his employer upon leaving the employment will be upheld ‘if the restraint is confined within limits which are no wider as to area and duration than are reasonably necessary for the protection of the business of the employer and do not impose undue hardship on the employee or disregard the interests of the public.’" *Becker v. Bailey, 268 Md. 93 (1973).* <https://www.courtlistener.com/opinion/2322561/becker-v-bailey/#:~:text=The%20general%20rule%20in%20Maryland,the%20interests%20of%20the%20public.%E2%80%9D>
201
+
202
+ [^statute-patient-notice]: **Md. Code, Lab. & Empl. § 3-716** — "On request of a patient, an employer of an employee described in paragraph (1) of this subsection shall provide notice to a patient of the new location where a former employee will be practicing." *Md. Code, Lab. & Empl. § 3-716(b)(3).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
203
+
204
+ [^becker-protectable-interests]: **Becker v. Bailey** — "These decisions demonstrate that Maryland follows the general rule that restrictive covenants may be applied and enforced only against those employees who provide unique services, or to prevent the future misuse of trade secrets, routes or lists of clients, or solicitation of customers." *Becker v. Bailey, 268 Md. 93 (1973).* <https://www.courtlistener.com/opinion/2322561/becker-v-bailey/#:~:text=These%20decisions%20demonstrate%20that%20Maryland,clients%2C%20or%20solicitation%20of%20customers.>
205
+
206
+ [^fowler-no-broader-than-necessary]: **Fowler v. Printers II, Inc.** — "Of course, even a restrictive covenant that serves an employer’s ‘legitimate interest’ can be no broader, or more restrictive, than necessary to effectuate that interest." *Fowler v. Printers II, Inc., 89 Md. App. 448 (1991).* <https://www.courtlistener.com/opinion/1930228/fowler-v-printers-ii-inc/#:~:text=Of%20course%2C%20even%20a%20restrictive,necessary%20to%20effectuate%20that%20interest.>
207
+
208
+ [^statute-client-list-carveout]: **Md. Code, Lab. & Empl. § 3-716** — "This subsection does not apply to an employment contract or a similar document or agreement with respect to the taking or use of a client or patient list or other proprietary client–related or patient–related information." *Md. Code, Lab. & Empl. § 3-716(a)(2).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gle&section=3-716>
209
+
210
+ [^ruhl-no-yardstick]: **Ruhl v. F. A. Bartlett Tree Expert Co.** — "There is no arbitrary yardstick as to what protection of the business of the employer is reasonably necessary, no categorical measurement of what constitutes undue hardship on the employee, no precise scales to weigh the interest of the public." *Ruhl v. F. A. Bartlett Tree Expert Co., 245 Md. 118 (1967).* <https://www.courtlistener.com/opinion/2292892/ruhl-v-f-a-bartlett-tree-expert-co/#:~:text=There%20is%20no%20arbitrary%20yardstick,the%20interest%20of%20the%20public.>
211
+
212
+ [^seneca-overbroad]: **Seneca One Finance, Inc. v. Bloshuk** — "A restrictive covenant is overbroad if it exceeds the limits of what is reasonably necessary to protect the employer’s legally protected interest." *Seneca One Fin., Inc. v. Bloshuk, 214 F. Supp. 3d 457 (D. Md. 2016).* <https://www.courtlistener.com/opinion/7322313/seneca-one-finance-inc-v-bloshuk/#:~:text=A%20restrictive%20covenant%20is%20overbroad,the%20employer%E2%80%99s%20legally%20protected%20interest.>
213
+
214
+ [^medispec-facially-overbroad]: **Medispec, Ltd. v. Chouinard** — "Here, an examination of the particular facts is not necessary because the clause is overly broad on its face." *Medispec, Ltd. v. Chouinard, 133 F. Supp. 3d 771 (D. Md. 2015).* <https://www.courtlistener.com/opinion/7315898/medispec-ltd-v-chouinard/#:~:text=Here%2C%20an%20examination%20of%20the,overly%20broad%20on%20its%20face.>
215
+
216
+ [^simko-mutuality]: **Simko, Inc. v. Graymar Co.** — "Given the inherent mutuality, we see no basis for distinguishing the employee’s consent to continue from the flip side of the coin — the employer’s consent not to terminate." *Simko, Inc. v. Graymar Co., 55 Md. App. 561 (1983).* <https://www.courtlistener.com/opinion/1983736/simko-inc-v-graymar-co/#:~:text=Given%20the%20inherent%20mutuality%2C%20we,employer%E2%80%99s%20consent%20not%20to%20terminate.>
217
+
218
+ [^simko-minority-view]: **Simko, Inc. v. Graymar Co.** — "the viewpoint which holds that continuation of an at-will employee is not sufficient consideration for a covenant not to compete represents the distinct minority." *Simko, Inc. v. Graymar Co., 55 Md. App. 561 (1983).* <https://www.courtlistener.com/opinion/1983736/simko-inc-v-graymar-co/#:~:text=the%20viewpoint%20which%20holds%20that,compete%20represents%20the%20distinct%20minority.>
219
+
220
+ [^holloway-blue-pencil]: **Holloway v. Faw, Casson & Co.** — "The typical response in the reported appellate decisions in this State, in which the Courts have ruled a portion of an employee noncompetition agreement invalid, has been to ‘blue pencil’ (cross out) the violative portions of the agreement and, if the excised portions of the agreement are severable, to permit the agreement to stand minus the unenforceable wording; otherwise the entire agreement is void." *Holloway v. Faw, Casson & Co., 78 Md. App. 205 (1989), aff'd in part & rev'd in part, 319 Md. 324 (1990).* <https://www.courtlistener.com/opinion/1991703/holloway-v-faw-casson-co/#:~:text=The%20typical%20response%20in%20the,the%20entire%20agreement%20is%20void.>
221
+
222
+ [^holloway-mechanical-rule]: **Holloway v. Faw, Casson & Co.** — "By this rule, the divisibility of a promise in excessive restraint of trade is determined by purely mechanical means: if the promise is so worded that the excessive restraint can be eliminated by crossing out a few of the words with a ‘blue pencil,’ while at the same time the remaining words constitute a complete and valid contract, the contract as thus ‘blue penciled’ will be enforced." *Holloway v. Faw, Casson & Co., 78 Md. App. 205 (1989), aff'd in part & rev'd in part, 319 Md. 324 (1990).* <https://www.courtlistener.com/opinion/1991703/holloway-v-faw-casson-co/#:~:text=By%20this%20rule%2C%20the%20divisibility,%E2%80%9Cblue%20penciled%E2%80%9D%20will%20be%20enforced.>
223
+
224
+ [^hebb-severable-partial-enforcement]: **Hebb v. Stump, Harvey & Cook, Inc.** — "In the instant case the partial enforcement of the restrictions works no injury to the public and creates no injustice to the parties, thus the restrictions are severable and thus partially enforceable." *Hebb v. Stump, Harvey & Cook, Inc., 25 Md. App. 478 (1975).* <https://www.courtlistener.com/opinion/2195970/hebb-v-stump-harvey-cook-inc/#:~:text=In%20the%20instant%20case%20the,severable%20and%20thus%20partially%20enforceable.>
225
+
226
+ [^mutsa-trade-secret-definition]: **Md. Code, Com. Law § 11-1201** — "‘Trade secret’ means information, including a formula, pattern, compilation, program, device, method, technique, or process, that: (1) Derives independent economic value, actual or potential, from not being generally known to, and not being readily ascertainable by proper means by, other persons who can obtain economic value from its disclosure or use; and (2) Is the subject of efforts that are reasonable under the circumstances to maintain its secrecy." *Md. Code, Com. Law § 11-1201(e).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gcl&section=11-1201>
227
+
228
+ [^mutsa-injunction]: **Md. Code, Com. Law § 11-1202** — "Actual or threatened misappropriation may be enjoined." *Md. Code, Com. Law § 11-1202(a).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gcl&section=11-1202>
229
+
230
+ [^mutsa-exemplary-damages]: **Md. Code, Com. Law § 11-1203** — "If willful and malicious misappropriation exists, the court may award exemplary damages in an amount not exceeding twice any award made under subsection (a) of this section." *Md. Code, Com. Law § 11-1203(d).* <https://mgaleg.maryland.gov/mgawebsite/Laws/StatuteText?article=gcl&section=11-1203>
231
+
232
+ [^ingram-liquidated-not-bar]: **Ingram v. Cantwell-Cleary Co.** — "We hold that the court did not err in declining to enforce the liquidated damages provisions contained in Appellants’ Non-Compete Agreements because they did not bar Cantwell-Cleary from recovering damages under its separate claims for misappropriation" *Ingram v. Cantwell-Cleary Co., 259 Md. App. 102 (2023).* <https://www.courtlistener.com/opinion/9454756/ingram-v-cantwell-cleary-co/#:~:text=We%20hold%20that%20the%20court,its%20separate%20claims%20for%20misappropriation>
233
+
234
+ [^ingram-trade-secret-finding]: **Ingram v. Cantwell-Cleary Co.** — "We also hold that the court did not err in finding that Cantwell-Cleary’s confidential customer lists and pricing information constituted trade secrets and that Appellants had misappropriated that information." *Ingram v. Cantwell-Cleary Co., 259 Md. App. 102 (2023).* <https://www.courtlistener.com/opinion/9454756/ingram-v-cantwell-cleary-co/#:~:text=We%20also%20hold%20that%20the,Appellants%20had%20misappropriated%20that%20information.>
235
+
236
+ [^ruhl-reasonableness-backdrop]: **Ruhl v. F. A. Bartlett Tree Expert Co.** — "Covenants of this nature are in restraint of trade; the test is whether the particular restraint is reasonable on the specific facts." *Ruhl v. F. A. Bartlett Tree Expert Co., 245 Md. 118 (1967).* <https://www.courtlistener.com/opinion/2292892/ruhl-v-f-a-bartlett-tree-expert-co/#:~:text=Covenants%20of%20this%20nature%20are,reasonable%20on%20the%20specific%20facts.>
237
+
238
+ [^becker-reasonableness-backdrop]: **Becker v. Bailey** — "The general rule in Maryland is that if a restrictive covenant in an employment contract is supported by adequate consideration and is ancillary to the employment contract, an employee’s agreement not to compete with his employer upon leaving the employment will be upheld ‘if the restraint is confined within limits which are no wider as to area and duration than are reasonably necessary for the protection of the business of the employer and do not impose undue hardship on the employee or disregard the interests of the public.’" *Becker v. Bailey, 268 Md. 93 (1973).* <https://www.courtlistener.com/opinion/2322561/becker-v-bailey/#:~:text=The%20general%20rule%20in%20Maryland,the%20interests%20of%20the%20public.%E2%80%9D>
239
+
240
+ [^ryan-rule-set-aside]: **Ryan LLC v. Federal Trade Commission** — "The Rule shall not be enforced or otherwise take effect on its effective date of September 4, 2024, or thereafter." *Ryan LLC v. Fed. Trade Comm'n, 746 F. Supp. 3d 369 (N.D. Tex. 2024).* <https://www.courtlistener.com/opinion/10205745/ryan-llc-v-federal-trade-commission/#:~:text=The%20Rule%20shall%20not%20be%20enforced%20or%20otherwise%20take%20effect%20on%20its%20effective%20date%20of%20September%204%2C%202024%2C%20or%20thereafter.>
241
+
242
+ [^hb1016-architect-out-of-state]: **2026 Md. Laws ch. 301 (H.B. 1016)** — "That § 3–716(a)(1)(i)3 of the Labor and Employment Article, as enacted by Section 1 of this Act, shall be construed to apply only to employment contracts or similar documents or agreements for employment executed on or after the effective date of this Act." *2026 Md. Laws ch. 301, § 2 (H.B. 1016).* <https://mgaleg.maryland.gov/2026rs/Chapters_noln/CH_301_hb1016e.pdf>
243
+
244
+ [^sb591-2023-threshold]: **2023 Md. Laws ch. 266 (S.B. 591)** — "FOR the purpose of altering the application of the prohibition on including a noncompete or conflict of interest provision in an employment contract or similar document or agreement" *2023 Md. Laws ch. 266 (S.B. 591).* <https://mgaleg.maryland.gov/2023rs/Chapters_noln/CH_266_sb0591t.pdf>
@@ -0,0 +1,272 @@
1
+ ---
2
+ jurisdiction: "Massachusetts"
3
+ slug: massachusetts
4
+ countryCode: US
5
+ snapshotAsOf: "2026-06-08"
6
+ lastReviewed: "2026-06-03"
7
+ canonicalUrl: https://openagreements.org/legal/non-compete/massachusetts
8
+ license: CC BY 4.0
9
+ stale: false
10
+ ---
11
+
12
+ > [!IMPORTANT]
13
+ > **Informational only — not legal advice.** This is a snapshot of an OpenAgreements practice note,
14
+ > provided for general information. It is not legal advice, does not create an attorney-client
15
+ > relationship, and is not a substitute for a licensed attorney in the relevant jurisdiction.
16
+ > Laws change; verify against the canonical version before relying on it.
17
+ >
18
+ > **Canonical:** https://openagreements.org/legal/non-compete/massachusetts · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
19
+
20
+ # Non-Competes in Massachusetts[^about]
21
+
22
+ Massachusetts enforces employee non-competes only when they meet the Noncompetition Agreement Act — a garden-leave or other agreed consideration, a 12-month cap, and strict notice rules — and voids them entirely for physicians, nurses, psychologists, social workers, and most of the broadcasting industry.
23
+
24
+
25
+ ## At a glance
26
+
27
+ | Question | Massachusetts |
28
+ | --- | --- |
29
+ | **Are non-competes enforceable?** | Allowed if reasonable |
30
+ | **Bottom line** | Massachusetts enforces an employee non-compete only if it meets the 2018 Noncompetition Agreement Act — paid garden leave or agreed consideration, a 12-month cap, and strict notice — and voids them entirely for physicians, nurses, psychologists, social workers, and most broadcasters. |
31
+ | **Main law or case** | Mass. Gen. Laws ch. 149, § 24L |
32
+ | **Main exceptions** | Physician, nurse, psychologist, social-worker, broadcaster bans; excluded workers (FLSA-nonexempt, interns, laid-off/no-cause, age ≤18); sale-of-business & non-solicit/NDA carve-outs |
33
+ | **Can a court narrow it?** | Yes — rewrites to reasonable |
34
+ | **Applies to contractors?** | Yes |
35
+ | **Restriction extended during a breach?** | No automatic extension; statutory misconduct trigger (up to 2 yrs) or express tolling clause |
36
+ | **Maximum length set by law** | 12 months (up to 2 years on breach of fiduciary duty/taking property) |
37
+ | **Must the employer pay to enforce?** | Yes — required for any non-compete |
38
+
39
+ ## Are employee non-compete agreements enforceable in Massachusetts? {#enforceability}
40
+
41
+ **Short answer.** Sometimes, and only on strict terms. For agreements entered into on or after October 1, 2018, the Massachusetts Noncompetition Agreement Act makes an employee non-compete enforceable only if it satisfies a list of statutory requirements — including paid garden leave or other agreed consideration, a 12-month cap, and advance written notice [^mnaa-validity][^nuvasive-effective-date].
42
+
43
+ The governing statute is G.L. c. 149, § 24L. Subsection (b) provides that a noncompetition agreement is valid and enforceable only if it meets eight minimum requirements, which are described in the questions below [^mnaa-validity]. The act applies only to agreements entered into on or after October 1, 2018; the First Circuit, applying the statute, confirmed that limited reach [^nuvasive-effective-date].
44
+
45
+ Watch the statute's reach: for purposes of § 24L, an *employee* includes independent contractors, so the act's protections are not limited to W-2 workers [^mnaa-employee-scope].
46
+
47
+ Underlying the statute is a long common-law tradition that still frames how Massachusetts courts evaluate restraints. A covenant is enforceable only if it is necessary to protect a legitimate business interest, reasonably limited in time and space, and consonant with the public interest [^boulanger-reasonableness].
48
+
49
+ "To be valid and enforceable, a noncompetition agreement must meet the minimum requirements of paragraphs (i) through (viii)."[^mnaa-validity]
50
+
51
+ ## What notice and signing rules apply to a Massachusetts non-compete? {#formation-notice}
52
+
53
+ **Short answer.** Strict, and they differ for new hires versus current employees. A new hire's non-compete must be in writing, signed, expressly state the right to consult counsel, and be delivered by the earlier of a formal offer or 10 business days before the start date [^formation-newhire][^formation-newhire-timing].
54
+
55
+ For a non-compete signed after employment begins but not at separation, the statute adds a consideration requirement: the agreement must be supported by fair and reasonable consideration independent from continued employment, with at least 10 business days' notice before it takes effect [^formation-midemployment]. That abrogates the older Massachusetts rule that continued at-will employment alone could support a mid-employment covenant.
56
+
57
+ > [!CAUTION]
58
+ > **Drafting note.**
59
+ >
60
+ > Do not present a Massachusetts non-compete for immediate signature on the first day of work. For a new hire, deliver it by the earlier of the formal offer or 10 business days before the start date and tell the employee in the document that they may consult counsel; for a current employee, give 10 business days' notice and provide separate consideration beyond keeping the job [^formation-newhire-timing][^formation-midemployment].
61
+
62
+ ## Does Massachusetts require garden leave or extra pay for a non-compete? {#garden-leave}
63
+
64
+ **Short answer.** Yes — a non-compete must be bought. Section 24L requires that the agreement be supported by a garden leave clause or other mutually-agreed consideration that is specified in the agreement [^consideration-requirement].
65
+
66
+ A qualifying garden leave clause means paying the former employee, on a pro-rata basis during the restricted period, at least 50% of their highest annualized base salary over the two years before termination [^garden-leave-fifty-percent]. The statute's alternative — *other mutually-agreed upon consideration* — is left undefined, which is the single biggest open drafting question under the act: whether a small fixed payment can substitute for garden leave remains unsettled.
67
+
68
+ "The noncompetition agreement shall be supported by a garden leave clause or other mutually-agreed upon consideration between the employer and the employee, provided that such consideration is specified in the noncompetition agreement."[^consideration-requirement]
69
+
70
+ > [!CAUTION]
71
+ > **Drafting note.**
72
+ >
73
+ > Do not rely on a token payment as *other mutually-agreed upon consideration* without analysis. The only consideration the statute defines is a garden leave clause paying at least 50% of the employee's highest base salary across the restricted period; the enforceability of a smaller fixed sum is unsettled, so size the consideration conservatively and specify it in the agreement [^consideration-requirement][^garden-leave-fifty-percent].
74
+
75
+ ## How long can a Massachusetts non-compete last? {#duration}
76
+
77
+ **Short answer.** Twelve months, with one narrow exception. The restricted period may not exceed 12 months from the end of employment, unless the employee breached a fiduciary duty or unlawfully took employer property — in which case it may run up to 2 years [^duration-cap].
78
+
79
+ The 12-month default is a hard statutory ceiling, not a starting point for negotiation. The only way to a longer restraint is the misconduct trigger: a breach of fiduciary duty to the employer, or the unlawful taking of property, physically or electronically [^duration-cap].
80
+
81
+ "In no event may the stated restricted period exceed 12 months from the date of cessation of employment, unless the employee has breached his or her fiduciary duty to the employer or the employee has unlawfully taken, physically or electronically, property belonging to the employer, in which case the duration may not exceed 2 years from the date of cessation of employment."[^duration-cap]
82
+
83
+ ## What business interests can a Massachusetts non-compete protect? {#legitimate-interests}
84
+
85
+ **Short answer.** Only trade secrets, other confidential information, and goodwill — and no more than necessary. Section 24L permits a non-compete only where it is no broader than necessary to protect the employer's trade secrets, confidential information that is not a trade secret, or goodwill [^legitimate-interests-statute].
86
+
87
+ This codifies a long-standing common-law limit. Massachusetts courts had already held that legitimate business interests are confined to trade secrets, confidential information, and goodwill [^boulanger-interests]. Protection from ordinary competition has never qualified — a former employer is not entitled by contract to restrain ordinary competition [^allstainless-ordinary-competition].
88
+
89
+ "A former employer is not entitled by contract to restrain ordinary competition."[^allstainless-ordinary-competition]
90
+
91
+ ## Which Massachusetts workers cannot be bound by a non-compete? {#excluded-workers}
92
+
93
+ **Short answer.** Four categories, regardless of pay. Section 24L makes a non-compete unenforceable against employees who are nonexempt under the Fair Labor Standards Act, student interns, employees terminated without cause or laid off, and employees age 18 or younger [^excluded-workers].
94
+
95
+ The termination trigger is the one that surprises employers most: an employee who is laid off or fired without cause cannot be held to a non-compete at all. The statute does not define *without cause*, so the line between a for-cause termination and one that frees the employee is itself a litigation risk.
96
+
97
+ "A noncompetition agreement shall not be enforceable against the following types of workers: (i) an employee who is classified as nonexempt under the Fair Labor Standards Act, 29 U.S.C. 201-219; (ii) undergraduate or graduate students that partake in an internship or otherwise enter a short-term employment relationship with an employer, whether paid or unpaid, while enrolled in a full-time or part-time undergraduate or graduate educational institution; (iii) employees that have been terminated without cause or laid off; or (iv) employees age 18 or younger."[^excluded-workers]
98
+
99
+ > [!NOTE]
100
+ > **Practice note.**
101
+ >
102
+ > A non-compete is unenforceable against an employee who was laid off or terminated without cause, so an employer that ends the relationship on its own initiative generally cannot then enforce the covenant. Because *without cause* is undefined, treat any non-misconduct separation as likely freeing the employee, and do not count on a non-compete after a reduction in force [^excluded-workers].
103
+
104
+ ## What restrictive covenants fall outside the Massachusetts Noncompetition Agreement Act? {#covered-agreements}
105
+
106
+ **Short answer.** Most of the others. The act defines a noncompetition agreement to include forfeiture-for-competition agreements but to exclude employee and customer non-solicits, nondisclosure agreements, invention-assignment agreements, qualifying sale-of-business covenants, and separation agreements that give the employee seven business days to rescind [^noncompete-exclusions-solicit][^noncompete-exclusions-sale][^noncompete-exclusions-other].
107
+
108
+ The sale-of-business carve-out is itself limited: it reaches a covenant signed in connection with a sale or disposition only where the restricted party is a significant owner, member, or partner who will receive significant consideration or benefit from the deal [^noncompete-exclusions-sale].
109
+
110
+ That boundary matters because covenants outside the act escape its garden-leave, duration, and notice rules and are instead governed by ordinary common-law reasonableness. In 2025, the Supreme Judicial Court confirmed the boundary is read by the statute's plain terms: a forfeiture clause triggered by breach of a non-solicit is not a *forfeiture for competition agreement* and so falls outside the act entirely [^miele-forfeiture][^miele-plain-language].
111
+
112
+ "Under the plain language of the Massachusetts Noncompetition Agreement Act, (1) noncompetition agreements do not include nonsolicitation agreements, and (2) forfeiture for competition agreements are a subset of noncompetition agreements."[^miele-plain-language]
113
+
114
+ ## Which Massachusetts professions cannot be subject to a non-compete at all? {#profession-bans}
115
+
116
+ **Short answer.** Several, under their own statutes. Separate from the Noncompetition Agreement Act, Massachusetts voids non-competes restricting the practice of physicians, nurses, psychologists, and social workers, and voids most broadcasting-industry non-competes [^ban-physicians][^ban-nurses][^ban-broadcasting].
117
+
118
+ These bans predate the 2018 act and operate independently of it. A contract restricting a registered physician's right to practice medicine is void and unenforceable as to that restriction [^ban-physicians], and the same is true for registered and practical nurses [^ban-nurses], licensed psychologists [^ban-psychologists], and licensed social workers [^ban-social-workers]. In the broadcasting industry, a covenant restricting an employee's right to obtain later employment is void where the employer ended the employment, the parties ended it by mutual agreement, or the contract expired, and a violator is liable for the affected employee's reasonable attorneys' fees and costs [^ban-broadcasting].
119
+
120
+ "Any contract or agreement which creates or establishes the terms of a partnership, employment, or any other form of professional relationship with a physician registered to practice medicine pursuant to section two, which includes any restriction of the right of such physician to practice medicine in any geographic area for any period of time after the termination of such partnership, employment or professional relationship shall be void and unenforceable with respect to said restriction; provided, however, that nothing herein shall render void or unenforceable the remaining provisions of any such contract or agreement."[^ban-physicians]
121
+
122
+ ## Can another state's law govern a Massachusetts worker's non-compete? {#choice-of-law}
123
+
124
+ **Short answer.** Not if it is used to evade the act. Section 24L makes a choice-of-law provision unenforceable, where it would have the effect of avoiding the statute, for an employee who has been a Massachusetts resident or employed in Massachusetts for at least 30 days before leaving [^choice-of-law-statute].
125
+
126
+ The statutory bar is reinforced by Massachusetts common-law choice-of-law analysis, which can cut against a Massachusetts clause too. The Supreme Judicial Court refused to enforce a Massachusetts choice-of-law clause where applying Massachusetts law would violate the fundamental public policy of another state — California — that favors employee mobility [^oxford-choice-of-law]. Civil actions over a covered non-compete must be brought in the employee's county of residence or, by mutual agreement, in Suffolk County [^venue-statute].
127
+
128
+ ## Will a Massachusetts court reform an overbroad non-compete? {#reformation}
129
+
130
+ **Short answer.** It can, at its discretion. Section 24L expressly authorizes a court to reform or otherwise revise a noncompetition agreement to make it valid and enforceable to the extent necessary to protect the employer's legitimate business interests [^reformation-statute].
131
+
132
+ This is a discretionary power, not a guarantee. The statute lets a court rewrite an overbroad covenant, but an employer should not draft to the outer edge on the assumption that a judge will trim the agreement into shape rather than decline to enforce it.
133
+
134
+ "A court may, in its discretion, reform or otherwise revise a noncompetition agreement so as to render it valid and enforceable to the extent necessary to protect the applicable legitimate business interests."[^reformation-statute]
135
+
136
+ ## Does a promotion or change in role void an older Massachusetts non-compete? {#material-change}
137
+
138
+ **Short answer.** It can, under the material-change doctrine. Massachusetts courts have long held that far-reaching changes to the employment relationship can show the parties abandoned the old agreement and formed a new one — voiding a covenant signed under the earlier terms [^bartlett-abandonment][^bartlett-newcontract].
139
+
140
+ In *F.A. Bartlett Tree Expert Co. v. Barrington*, the Supreme Judicial Court treated successive material changes in pay and position as evidence that the original contract — and its non-compete — had been abandoned and replaced [^bartlett-newcontract]. The doctrine's force after the 2018 act is unsettled, so the conservative practice is to have the employee sign a fresh, statute-compliant covenant on each material promotion or change in terms rather than rely on an old one.
141
+
142
+ > [!NOTE]
143
+ > **Practice note.**
144
+ >
145
+ > Do not assume a non-compete signed years ago still binds an employee who has since been promoted or had a material change in pay or duties. Under the material-change doctrine a court may treat the original covenant as abandoned, so re-paper the non-compete — in compliance with the current statute — whenever the role materially changes [^bartlett-abandonment][^bartlett-newcontract].
146
+
147
+ ## Does a Massachusetts non-compete toll or extend during a breach or litigation? {#tolling-extension}
148
+
149
+ **Short answer.** Only as the statute allows, and a court will not extend it for you. The act itself extends the restricted period to up to 2 years when the employee breached a fiduciary duty or unlawfully took employer property; outside that, and absent an express tolling clause, a Massachusetts court will not equitably extend a non-compete past its stated term [^duration-extension][^emc-no-extension].
150
+
151
+ The First Circuit, applying Massachusetts law, held that once a restraint period has expired, specific relief is inappropriate and the employer is left to a damages remedy [^emc-expired]. The court pointedly noted that the employer could have contracted for tolling the term of the restriction during litigation, or for the restriction to begin on a preliminary finding of breach — but it had not [^emc-no-extension].
152
+
153
+ The Supreme Judicial Court takes the same view of judicial extension. In *Automile Holdings, LLC v. McGovern*, it held that a trial judge's equitable extension of a covenant beyond its plain terms was an abuse of discretion, and that such extensions are strongly disfavored absent a finding that damages would be inadequate [^automile-extension].
154
+
155
+ "Being forewarned, EMC could have contracted, as the district judge noted, for tolling the term of the restriction during litigation, or for a period of restriction to commence upon preliminary finding of breach."[^emc-no-extension]
156
+
157
+ "As a matter of public policy, we strongly disfavor restrictive covenants, and the use of an equitable remedy to extend such a restriction beyond the plain terms of the contract, even in the context of a sale of a business, was not warranted without a finding that damages would be inadequate."[^automile-extension]
158
+
159
+ > [!CAUTION]
160
+ > **Drafting note.**
161
+ >
162
+ > Do not assume a Massachusetts court will pause the clock while the former employee competes or while litigation drags on. The only built-in extension is the statute's misconduct trigger; if you want the restricted period tolled during a breach or suit, you must draft an express tolling or extension clause — and even then keep the total restraint within the statutory cap [^duration-extension][^emc-no-extension].
163
+
164
+ ## Can a parent or affiliated company enforce a Massachusetts non-compete? {#parent-company-enforcement}
165
+
166
+ **Short answer.** Risky — the agreement should be with the direct employer. The Noncompetition Agreement Act governs an agreement between an *employer* and an *employee*, and a Massachusetts Superior Court has declined to enforce a non-compete signed with a parent holding company rather than the employee's actual employer [^anaplan-employer].
167
+
168
+ In *Anaplan Parent, LP v. Brennan*, the Business Litigation Session denied a preliminary injunction on a non-compete contained in equity-grant agreements signed with the employee's parent company, reasoning that the term *employer* has not been read to include a parent corporation [^anaplan-employer]. The decision is a trial-court order on a preliminary injunction — persuasive rather than binding — but it flags a concrete drafting risk.
169
+
170
+ > [!CAUTION]
171
+ > **Drafting note.**
172
+ >
173
+ > Have the entity that actually employs the worker — not a parent, holding company, or affiliate — be the named counterparty on a Massachusetts non-compete. A covenant signed only with a parent company risks being unenforceable because the parent may not be the employee's *employer* under the act [^anaplan-employer].
174
+
175
+ ## If a non-compete is unavailable, what protects a Massachusetts employer? {#trade-secrets}
176
+
177
+ **Short answer.** Trade-secret law and tailored covenants. The Massachusetts Uniform Trade Secrets Act protects a broadly defined category of trade secrets, and the Noncompetition Agreement Act leaves non-solicitation and confidentiality agreements available without its garden-leave and duration limits [^mutsa-definition][^mutsa-limitations].
178
+
179
+ Because so many workers and covenants fall outside the act — laid-off employees, nonexempt workers, non-solicits, and NDAs — a confidentiality or non-solicitation agreement backed by trade-secret law is often the more reliable tool. A misappropriation action under the trade-secrets act must be brought within 3 years after the misappropriation is or should have been discovered [^mutsa-limitations].
180
+
181
+ ## What are the key recent developments in Massachusetts non-compete law? {#recent-developments}
182
+
183
+ **Short answer.** A 2018 statutory overhaul, a clarifying 2025 decision, and continued reform pressure. The Noncompetition Agreement Act reset the rules for agreements entered into on or after October 1, 2018, and the Supreme Judicial Court's 2025 decision in *Miele* drew a firm line keeping non-solicitation agreements — and forfeiture clauses triggered only by breaching them — outside the act [^rd-nuvasive-effective-date][^rd-miele-plain-language].
184
+
185
+ -
186
+ -
187
+ -
188
+
189
+ > [!NOTE]
190
+ > **Practice note.**
191
+ >
192
+ > Confirm the current status of pending Massachusetts non-compete legislation before relying on this summary, because reform bills are active in the 2025–2026 session. The settled law remains the 2018 act as interpreted in *Miele*, which keeps non-solicitation and confidentiality covenants outside the act's garden-leave and duration limits [^rd-miele-plain-language].
193
+
194
+ [^about]: By Steven Obiajulu, J.D. Published by [openagreements.org](https://openagreements.org) · Maintained by [UseJunior](https://usejunior.com). Last reviewed 2026-06-03. License: CC BY 4.0. Steven Obiajulu, J.D. is admitted in New York, not Massachusetts. This article synthesizes Massachusetts primary law and is not legal advice from a Massachusetts-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
195
+
196
+ [^mnaa-validity]: **Mass. Gen. Laws ch. 149, § 24L** — "To be valid and enforceable, a noncompetition agreement must meet the minimum requirements of paragraphs (i) through (viii)." *Mass. Gen. Laws ch. 149, § 24L(b).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
197
+
198
+ [^nuvasive-effective-date]: **NuVasive, Inc. v. Day** — "the MNCA ‘only applies to employee noncompetition agreements entered into on or after October 1, 2018,’" *NuVasive, Inc. v. Day, 954 F.3d 439 (1st Cir. 2020).* <https://www.courtlistener.com/opinion/4743298/nuvasive-inc-v-day/#:~:text=the%20MNCA%20%22only%20applies%20to,or%20after%20October%201%2C%202018%2C%22>
199
+
200
+ [^mnaa-employee-scope]: **Mass. Gen. Laws ch. 149, § 24L** — "provided, however, that the term ''employee'', as used in this section, shall also include independent contractors under section 148B." *Mass. Gen. Laws ch. 149, § 24L(a).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
201
+
202
+ [^boulanger-reasonableness]: **Boulanger v. Dunkin' Donuts Inc.** — "A covenant not to compete is enforceable only if it is necessary to protect a legitimate business interest, reasonably limited in time and space, and consonant with the public interest." *Boulanger v. Dunkin' Donuts Inc., 442 Mass. 635 (2004).* <https://www.courtlistener.com/opinion/6579005/boulanger-v-dunkin-donuts-inc/#:~:text=A%20covenant%20not%20to%20compete%20is,consonant%20with%20the%20public%20interest.>
203
+
204
+ [^formation-newhire]: **Mass. Gen. Laws ch. 149, § 24L** — "If the agreement is entered into in connection with the commencement of employment, it must be in writing and signed by both the employer and employee and expressly state that the employee has the right to consult with counsel prior to signing." *Mass. Gen. Laws ch. 149, § 24L(b)(i).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
205
+
206
+ [^formation-newhire-timing]: **Mass. Gen. Laws ch. 149, § 24L** — "The agreement must be provided to the employee by the earlier of a formal offer of employment or 10 business days before the commencement of the employee's employment." *Mass. Gen. Laws ch. 149, § 24L(b)(i).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
207
+
208
+ [^formation-midemployment]: **Mass. Gen. Laws ch. 149, § 24L** — "If the agreement is entered into after commencement of employment but not in connection with the separation from employment, it must be supported by fair and reasonable consideration independent from the continuation of employment, and notice of the agreement must be provided at least 10 business days before the agreement is to be effective." *Mass. Gen. Laws ch. 149, § 24L(b)(ii).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
209
+
210
+ [^consideration-requirement]: **Mass. Gen. Laws ch. 149, § 24L** — "The noncompetition agreement shall be supported by a garden leave clause or other mutually-agreed upon consideration between the employer and the employee, provided that such consideration is specified in the noncompetition agreement." *Mass. Gen. Laws ch. 149, § 24L(b)(vii).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
211
+
212
+ [^garden-leave-fifty-percent]: **Mass. Gen. Laws ch. 149, § 24L** — "To constitute a garden leave clause within the meaning of this section, the agreement must (i) provide for the payment, consistent with the requirements for the payment of wages under section 148 of chapter 149 of the general laws, on a pro-rata basis during the entirety of the restricted period, of at least 50 percent of the employee's highest annualized base salary paid by the employer within the 2 years preceding the employee's termination;" *Mass. Gen. Laws ch. 149, § 24L(b)(vii).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
213
+
214
+ [^duration-cap]: **Mass. Gen. Laws ch. 149, § 24L** — "In no event may the stated restricted period exceed 12 months from the date of cessation of employment, unless the employee has breached his or her fiduciary duty to the employer or the employee has unlawfully taken, physically or electronically, property belonging to the employer, in which case the duration may not exceed 2 years from the date of cessation of employment." *Mass. Gen. Laws ch. 149, § 24L(b)(iv).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
215
+
216
+ [^legitimate-interests-statute]: **Mass. Gen. Laws ch. 149, § 24L** — "The agreement must be no broader than necessary to protect one or more of the following legitimate business interests of the employer: (A) the employer's trade secrets; (B) the employer's confidential information that otherwise would not qualify as a trade secret; or (C) the employer's goodwill." *Mass. Gen. Laws ch. 149, § 24L(b)(iii).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
217
+
218
+ [^boulanger-interests]: **Boulanger v. Dunkin' Donuts Inc.** — "Legitimate business interests include protection of trade secrets, confidential information, and good will." *Boulanger v. Dunkin' Donuts Inc., 442 Mass. 635 (2004).* <https://www.courtlistener.com/opinion/6579005/boulanger-v-dunkin-donuts-inc/#:~:text=Legitimate%20business%20interests%20include%20protection,confidential%20information%2C%20and%20good%20will.>
219
+
220
+ [^allstainless-ordinary-competition]: **All Stainless, Inc. v. Colby** — "A former employer is not entitled by contract to restrain ordinary competition." *All Stainless, Inc. v. Colby, 364 Mass. 773 (1974).* <https://www.courtlistener.com/opinion/2151844/all-stainless-inc-v-colby/#:~:text=A%20former%20employer%20is%20not,contract%20to%20restrain%20ordinary%20competition.>
221
+
222
+ [^excluded-workers]: **Mass. Gen. Laws ch. 149, § 24L** — "A noncompetition agreement shall not be enforceable against the following types of workers: (i) an employee who is classified as nonexempt under the Fair Labor Standards Act, 29 U.S.C. 201-219; (ii) undergraduate or graduate students that partake in an internship or otherwise enter a short-term employment relationship with an employer, whether paid or unpaid, while enrolled in a full-time or part-time undergraduate or graduate educational institution; (iii) employees that have been terminated without cause or laid off; or (iv) employees age 18 or younger." *Mass. Gen. Laws ch. 149, § 24L(c).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
223
+
224
+ [^noncompete-exclusions-solicit]: **Mass. Gen. Laws ch. 149, § 24L** — "Noncompetition agreements include forfeiture for competition agreements, but do not include: (i) covenants not to solicit or hire employees of the employer; (ii) covenants not to solicit or transact business with customers, clients, or vendors of the employer;" *Mass. Gen. Laws ch. 149, § 24L(a).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
225
+
226
+ [^noncompete-exclusions-sale]: **Mass. Gen. Laws ch. 149, § 24L** — "(iii) noncompetition agreements made in connection with the sale of a business entity or substantially all of the operating assets of a business entity or partnership, or otherwise disposing of the ownership interest of a business entity or partnership, or division or subsidiary thereof, when the party restricted by the noncompetition agreement is a significant owner of, or member or partner in, the business entity who will receive significant consideration or benefit from the sale or disposal;" *Mass. Gen. Laws ch. 149, § 24L(a).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
227
+
228
+ [^noncompete-exclusions-other]: **Mass. Gen. Laws ch. 149, § 24L** — "(vi) nondisclosure or confidentiality agreements; (vii) invention assignment agreements; (viii) garden leave clauses; (ix) noncompetition agreements made in connection with the cessation of or separation from employment if the employee is expressly given seven business days to rescind acceptance;" *Mass. Gen. Laws ch. 149, § 24L(a).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
229
+
230
+ [^miele-forfeiture]: **Miele v. Foundation Medicine, Inc.** — "That is, for the reasons we discuss below, we conclude that a forfeiture clause triggered by a breach of a nonsolicitation agreement does not constitute a ‘forfeiture for competition agreement’ within the meaning of the act." *Miele v. Foundation Medicine, Inc., 496 Mass. 171 (2025).* <https://www.courtlistener.com/opinion/10604382/susan-miele-v-foundation-medicine-inc/#:~:text=That%20is%2C%20for%20the%20reasons,the%20meaning%20of%20the%20act.>
231
+
232
+ [^miele-plain-language]: **Miele v. Foundation Medicine, Inc.** — "Under the plain language of the Massachusetts Noncompetition Agreement Act, (1) noncompetition agreements do not include nonsolicitation agreements, and (2) forfeiture for competition agreements are a subset of noncompetition agreements." *Miele v. Foundation Medicine, Inc., 496 Mass. 171 (2025).* <https://www.courtlistener.com/opinion/10604382/susan-miele-v-foundation-medicine-inc/#:~:text=Under%20the%20plain%20language%20of,a%20subset%20of%20noncompetition%20agreements.>
233
+
234
+ [^ban-physicians]: **Mass. Gen. Laws ch. 112, § 12X** — "Any contract or agreement which creates or establishes the terms of a partnership, employment, or any other form of professional relationship with a physician registered to practice medicine pursuant to section two, which includes any restriction of the right of such physician to practice medicine in any geographic area for any period of time after the termination of such partnership, employment or professional relationship shall be void and unenforceable with respect to said restriction; provided, however, that nothing herein shall render void or unenforceable the remaining provisions of any such contract or agreement." *Mass. Gen. Laws ch. 112, § 12X.* <https://malegislature.gov/Laws/GeneralLaws/Chapter112/Section12X>
235
+
236
+ [^ban-nurses]: **Mass. Gen. Laws ch. 112, § 74D** — "which includes any restriction of the right of such nurse to practice as a nurse in any geographical area for any period of time after the termination of such partnership, employment or professional relationship shall be void and unenforceable with respect to said restriction." *Mass. Gen. Laws ch. 112, § 74D.* <https://malegislature.gov/Laws/GeneralLaws/Chapter112/Section74D>
237
+
238
+ [^ban-broadcasting]: **Mass. Gen. Laws ch. 149, § 186** — "Any contract or agreement which creates or establishes the terms of employment for an employee or individual in the broadcasting industry, including, television stations, television networks, radio stations, radio networks, or any entities affiliated with the foregoing, and which restricts the right of such employee or individual to obtain employment in a specified geographic area for a specified period of time after termination of employment of the employee by the employer or by termination of the employment relationship by mutual agreement of the employer and the employee or by termination of the employment relationship by the expiration of the contract or agreement, shall be void and unenforceable with respect to such provision." *Mass. Gen. Laws ch. 149, § 186.* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section186>
239
+
240
+ [^ban-psychologists]: **Mass. Gen. Laws ch. 112, § 129B** — "which includes a restriction of the right of the psychologist to practice in any geographic area for any period of time after termination of the partnership, employment or professional relationship shall be void and unenforceable with respect to the restriction;" *Mass. Gen. Laws ch. 112, § 129B.* <https://malegislature.gov/Laws/GeneralLaws/Chapter112/Section129B>
241
+
242
+ [^ban-social-workers]: **Mass. Gen. Laws ch. 112, § 135C** — "that includes a restriction of the right of the social worker to practice in any geographic area for any period of time after termination of the partnership, employment or professional relationship shall be void and unenforceable with respect to that restriction." *Mass. Gen. Laws ch. 112, § 135C.* <https://malegislature.gov/Laws/GeneralLaws/Chapter112/Section135C>
243
+
244
+ [^choice-of-law-statute]: **Mass. Gen. Laws ch. 149, § 24L** — "No choice of law provision that would have the effect of avoiding the requirements of this section will be enforceable if the employee is, and has been for at least 30 days immediately preceding his or her cessation of employment, a resident of or employed in Massachusetts at the time of his or her termination of employment." *Mass. Gen. Laws ch. 149, § 24L(e).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
245
+
246
+ [^oxford-choice-of-law]: **Oxford Global Res., LLC v. Hernandez** — "We conclude that the Massachusetts choice of law provision in the agreement is not enforceable, where California substantive law would apply under our choice of law principles, and where the application of Massachusetts substantive law would violate the fundamental public policy of California favoring open competition and employee mobility." *Oxford Global Res., LLC v. Hernandez, 480 Mass. 462 (2018).* <https://www.courtlistener.com/opinion/7175264/oxford-global-res-llc-v-hernandez/#:~:text=We%20conclude%20that%20the%20Massachusetts,open%20competition%20and%20employee%20mobility.>
247
+
248
+ [^venue-statute]: **Mass. Gen. Laws ch. 149, § 24L** — "All civil actions relating to employee noncompetition agreements subject to this section shall be brought in the county where the employee resides or, if mutually agreed upon by the employer and employee, in Suffolk county;" *Mass. Gen. Laws ch. 149, § 24L(f).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
249
+
250
+ [^reformation-statute]: **Mass. Gen. Laws ch. 149, § 24L** — "A court may, in its discretion, reform or otherwise revise a noncompetition agreement so as to render it valid and enforceable to the extent necessary to protect the applicable legitimate business interests." *Mass. Gen. Laws ch. 149, § 24L(d).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
251
+
252
+ [^bartlett-abandonment]: **F.A. Bartlett Tree Expert Co. v. Barrington** — "Such far reaching changes strongly suggest that the parties had abandoned their old arrangement and had entered into a new relationship." *F.A. Bartlett Tree Expert Co. v. Barrington, 353 Mass. 585 (1968).* <https://www.courtlistener.com/opinion/2013561/f-a-bartlett-tree-expert-co-v-barrington/#:~:text=Such%20far%20reaching%20changes%20strongly,entered%20into%20a%20new%20relationship.>
253
+
254
+ [^bartlett-newcontract]: **F.A. Bartlett Tree Expert Co. v. Barrington** — "The judge concluded that the conduct of the parties shows a clear new employment contract in both 1960 and 1965 and that the 1948 contract was abandoned and rescinded by mutual consent." *F.A. Bartlett Tree Expert Co. v. Barrington, 353 Mass. 585 (1968).* <https://www.courtlistener.com/opinion/2013561/f-a-bartlett-tree-expert-co-v-barrington/#:~:text=The%20judge%20concluded%20that%20the,and%20rescinded%20by%20mutual%20consent.>
255
+
256
+ [^duration-extension]: **Mass. Gen. Laws ch. 149, § 24L** — "In no event may the stated restricted period exceed 12 months from the date of cessation of employment, unless the employee has breached his or her fiduciary duty to the employer or the employee has unlawfully taken, physically or electronically, property belonging to the employer, in which case the duration may not exceed 2 years from the date of cessation of employment." *Mass. Gen. Laws ch. 149, § 24L(b)(iv).* <https://malegislature.gov/Laws/GeneralLaws/Chapter149/Section24L>
257
+
258
+ [^emc-no-extension]: **EMC Corp. v. Arturi** — "Being forewarned, EMC could have contracted, as the district judge noted, for tolling the term of the restriction during litigation, or for a period of restriction to commence upon preliminary finding of breach." *EMC Corp. v. Arturi, 655 F.3d 75 (1st Cir. 2011).* <https://www.courtlistener.com/opinion/612666/emc-corp-v-arturi/#:~:text=Being%20forewarned%2C%20EMC%20could%20have,upon%20preliminary%20finding%20of%20breach.>
259
+
260
+ [^emc-expired]: **EMC Corp. v. Arturi** — "We explained that ‘when the period of restraint has expired, even when the delay was substantially caused by the time consumed in legal appeals, specific relief is inappropriate and the injured party is left to his damages remedy." *EMC Corp. v. Arturi, 655 F.3d 75 (1st Cir. 2011).* <https://www.courtlistener.com/opinion/612666/emc-corp-v-arturi/#:~:text=We%20explained%20that%20%22when%20the,left%20to%20his%20damages%20remedy.>
261
+
262
+ [^automile-extension]: **Automile Holdings, LLC v. McGovern** — "As a matter of public policy, we strongly disfavor restrictive covenants, and the use of an equitable remedy to extend such a restriction beyond the plain terms of the contract, even in the context of a sale of a business, was not warranted without a finding that damages would be inadequate." *Automile Holdings, LLC v. McGovern, 483 Mass. 797 (2020).* <https://caselaw.findlaw.com/court/ma-supreme-judicial-court/2042227.html>
263
+
264
+ [^anaplan-employer]: **Anaplan Parent, LP v. Brennan** — "It has never been held to include a parent corporation as an ‘employer.’" *Anaplan Parent, LP v. Brennan, No. 2584CV02350 (Mass. Super. Ct. 2025).* <https://www.mintz.com/sites/default/files/media/documents/2025-11-07/Anaplan-Parent%2C-LP-v.-Brennan-Noncompete%20Order.pdf>
265
+
266
+ [^mutsa-definition]: **Mass. Gen. Laws ch. 93, § 42** — "(4) ''Trade secret'', specified or specifiable information, whether or not fixed in tangible form or embodied in any tangible thing, including but not limited to a formula, pattern, compilation, program, device, method, technique, process, business strategy, customer list, invention, or scientific, technical, financial or customer data" *Mass. Gen. Laws ch. 93, § 42(4).* <https://malegislature.gov/Laws/GeneralLaws/Chapter93/Section42>
267
+
268
+ [^mutsa-limitations]: **Mass. Gen. Laws ch. 93, § 42E** — "An action for misappropriation must be brought within 3 years after the misappropriation is discovered or by the exercise of reasonable diligence should have been discovered." *Mass. Gen. Laws ch. 93, § 42E.* <https://malegislature.gov/Laws/GeneralLaws/Chapter93/Section42E>
269
+
270
+ [^rd-nuvasive-effective-date]: **NuVasive, Inc. v. Day** — "the MNCA ‘only applies to employee noncompetition agreements entered into on or after October 1, 2018,’" *NuVasive, Inc. v. Day, 954 F.3d 439 (1st Cir. 2020).* <https://www.courtlistener.com/opinion/4743298/nuvasive-inc-v-day/#:~:text=the%20MNCA%20%22only%20applies%20to,or%20after%20October%201%2C%202018%2C%22>
271
+
272
+ [^rd-miele-plain-language]: **Miele v. Foundation Medicine, Inc.** — "Under the plain language of the Massachusetts Noncompetition Agreement Act, (1) noncompetition agreements do not include nonsolicitation agreements, and (2) forfeiture for competition agreements are a subset of noncompetition agreements." *Miele v. Foundation Medicine, Inc., 496 Mass. 171 (2025).* <https://www.courtlistener.com/opinion/10604382/susan-miele-v-foundation-medicine-inc/#:~:text=Under%20the%20plain%20language%20of,a%20subset%20of%20noncompetition%20agreements.>