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,168 @@
1
+ ---
2
+ jurisdiction: "Northern Mariana Islands"
3
+ slug: cnmi
4
+ countryCode: US
5
+ snapshotAsOf: "2026-06-08"
6
+ lastReviewed: "2026-06-03"
7
+ canonicalUrl: https://openagreements.org/legal/non-compete/cnmi
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/cnmi · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
19
+
20
+ # Non-Competes in the Northern Mariana Islands[^about]
21
+
22
+ The CNMI has no non-compete statute; post-employment covenants are enforceable only if they are reasonable under Restatement (Second) of Contracts § 188, which the rules-of-decision statute 7 CMC § 3401 imports as Commonwealth law, and the one on-point decision denied a preliminary injunction against two former medical-transport employees on Saipan.
23
+
24
+
25
+ ## At a glance
26
+
27
+ | Question | Northern Mariana Islands |
28
+ | --- | --- |
29
+ | **Are non-competes enforceable?** | Allowed if reasonable |
30
+ | **Bottom line** | The CNMI has no non-compete statute; a post-employment covenant is enforceable only if reasonable under Restatement (Second) of Contracts § 188, which 7 CMC § 3401 imports as Commonwealth law, and the one on-point federal order denied an injunction in a small-island healthcare context. |
31
+ | **Main law or case** | 7 CMC § 3401 (importing Restatement (Second) of Contracts § 188); August Healthcare Grp., LLC v. Manglona |
32
+ | **Main exceptions** | No statutory carve-outs; small-island public-interest and hardship factors weigh heavily against healthcare/specialist covenants |
33
+ | **Can a court narrow it?** | Unsettled |
34
+ | **Applies to contractors?** | Unclear |
35
+ | **Restriction extended during a breach?** | Silent — rely on an explicit tolling clause kept within § 188 reasonableness |
36
+ | **Maximum length set by law** | No statutory limit |
37
+
38
+ ## Are employee non-compete agreements enforceable in the CNMI? {#employee-noncompetes}
39
+
40
+ **Short answer.** Sometimes. The Commonwealth of the Northern Mariana Islands has no statute that governs non-competes. When local written law is silent, the Commonwealth's rules-of-decision statute makes the Restatements the rules of decision [^cmc-3401], so a post-employment covenant is enforceable only if it is reasonable under Restatement (Second) of Contracts § 188.
41
+
42
+ The CNMI is not a per se ban jurisdiction like California or North Dakota, and it is not a statutory-reasonableness jurisdiction either. There is no Commonwealth Code provision that regulates, restricts, or bans employee non-competes. The only court to address one said so directly and routed the analysis to the Restatement [^aug-no-statute].
43
+
44
+ "There is no specific law, statute, or custom in the CNMI governing covenants not to compete."[^aug-no-statute]
45
+
46
+ That statutory silence is load-bearing. Under 7 CMC § 3401, the rules of the common law as expressed in the Restatements of the Law are the rules of decision in Commonwealth courts whenever written law and local customary law are silent. The federal court applying CNMI law in *August Healthcare Group, LLC v. Manglona* therefore treated the Restatement (Second) of Contracts as controlling and decided the covenant under it [^aug-restatements].
47
+
48
+ One caveat frames everything below: *August Healthcare* is a federal district-court order denying a preliminary injunction, and no CNMI Supreme Court decision has yet resolved a private employee non-compete on the merits. The governing framework is thus a statutory directive applied by one federal court, not a body of settled Commonwealth appellate precedent.
49
+
50
+ ## What test must a CNMI non-compete satisfy? {#reasonableness-test}
51
+
52
+ **Short answer.** The Restatement (Second) of Contracts § 188 rule of reason. A covenant is unreasonable, and unenforceable, if it is greater than is needed to protect a legitimate employer interest, or if that need is outweighed by the hardship to the employee and the likely injury to the public [^aug-188].
53
+
54
+ This is a two-sided balancing test, not a checklist of fixed limits. An employer must first identify a legitimate interest and tailor the restraint to it; even a narrowly tailored restraint can still fail if the burden on the employee and the harm to the public outweigh the employer's need. The court in *August Healthcare* quoted the black-letter text of § 188 and applied it as Commonwealth law.
55
+
56
+ "A promise to refrain from competition that imposes a restraint that is ancillary to an otherwise valid transaction or relationship is unreasonably in restraint of trade if (a) the restraint is greater than is needed to protect the promisee's legitimate interest, or (b) the promisee's need is outweighed by the hardship to the promisor and the likely injury to the public."[^aug-188]
57
+
58
+ Because the limits are judge-made through the Restatement rather than set by a code section, there is no statutory ceiling on duration or geography to anchor a covenant. Reasonableness is decided case by case, which makes the CNMI's small-island context, addressed in the sections below, central to the analysis.
59
+
60
+ ## What consideration supports a CNMI non-compete? {#consideration}
61
+
62
+ **Short answer.** This is unsettled. The only CNMI covenant decision expressly declined to decide whether continued employment alone is sufficient consideration for a non-compete, so no CNMI authority answers the question [^aug-saves].
63
+
64
+ In *August Healthcare*, an employee argued, relying on Washington case law, that a non-compete signed months after employment begins is invalid without fresh, independent consideration. The federal court acknowledged the dispute but resolved the motion on reasonableness grounds alone and left consideration for a future case.
65
+
66
+ "At this stage of the proceedings, this Court finds that the application of Section 188 of the Restatement is sufficient to address St. Michael's request for a preliminary injunction and saves the issue of consideration for another day."[^aug-saves]
67
+
68
+ Mainland courts are split: many treat continued at-will employment as sufficient consideration, while a substantial minority require something more, such as a bonus, a promotion, or specialized training. Because the CNMI has not chosen a side, the conservative course is to provide independent, bargained-for consideration when a covenant is imposed on a current employee.
69
+
70
+ > [!NOTE]
71
+ > **Practice note.**
72
+ >
73
+ > Do not assume continued employment will support a mid-employment covenant. The CNMI has not decided the consideration question, so give independent, bargained-for consideration, such as a promotion or a bonus, when an existing employee signs a non-compete [^aug-saves].
74
+
75
+ ## Will CNMI courts narrow an overbroad non-compete? {#court-narrowing}
76
+
77
+ **Short answer.** There is no direct CNMI authority. Whether a Commonwealth court would blue-pencil or equitably reform an overbroad employment covenant, rather than void it, is a question of first impression [^pang-gapfill].
78
+
79
+ The probable doctrinal path runs through the Restatement. Section 3401 directs courts to fill gaps with the common law as expressed in the Restatements, and the CNMI Supreme Court has described that cascade: courts first look to local written law, and where it is lacking, the Restatement fills the gaps. The likely argument from there is Restatement (Second) of Contracts § 184, which lets a court enforce the reasonable remainder of an otherwise overbroad agreement — but that is the route an employer would have to urge, not a rule any CNMI court has adopted.
80
+
81
+ "To the extent local written law is lacking, the Restatement fills the gaps."[^pang-gapfill]
82
+
83
+ But no CNMI court has applied § 184 to reform an employment non-compete, and *August Healthcare* did not reach the question because it denied relief on reasonableness grounds. An employer therefore cannot count on judicial salvage of an aggressive covenant.
84
+
85
+ > [!CAUTION]
86
+ > **Drafting note.**
87
+ >
88
+ > Draft to a reasonable scope from the outset. Because reformation of an overbroad employment covenant is an unresolved question in the CNMI, a court may void a covenant that reaches too far rather than narrow it [^pang-gapfill].
89
+
90
+ ## How does the CNMI treat NDAs, non-solicits, and customer lists? {#trade-secrets-nonsolicit}
91
+
92
+ **Short answer.** It depends on the restraint. A non-solicitation covenant restrains competition and is judged by the same Restatement § 188 reasonableness standard as a non-compete. Confidentiality and trade-secret protection instead run through common-law trade-secret principles: in *August Healthcare* the court analyzed the employer's customer list under common-law trade-secret factors and found it was not necessarily a protectable trade secret, because Saipan is a small market where the relevant customers are readily observable [^aug-not-trade-secret].
93
+
94
+ The protectable-interest analysis is where the employer's claim failed in *August Healthcare*. The court reasoned that on Saipan the names of those needing the employer's services would be public knowledge, so a confidentiality or non-solicitation restraint built around that list could not protect a genuine secret.
95
+
96
+ "While a customer list and data can be considered trade secrets, Defendants make a convincing argument that Saipan is such a small community that the names of those needing healthcare transportation services would be public knowledge."[^aug-customer-list]
97
+
98
+ A non-solicitation clause is generally easier to justify than a flat non-compete because it restrains less, but it still must protect a real interest. Where the customer base is common knowledge on a small island, even a narrowly framed non-solicit may not survive § 188.
99
+
100
+ > [!NOTE]
101
+ > **Practice note.**
102
+ >
103
+ > Do not assume a customer list is a trade secret in a small island market. The court in *August Healthcare* found the employer's list was not necessarily a trade secret because the customers were readily observable on Saipan [^aug-not-trade-secret].
104
+
105
+ ## Are healthcare and specialist non-competes harder to enforce? {#healthcare-public-interest}
106
+
107
+ **Short answer.** Likely, though the law is thin. The only CNMI covenant decision shows both limbs of § 188 — the hardship to the employee and the injury to the public — weighing heavily against enforcement in a small island economy. In *August Healthcare* the court declined to preliminarily enjoin two former emergency medical-transport employees from joining a competitor, finding there were no other private medical providers on Saipan and that an injunction would deprive them of their livelihood [^aug-no-providers].
108
+
109
+ A preliminary injunction is the usual enforcement tool, and in federal court it is an extraordinary remedy measured against a four-factor test of likelihood of success, irreparable harm, the balance of equities, and the public interest [^aug-extraordinary][^aug-four-prong]. On the facts of *August Healthcare* those factors cut against the employer: enjoining the workers would deprive skilled employees of their livelihood and remove the employer's only competitor from the market, while the lost-customer harm was small and calculable [^aug-deprive].
110
+
111
+ "There are no other private medical service providers on Saipan to hire employees with their specialized skills."[^aug-no-providers]
112
+
113
+ That outcome is narrow in two respects. The court found the employer had produced a signed non-compete for only one of the two employees and none for the other, so the denial did not rest solely on covenant reasonableness. And it is a single fact-specific federal order, not a CNMI appellate rule. Even so, the same public-interest logic would likely make a physician, nurse, or other specialist non-compete hard to enforce where the restraint would remove the only local provider — a strong inference to plan around, not settled law.
114
+
115
+ ## Does the restricted period toll or extend if the employee breaches? {#tolling}
116
+
117
+ **Short answer.** CNMI primary law is silent. No Commonwealth statute or decision approves or rejects pausing or extending a non-compete during a period of breach or pending litigation, so the question is genuinely open. A contractual tolling clause is the safer route, but any extension must still leave the total restraint reasonable under § 188 [^tolling-188].
118
+
119
+ Because there is no CNMI authority on point, an employer should not assume a court will pause the clock while litigation runs. The nearest guidance is persuasive only. In *EMC Corp. v. Arturi*, the First Circuit, applying Massachusetts law, refused to equitably extend a covenant after its term expired and observed that the employer could have contracted for tolling instead.
120
+
121
+ "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-tolling]
122
+
123
+ *EMC* is not CNMI law, and it cuts in two directions: it supports drafting an explicit tolling clause, but it also shows courts are reluctant to rewrite the calendar themselves. Under § 188, even a contractual extension is vulnerable if it pushes the effective duration past what is reasonable to protect the employer.
124
+
125
+ > [!CAUTION]
126
+ > **Drafting note.**
127
+ >
128
+ > If you want the clock to pause during a breach, say so in the contract. CNMI courts have not decided whether they will extend a covenant equitably, so rely on an explicit tolling clause, and keep the maximum extended duration reasonable so the extension itself does not make the covenant unenforceable under § 188 [^emc-tolling][^tolling-188].
129
+
130
+ ## What recent developments should employers monitor? {#recent-developments}
131
+
132
+ **Short answer.** As of June 3, 2026, the framework is stable. No CNMI statute has displaced the analysis that runs from 7 CMC § 3401 to Restatement § 188, and the CNMI Supreme Court reaffirmed that the Restatements are the Commonwealth's rules of decision in 2024 [^pang-current].
133
+
134
+ Two widely publicized changes do not reach the CNMI on their own force. The federal FTC Non-Compete Rule is not in effect, so it does not displace the Commonwealth analysis. And mainland state bans, such as California's and Washington's, have no jurisdictional reach in the CNMI on their own force; they matter only if a contract's choice-of-law clause imports another state's law.
135
+
136
+ The practical takeaway is stability with a thin margin. Because the framework is judge-made, the most reliable signal of change would be a new CNMI Supreme Court or federal decision deciding one of the open questions, consideration, reformation, or tolling, rather than a bill.
137
+
138
+ [^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 Northern Mariana Islands. This article synthesizes Northern Mariana Islands primary law and is not legal advice from a Northern Mariana Islands-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
139
+
140
+ [^cmc-3401]: **7 CMC § 3401** — "In all proceedings, the rules of the common law, as expressed in the restatements of the law approved by the American Law Institute and, to the extent not so expressed as generally understood and applied in the United States, shall be the rules of decision in the courts of the Commonwealth, in the absence of written law or local customary law to the contrary" *7 CMC § 3401.* <https://cnmilaw.org/pdf/cmc_section/T7/3401.pdf>
141
+
142
+ [^aug-no-statute]: **August Healthcare Group, LLC v. Manglona** — "There is no specific law, statute, or custom in the CNMI governing covenants not to compete." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
143
+
144
+ [^aug-restatements]: **August Healthcare Group, LLC v. Manglona** — "In the absence of written law or local customary law, the CNMI looks to the United States common law as expressed in the Restatements." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
145
+
146
+ [^aug-188]: **August Healthcare Group, LLC v. Manglona** — "A promise to refrain from competition that imposes a restraint that is ancillary to an otherwise valid transaction or relationship is unreasonably in restraint of trade if (a) the restraint is greater than is needed to protect the promisee's legitimate interest, or (b) the promisee's need is outweighed by the hardship to the promisor and the likely injury to the public." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
147
+
148
+ [^aug-saves]: **August Healthcare Group, LLC v. Manglona** — "At this stage of the proceedings, this Court finds that the application of Section 188 of the Restatement is sufficient to address St. Michael's request for a preliminary injunction and saves the issue of consideration for another day." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
149
+
150
+ [^pang-gapfill]: **Pangelinan v. Pangelinan** — "first look to local written law, which includes our case law adopting and/or adapting Restatement provisions. To the extent local written law is lacking, the Restatement fills the gaps." *Pangelinan v. Pangelinan, 2024 MP 5.* <https://www.courtlistener.com/opinion/10124676/pangelinan-v-pangelinan/#:~:text=first%20look%20to%20local%20written,the%20Restatement%20fills%20the%20gaps.>
151
+
152
+ [^aug-not-trade-secret]: **August Healthcare Group, LLC v. Manglona** — "Therefore, the list of customers is not necessarily a trade secret in the industry." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
153
+
154
+ [^aug-customer-list]: **August Healthcare Group, LLC v. Manglona** — "While a customer list and data can be considered trade secrets, Defendants make a convincing argument that Saipan is such a small community that the names of those needing healthcare transportation services would be public knowledge." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
155
+
156
+ [^aug-no-providers]: **August Healthcare Group, LLC v. Manglona** — "There are no other private medical service providers on Saipan to hire employees with their specialized skills." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
157
+
158
+ [^aug-extraordinary]: **August Healthcare Group, LLC v. Manglona** — "A preliminary injunction is an extraordinary remedy never awarded as of right." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
159
+
160
+ [^aug-four-prong]: **August Healthcare Group, LLC v. Manglona** — "The plaintiff must establish that (1) plaintiff is likely to succeed on the merits, (2) plaintiff is likely to suffer irreparable harm in the absence of a preliminary injunction, (3) the balance of equities tips in plaintiff's favor, and (4) a preliminary injunction is in the public interest." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
161
+
162
+ [^aug-deprive]: **August Healthcare Group, LLC v. Manglona** — "An injunction that bars Pelisamen and Takai from working for Priority Care would deprive the men of the ability to earn their livelihood in a highly specialized sector of health care on Saipan." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
163
+
164
+ [^tolling-188]: **August Healthcare Group, LLC v. Manglona** — "A promise to refrain from competition that imposes a restraint that is ancillary to an otherwise valid transaction or relationship is unreasonably in restraint of trade if (a) the restraint is greater than is needed to protect the promisee's legitimate interest, or (b) the promisee's need is outweighed by the hardship to the promisor and the likely injury to the public." *August Healthcare Grp., LLC v. Manglona, No. 1:12-cv-00008, 2012 WL 12926085 (D. N. Mar. I. Oct. 12, 2012).* <https://www.govinfo.gov/app/details/USCOURTS-nmid-1_12-cv-00008>
165
+
166
+ [^emc-tolling]: **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.>
167
+
168
+ [^pang-current]: **Pangelinan v. Pangelinan** — "shall be the rules of decision in the courts of the Commonwealth, in the absence of written law or local customary law to the contrary." *Pangelinan v. Pangelinan, 2024 MP 5.* <https://www.courtlistener.com/opinion/10124676/pangelinan-v-pangelinan/#:~:text=shall%20be%20the%20rules%20of,customary%20law%20to%20the%20contrary.>
@@ -0,0 +1,277 @@
1
+ ---
2
+ jurisdiction: "Colorado"
3
+ slug: colorado
4
+ countryCode: US
5
+ snapshotAsOf: "2026-06-08"
6
+ lastReviewed: "2026-06-03"
7
+ canonicalUrl: https://openagreements.org/legal/non-compete/colorado
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/colorado · **Snapshot as of:** 2026-06-08 · License: CC BY 4.0 · © UseJunior
19
+
20
+ # Non-Competes in Colorado[^about]
21
+
22
+ Colorado makes most employee non-competes and customer non-solicits void by statute, allowing them only for highly compensated workers protecting trade secrets and banning them outright for health-care providers.
23
+
24
+
25
+ ## At a glance
26
+
27
+ | Question | Colorado |
28
+ | --- | --- |
29
+ | **Are non-competes enforceable?** | Allowed above a pay level |
30
+ | **Bottom line** | Colorado voids most employee non-competes and customer non-solicits, allowing a non-compete only against a highly compensated worker ($130,014 in 2026) to protect trade secrets, and banning them entirely for health-care providers. |
31
+ | **Main law or case** | C.R.S. § 8-2-113 |
32
+ | **Main exceptions** | Health-care provider ban (eff. Aug 6, 2025, SB 25-083); sale-of-business; reasonable confidentiality; capped training-repayment |
33
+ | **When the ban took effect** | Aug 10, 2022 (covenants entered or renewed on/after; HB 22-1317) |
34
+ | **Can a court narrow it?** | Unsettled |
35
+ | **Applies to contractors?** | Unclear |
36
+ | **Restriction extended during a breach?** | Open question — threshold must be met at enforcement, cutting against extension |
37
+ | **Maximum length set by law** | No general duration limit |
38
+
39
+ ## Are employee non-compete agreements enforceable in Colorado? {#enforceability}
40
+
41
+ **Short answer.** Usually no. For covenants entered into or renewed on or after August 10, 2022, Colorado law makes any covenant not to compete that restricts a person's right to earn compensation for labor void unless it fits a narrow statutory exception [^crs-void-rule][^crs-training-exception].
42
+
43
+ The governing statute is C.R.S. § 8-2-113. Subsection (2)(a) voids covenants not to compete as the baseline rule, and the enforcing employer bears the burden of fitting the covenant into an exception [^crs-void-rule][^phoenix-employer-burden].
44
+
45
+ The statute leaves a limited set of covenants in play: non-competes and customer non-solicits for highly compensated workers tailored to protect trade secrets, sale-of-business covenants, reasonable confidentiality provisions, and capped training-repayment provisions [^crs-hcw-exception][^crs-training-exception].
46
+
47
+ A covenant that fits a statutory exception is not automatically enforceable. It still must be for the protection of trade secrets and no broader than reasonably necessary, and the separate-notice rule and the other limits described below still apply [^crs-hcw-exception].
48
+
49
+ "Except as provided in subsections (2)(b) and (3) of this section, any covenant not to compete that restricts the right of any person to receive compensation for performance of labor for any employer is void."[^crs-void-rule]
50
+
51
+ ## When can a Colorado employer use a non-compete or customer non-solicit agreement? {#highly-compensated-threshold}
52
+
53
+ **Short answer.** Only for a highly compensated worker, to protect trade secrets. A non-compete is permitted only against a worker whose annualized cash compensation meets the highly compensated worker threshold — $130,014 in 2026 — and a customer non-solicit needs at least 60% of that threshold, $78,008.40 in 2026 [^crs-hcw-threshold][^crs-customer-nonsolicit-threshold][^paycalc-hcw-threshold][^ebg-2026-thresholds].
54
+
55
+ The worker must meet the threshold both when the covenant is signed and when it is enforced, and the covenant must protect trade secrets and be no broader than reasonably necessary [^crs-hcw-threshold]. The controlling figure is the greater of the August 10, 2022 amount or the amount in effect when the covenant is executed, so a covenant is tested against its execution-year threshold, not necessarily the current year [^crs-threshold-execution-year]. The threshold is reset annually by the Colorado Department of Labor and Employment's PAY CALC Order, which sets the 2026 highly compensated employee figure at $130,014 [^paycalc-hcw-threshold]. The customer-non-solicit threshold is then derived as 60% of that figure [^ebg-2026-thresholds].
56
+
57
+ The customer non-solicit threshold is pegged to 60% of the same number, and a customer non-solicit must likewise be no broader than reasonably necessary to protect trade secrets [^crs-customer-nonsolicit-threshold].
58
+
59
+ These thresholds do not help with health-care providers. Senate Bill 25-083 added the same carve-out to both the non-compete and the customer-non-solicit exceptions, so a covenant restricting the practice of medicine, advanced practice registered nursing, or dentistry is void regardless of compensation [^threshold-health-care-exclusion].
60
+
61
+ > [!NOTE]
62
+ > **Practice note.**
63
+ >
64
+ > Earning above the threshold is necessary but not sufficient. Even for a worker far above $130,014, a Colorado non-compete must still be tied to the protection of specific trade secrets and drafted no broader than reasonably necessary — general goodwill or ordinary customer relationships will not support it [^crs-hcw-threshold][^crs-customer-nonsolicit-threshold].
65
+
66
+ ## What notice must a Colorado employer give before a non-compete? {#notice-requirements}
67
+
68
+ **Short answer.** A separate, signed written notice, on a strict timeline. Even a covenant that fits an exception is void unless the employer gives the worker a separate written notice — before a prospective worker accepts the job, or at least fourteen days before the covenant or new consideration takes effect for a current worker [^crs-notice-timing][^crs-notice-separate-document].
69
+
70
+ The notice must be a standalone document, written in clear and conspicuous terms in the language the parties use, identify the agreement by name, point the worker to the covenant, and be signed by the worker [^crs-notice-separate-document].
71
+
72
+ > [!CAUTION]
73
+ > **Drafting note.**
74
+ >
75
+ > Do not bury a Colorado non-compete inside an offer letter or omnibus agreement presented for immediate signature. For a current employee, deliver the separate, signed notice at least fourteen days before the covenant's effective date or before any raise or change that serves as consideration — a defect in the notice voids the covenant on its own [^crs-notice-timing][^crs-notice-separate-document].
76
+
77
+ ## Are non-competes enforceable against Colorado physicians and other health-care providers? {#health-care-providers}
78
+
79
+ **Short answer.** No, for agreements entered into or renewed on or after August 6, 2025. Senate Bill 25-083 makes non-competes and customer non-solicits void for health-care providers — physicians, advanced practice registered nurses, certified midwives, and dentists — regardless of compensation [^sb25083-health-care-carveout][^sb25083-health-care-provider-definition].
80
+
81
+ The highly compensated worker exception no longer rescues a covenant that restricts the practice of medicine, advanced practice registered nursing, or dentistry, so these providers cannot be bound even if they earn well above the wage threshold [^sb25083-health-care-carveout].
82
+
83
+ Colorado previously allowed physician agreements to require liquidated damages tied to a competitive departure, even though an outright practice restraint was void. SB 25-083 removed that path for the listed providers and added patient-communication protections, so a covenant is void if it prevents a departing provider from telling patients about the provider's continuing practice, new contact information, or the patient's right to choose their provider [^sb25083-health-care-carveout][^sb25083-patient-communication].
84
+
85
+ > [!NOTE]
86
+ > **Practice note.**
87
+ >
88
+ > Do not rely on the older physician rule that allowed liquidated-damages clauses in place of a non-compete. For health-care providers under agreements entered into or renewed on or after August 6, 2025, the covenant is void regardless of compensation, and a clause restricting patient communications is separately void [^sb25083-health-care-carveout][^sb25083-patient-communication].
89
+
90
+ ## Are sale-of-business non-competes enforceable in Colorado, including for minority owners? {#sale-of-business}
91
+
92
+ **Short answer.** Yes, with a new cap for minority owners. A covenant tied to the purchase and sale of a business or its assets is a statutory exception, but for an owner who holds a minority share received as equity compensation, SB 25-083 caps the non-compete's duration by a formula [^crs-sale-of-business][^sb25083-minority-owner-formula].
93
+
94
+ The cap applies to a minority owner who received the ownership share as equity compensation or otherwise in connection with services rendered. For such an owner, the maximum duration in years equals the total consideration the owner received from the sale divided by the owner's average annualized cash compensation from the business over the preceding two years (or the owner's tenure, if shorter) [^sb25083-minority-owner-formula]. So a qualifying minority owner who received $50,000 from the sale and averaged $100,000 in annual compensation could be bound for at most half a year.
95
+
96
+ > [!CAUTION]
97
+ > **Drafting note.**
98
+ >
99
+ > Do not reuse a flat multi-year sale-of-business term for a minority owner who took equity as compensation for services. Calculate the maximum duration from the statutory ratio of sale consideration to average annual compensation, and size the covenant to that cap [^sb25083-minority-owner-formula].
100
+
101
+ ## Can a Colorado employer recover training costs through a repayment agreement (TRAP)? {#training-repayment}
102
+
103
+ **Short answer.** Only within strict limits. A training-repayment provision is permitted only when the training is distinct from normal on-the-job training and meets the attorney general's rules on transferability of the training or credential, and the recoverable amount is capped at reasonable costs that decrease over two years [^crs-traps].
104
+
105
+ If the employer overreaches, the attorney general can recover three times the amount of any recovery or attempted recovery on an unlawful training-repayment provision [^crs-traps-treble].
106
+
107
+ > [!NOTE]
108
+ > **Practice note.**
109
+ >
110
+ > Do not treat ordinary onboarding or routine skills training as recoverable. A Colorado training-repayment provision is enforceable only for training distinct from normal on-the-job training that satisfies the attorney general's transferability rules, and an unlawful attempt to recover exposes the employer to treble damages [^crs-traps][^crs-traps-treble].
111
+
112
+ ## Are confidentiality and nondisclosure covenants still allowed in Colorado? {#confidentiality-covenants}
113
+
114
+ **Short answer.** Yes. A reasonable confidentiality provision relevant to the employer's business is expressly permitted and is not treated as a void non-compete [^crs-confidentiality].
115
+
116
+ The carve-out has limits built in: a confidentiality provision cannot bar the worker from disclosing information that arises from the worker's general training, knowledge, skill, or experience, information readily ascertainable to the public, or information the worker has a right to disclose as legally protected conduct [^crs-confidentiality].
117
+
118
+ > [!CAUTION]
119
+ > **Drafting note.**
120
+ >
121
+ > Do not draft a confidentiality clause so broadly that it functions as a non-compete. Keep it to genuine confidential information and trade secrets, and preserve the worker's right to use general skills and knowledge and to make legally protected disclosures, or the clause risks being treated as a void restraint [^crs-confidentiality].
122
+
123
+ ## What are the penalties for presenting or enforcing a void Colorado non-compete? {#penalties}
124
+
125
+ **Short answer.** Significant. An employer that enters into, presents, or tries to enforce a void covenant is liable for actual damages plus a penalty of $5,000 per worker or prospective worker harmed, and faces enforcement by both private plaintiffs and the attorney general [^crs-prohibited-conduct][^crs-penalty].
126
+
127
+ A harmed worker can recover actual damages, reasonable costs, and attorney fees, and the attorney general can seek injunctive relief and penalties [^crs-penalty]. Separately, using force, threats, or intimidation to keep a person from a lawful occupation is a class 2 misdemeanor [^crs-misdemeanor].
128
+
129
+ > [!NOTE]
130
+ > **Practice note.**
131
+ >
132
+ > The penalty attaches to merely presenting a void covenant, not just to suing on one. Before asking a Colorado worker to sign, confirm the worker meets the compensation threshold, the covenant protects trade secrets, the worker is not a covered health-care provider, and the notice rule is satisfied — because an unlawful presentation alone can trigger the $5,000-per-worker penalty [^crs-prohibited-conduct][^crs-penalty].
133
+
134
+ ## Can another state's law or court govern a Colorado worker's non-compete? {#choice-of-law}
135
+
136
+ **Short answer.** No, for a Colorado-based worker. If the worker primarily resided and worked in Colorado at termination, Colorado law governs the covenant's enforceability and the worker cannot be required to litigate enforceability outside Colorado, regardless of any contrary contract clause [^crs-choice-of-law][^crs-venue].
137
+
138
+ This forecloses the common strategy of using a Delaware or New York choice-of-law clause and an out-of-state forum to escape Colorado's limits for a Colorado employee [^crs-choice-of-law].
139
+
140
+ ## Is continued at-will employment enough consideration for a Colorado non-compete? {#continued-employment-consideration}
141
+
142
+ **Short answer.** Yes. Under *Lucht's Concrete Pumping, Inc. v. Horner*, an employer that forbears from terminating an existing at-will employee gives adequate consideration for a non-compete signed after employment begins [^luchts-continued-employment].
143
+
144
+ That common-law rule survives the statute, but it now operates alongside the procedural rules: for a current worker, the employer still must give the separate fourteen-day notice before the covenant or its consideration takes effect [^luchts-continued-employment][^crs-consideration-notice].
145
+
146
+ ## Will a Colorado court blue-pencil or narrow an overbroad non-compete? {#court-narrowing}
147
+
148
+ **Short answer.** Do not count on it. Colorado courts have discretion to blue-pencil an overbroad covenant but are not required to, and parties cannot contractually force a court to rewrite one [^twentythree-ltd-discretion][^twentythree-ltd-no-contractual-compulsion].
149
+
150
+ In *23 LTD v. Herman*, the court explained that it is not a court's function to rewrite a contract to enable enforcement of terms that violate Colorado public policy, and a severability clause cannot compel the court to do so [^twentythree-ltd-no-rewrite][^twentythree-ltd-no-contractual-compulsion]. The risk is compounded by the penalty regime: because merely presenting a void covenant is unlawful, an employer cannot safely assume a court will trim an overbroad covenant into a lawful one [^crs-present-void-narrowing].
151
+
152
+ > [!CAUTION]
153
+ > **Drafting note.**
154
+ >
155
+ > Draft scope, duration, and geography to the minimum the trade-secret interest actually requires, and use separable tiers rather than an aggressive savings clause. A Colorado court may decline to narrow an overbroad covenant, and presenting a void covenant carries its own penalty [^twentythree-ltd-no-rewrite][^crs-present-void-narrowing].
156
+
157
+ ## Are employee non-solicitation (no-hire) clauses enforceable in Colorado? {#employee-nonsolicitation}
158
+
159
+ **Short answer.** Unsettled, but better supported than customer non-solicits. The statute pegs customer non-solicits to the 60% threshold but is silent on agreements not to solicit a former employer's employees, and *Phoenix Capital, Inc. v. Dowell* treated an employee non-solicit as a lesser restraint that can survive even when the non-compete is invalid [^phoenix-employee-nonsolicit][^phoenix-livelihood-distinction].
160
+
161
+ *Phoenix* reasoned that, unlike a customer non-solicit, an agreement not to solicit a former employer's employees does not impair the worker's own ability to make a living, so it can be enforceable despite an invalid non-compete [^phoenix-livelihood-distinction][^phoenix-conclusion-distinction].
162
+
163
+ > [!NOTE]
164
+ > **Practice note.**
165
+ >
166
+ > *Phoenix* predates the 2022 overhaul and the attorney general's active scrutiny of no-poach practices. Treat an overbroad employee no-hire clause as a litigation risk if it functions as a de facto restraint on worker mobility, and keep it limited to active solicitation tied to a legitimate interest [^phoenix-employee-nonsolicit][^crs-customer-nonsolicit-silence].
167
+
168
+ ## Does a Colorado non-compete toll or extend during breach or litigation? {#tolling-extension}
169
+
170
+ **Short answer.** This is an open Colorado question, and the statute's structure cuts against automatic extension. No Colorado statute or appellate decision endorses automatically tolling or extending the restricted period during a breach or while litigation is pending [^phoenix-no-extension][^crs-enforced-time].
171
+
172
+ The best Colorado authority points toward caution. In *Phoenix Capital, Inc. v. Dowell*, the court found no error in refusing to extend a preliminary injunction beyond the one-year term the parties had specified [^phoenix-no-extension]. And the statute requires the worker to meet the compensation threshold both when the covenant is entered into and when it is enforced, so a covenant whose enforcement is pushed later must still satisfy the statute at that later time [^crs-enforced-time].
173
+
174
+ > [!NOTE]
175
+ > **Practice note.**
176
+ >
177
+ > Open question: Colorado law is unsettled on whether an extension-on-breach clause is enforceable after the stated restricted period runs. Do not assume a court will toll or extend an expired Colorado covenant, and remember that a covenant must still meet the statutory threshold at the time of enforcement [^phoenix-no-extension][^crs-enforced-time].
178
+
179
+ ## What are the key recent developments in Colorado non-compete law? {#recent-developments}
180
+
181
+ **Short answer.** Colorado has tightened its non-compete law in four steps since 2022, moving from a title-based exception regime to objective wage thresholds, then to training-repayment and health-care restrictions [^dev-misdemeanor][^dev-hb22-1317][^dev-hb24-1324][^dev-sb25-083].
182
+
183
+ -
184
+ -
185
+ -
186
+ -
187
+
188
+ > [!NOTE]
189
+ > **Practice note.**
190
+ >
191
+ > Because the wage thresholds reset every year and the health-care and minority-owner rules apply to agreements entered into or renewed on or after their effective dates, recheck the current C.R.S. § 8-2-113 text and the latest PAY CALC Order before relying on a Colorado covenant or updating a form [^dev-sb25-083][^ebg-recent-thresholds].
192
+
193
+ [^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 Colorado. This article synthesizes Colorado primary law and is not legal advice from a Colorado-admitted attorney. This article is for informational purposes only and does not create an attorney-client relationship.
194
+
195
+ [^crs-void-rule]: **C.R.S. § 8-2-113** — "Except as provided in subsections (2)(b) and (3) of this section, any covenant not to compete that restricts the right of any person to receive compensation for performance of labor for any employer is void." *C.R.S. § 8-2-113(2)(a).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
196
+
197
+ [^crs-training-exception]: **C.R.S. § 8-2-113** — "A provision providing for an employer's recovery of the expense of educating and training a worker where the training is distinct from normal, on-the-job training and satisfies any other requirements established by the attorney general, by rule, regarding the transferability of the training or credentialing that is available to the employee as a result of the training." *C.R.S. § 8-2-113(3)(a).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
198
+
199
+ [^phoenix-employer-burden]: **Phoenix Capital, Inc. v. Dowell** — "In the preliminary injunction context, the employer has the burden to establish that the covenant not to compete falls within one of those narrow exceptions." *Phoenix Capital, Inc. v. Dowell, 176 P.3d 835 (Colo. App. 2007).* <https://www.courtlistener.com/opinion/2633761/phoenix-capital-inc-v-dowell/#:~:text=In%20the%20preliminary%20injunction%20context%2C,one%20of%20those%20narrow%20exceptions.>
200
+
201
+ [^crs-hcw-exception]: **C.R.S. § 8-2-113** — "This subsection (2) does not apply to a covenant not to compete governing a person who, at the time the covenant not to compete is entered into and at the time it is enforced, earns an amount of annualized cash compensation equivalent to or greater than the threshold amount for highly compensated workers, if the covenant not to compete is for the protection of trade secrets and is no broader than is reasonably necessary to protect the employer's legitimate interest in protecting trade secrets." *C.R.S. § 8-2-113(2)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
202
+
203
+ [^crs-hcw-threshold]: **C.R.S. § 8-2-113** — "This subsection (2) does not apply to a covenant not to compete governing a person who, at the time the covenant not to compete is entered into and at the time it is enforced, earns an amount of annualized cash compensation equivalent to or greater than the threshold amount for highly compensated workers, if the covenant not to compete is for the protection of trade secrets and is no broader than is reasonably necessary to protect the employer's legitimate interest in protecting trade secrets." *C.R.S. § 8-2-113(2)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
204
+
205
+ [^crs-customer-nonsolicit-threshold]: **C.R.S. § 8-2-113** — "This subsection (2) does not apply to a covenant not to solicit customers governing a person who, at the time the covenant is entered into and at the time it is enforced, earns an amount of annualized cash compensation equivalent to or greater than sixty percent of the threshold amount for highly compensated workers if the nonsolicitation covenant is no broader than reasonably necessary to protect the employer's legitimate interest in protecting trade secrets." *C.R.S. § 8-2-113(2)(d).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
206
+
207
+ [^paycalc-hcw-threshold]: **2026 PAY CALC Order, 7 CCR 1103-14** — "Highly compensated employees (R. 2.2.11) $130,014 annually, and the EAP salary (row E) weekly" *2026 PAY CALC Order, 7 CCR 1103-14, Rule 1.2.1(G) (eff. Feb. 1, 2026).* <https://www.sos.state.co.us/CCR/GenerateRulePdf.do?ruleVersionId=12310&fileName=7+CCR+1103-14>
208
+
209
+ [^ebg-2026-thresholds]: **Raising the Cost of Noncompetes: 2026 State Noncompete Salary Threshold Changes** — "Effective January 1, 2026, the threshold amount for highly compensated workers is $130,014. Furthermore, an employer cannot subject an employee to a non-solicitation provision where an employee earns less than 60% of the threshold amount for highly compensated workers. Colorado’s 2026 non-solicitation salary threshold is $78,008.40." *Epstein Becker Green, Raising the Cost of Noncompetes: 2026 State Noncompete Salary Threshold Changes (Dec. 10, 2025).* <https://www.tradesecretsandemployeemobility.com/raising-the-cost-of-noncompetes-2026-state-noncompete-salary-threshold-changes>
210
+
211
+ [^crs-threshold-execution-year]: **C.R.S. § 8-2-113** — "‘Threshold amount for highly compensated workers’ means the greater of the threshold amount for highly compensated workers as determined by the division of labor standards and statistics in the department of labor and employment: (A) As of August 10, 2022; or (B) At the time the covenant not to compete is executed by the parties." *C.R.S. § 8-2-113(2)(c)(II).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
212
+
213
+ [^threshold-health-care-exclusion]: **S.B. 25-083 (Limitations on Restrictive Employment Agreements)** — "EXCEPT FOR A COVENANT NOT TO COMPETE THAT RESTRICTS THE PRACTICE OF MEDICINE, THE PRACTICE OF ADVANCED PRACTICE REGISTERED NURSING, OR THE PRACTICE OF DENTISTRY IN THIS STATE, this subsection (2) does not apply to a covenant not to solicit customers" *S.B. 25-083, 75th Gen. Assemb., Reg. Sess. (Colo. 2025) (amending C.R.S. § 8-2-113(2)(d)).* <https://leg.colorado.gov/bills/sb25-083>
214
+
215
+ [^crs-notice-timing]: **C.R.S. § 8-2-113** — "A current worker at least fourteen days before the earlier of: (A) The effective date of the covenant; or (B) The effective date of any additional compensation or change in the terms or conditions of employment that provides consideration for the covenant." *C.R.S. § 8-2-113(4)(a)(II).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
216
+
217
+ [^crs-notice-separate-document]: **C.R.S. § 8-2-113** — "An employer shall provide the notice required in subsection (4)(a) of this section in a separate document from any other covenants between the worker and employer and in clear and conspicuous terms in the language in which the worker and employer communicate about the worker's performance. The notice must be signed by the worker." *C.R.S. § 8-2-113(4)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
218
+
219
+ [^sb25083-health-care-carveout]: **S.B. 25-083 (Limitations on Restrictive Employment Agreements)** — "EXCEPT FOR A COVENANT NOT TO COMPETE THAT RESTRICTS THE PRACTICE OF MEDICINE, THE PRACTICE OF ADVANCED PRACTICE REGISTERED NURSING, OR THE PRACTICE OF DENTISTRY IN THIS STATE, this subsection (2) does not apply to a covenant not to compete" *S.B. 25-083, 75th Gen. Assemb., Reg. Sess. (Colo. 2025) (amending C.R.S. § 8-2-113(2)(b)).* <https://leg.colorado.gov/bills/sb25-083>
220
+
221
+ [^sb25083-health-care-provider-definition]: **S.B. 25-083 (Limitations on Restrictive Employment Agreements)** — "‘HEALTH-CARE PROVIDER’ MEANS AN INDIVIDUAL LICENSED TO ENGAGE IN THE PRACTICE OF MEDICINE, REGISTERED TO ENGAGE IN THE PRACTICE OF ADVANCED PRACTICE REGISTERED NURSING, LICENSED TO PRACTICE AS A CERTIFIED MIDWIFE, OR LICENSED TO ENGAGE IN THE PRACTICE OF DENTISTRY." *S.B. 25-083, 75th Gen. Assemb., Reg. Sess. (Colo. 2025) (adding C.R.S. § 8-2-113(2)(c)(I.3)).* <https://leg.colorado.gov/bills/sb25-083>
222
+
223
+ [^sb25083-patient-communication]: **S.B. 25-083 (Limitations on Restrictive Employment Agreements)** — "(a) THE HEALTH-CARE PROVIDER'S CONTINUING PRACTICE OF MEDICINE; (b) THE HEALTH-CARE PROVIDER'S NEW PROFESSIONAL CONTACT INFORMATION; OR (c) THE PATIENT'S RIGHT TO CHOOSE A HEALTH-CARE PROVIDER." *S.B. 25-083, 75th Gen. Assemb., Reg. Sess. (Colo. 2025) (adding C.R.S. § 8-2-113(5.5)).* <https://leg.colorado.gov/bills/sb25-083>
224
+
225
+ [^crs-sale-of-business]: **C.R.S. § 8-2-113** — "A covenant for the purchase and sale of a business or the assets of a business" *C.R.S. § 8-2-113(3)(c).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
226
+
227
+ [^sb25083-minority-owner-formula]: **S.B. 25-083 (Limitations on Restrictive Employment Agreements)** — "THE DURATION IN YEARS OF A COVENANT NOT TO COMPETE DESCRIBED IN THIS SUBSECTION (3)(c) MUST NOT EXCEED A NUMBER CALCULATED BY THE TOTAL CONSIDERATION RECEIVED BY THE INDIVIDUAL FROM THE SALE DIVIDED BY THE AVERAGE ANNUALIZED CASH COMPENSATION RECEIVED BY THE INDIVIDUAL FROM THE BUSINESS, INCLUDING INCOME RECEIVED ON ACCOUNT OF THEIR OWNERSHIP INTEREST DURING THE PRECEDING TWO YEARS OR DURING THE PERIOD OF TIME THAT THE INDIVIDUAL WAS AFFILIATED WITH THE BUSINESS, WHICHEVER PERIOD OF TIME IS SHORTER." *S.B. 25-083, 75th Gen. Assemb., Reg. Sess. (Colo. 2025) (amending C.R.S. § 8-2-113(3)(c)).* <https://leg.colorado.gov/bills/sb25-083>
228
+
229
+ [^crs-traps]: **C.R.S. § 8-2-113** — "A provision providing for an employer's recovery of the expense of educating and training a worker where the training is distinct from normal, on-the-job training and satisfies any other requirements established by the attorney general, by rule, regarding the transferability of the training or credentialing that is available to the employee as a result of the training. The employer's recovery is limited to the reasonable costs of the training and decreases over the course of the two years subsequent to the training" *C.R.S. § 8-2-113(3)(a).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
230
+
231
+ [^crs-traps-treble]: **C.R.S. § 8-2-113** — "The attorney general may recover three times the amount of any recovery or attempted recovery by an employer in violation of subsection (3)(a) of this section." *C.R.S. § 8-2-113(8)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
232
+
233
+ [^crs-confidentiality]: **C.R.S. § 8-2-113** — "A reasonable confidentiality provision relevant to the employer's business that does not prohibit disclosure of information that arises from the worker's general training, knowledge, skill, or experience, whether gained on the job or otherwise, information that is readily ascertainable to the public, or information that a worker otherwise has a right to disclose as legally protected conduct" *C.R.S. § 8-2-113(3)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
234
+
235
+ [^crs-prohibited-conduct]: **C.R.S. § 8-2-113** — "An employer shall not enter into, present to a worker or prospective worker as a term of employment, or attempt to enforce any covenant that is void under this section." *C.R.S. § 8-2-113(8)(a).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
236
+
237
+ [^crs-penalty]: **C.R.S. § 8-2-113** — "An employer that violates subsection (8)(a) of this section is liable for actual damages and a penalty of five thousand dollars per worker or prospective worker harmed by the conduct." *C.R.S. § 8-2-113(8)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
238
+
239
+ [^crs-misdemeanor]: **C.R.S. § 8-2-113** — "It is unlawful to use force, threats, or other means of intimidation to prevent any person from engaging in any lawful occupation at any place the person sees fit." *C.R.S. § 8-2-113(1.5)(a).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
240
+
241
+ [^crs-choice-of-law]: **C.R.S. § 8-2-113** — "Notwithstanding any contractual provision to the contrary, Colorado law governs the enforceability of a covenant not to compete for a worker who, at the time of termination of employment, primarily resided and worked in Colorado." *C.R.S. § 8-2-113(6).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
242
+
243
+ [^crs-venue]: **C.R.S. § 8-2-113** — "A covenant not to compete that applies to a worker who, at the time of termination of employment, primarily resided or worked in Colorado may not require the worker to adjudicate the enforceability of the covenant outside of Colorado." *C.R.S. § 8-2-113(6).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
244
+
245
+ [^luchts-continued-employment]: **Lucht's Concrete Pumping, Inc. v. Horner** — "We hold that an employer that forbears from terminating an existing at-will employee forbears from exercising a legal right, and that therefore such forbearance constitutes adequate consideration for a noncompetition agreement" *Lucht's Concrete Pumping, Inc. v. Horner, 255 P.3d 1058 (Colo. 2011).* <https://www.courtlistener.com/opinion/2454091/luchts-concrete-pumping-inc-v-horner/#:~:text=We%20hold%20that%20an%20employer,consideration%20for%20a%20noncompetition%20agreement>
246
+
247
+ [^crs-consideration-notice]: **C.R.S. § 8-2-113** — "A current worker at least fourteen days before the earlier of: (A) The effective date of the covenant; or (B) The effective date of any additional compensation or change in the terms or conditions of employment that provides consideration for the covenant." *C.R.S. § 8-2-113(4)(a)(II).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
248
+
249
+ [^twentythree-ltd-discretion]: **23 LTD v. Herman** — "they have made clear that trial courts have the discretion to blue pencil unenforceable noncompete provisions, at least to some extent." *23 LTD v. Herman, 2019 COA 113.* <https://www.courtlistener.com/opinion/4644233/23-ltd-v-herman/#:~:text=they%20have%20made%20clear%20that,at%20least%20to%20some%20extent.>
250
+
251
+ [^twentythree-ltd-no-contractual-compulsion]: **23 LTD v. Herman** — "Thus, parties to an employment or noncompete agreement cannot contractually obligate a court to blue pencil noncompete provisions that it determines are unreasonable." *23 LTD v. Herman, 2019 COA 113.* <https://www.courtlistener.com/opinion/4644233/23-ltd-v-herman/#:~:text=Thus%2C%20parties%20to%20an%20employment,that%20it%20determines%20are%20unreasonable.>
252
+
253
+ [^twentythree-ltd-no-rewrite]: **23 LTD v. Herman** — "It is not the function of a court to write or rewrite contracts for parties to enable enforcement of a contract that, as written, violates the public policy of the state." *23 LTD v. Herman, 2019 COA 113.* <https://www.courtlistener.com/opinion/4644233/23-ltd-v-herman/#:~:text=It%20is%20not%20the%20function,public%20policy%20of%20the%20state.>
254
+
255
+ [^crs-present-void-narrowing]: **C.R.S. § 8-2-113** — "An employer shall not enter into, present to a worker or prospective worker as a term of employment, or attempt to enforce any covenant that is void under this section." *C.R.S. § 8-2-113(8)(a).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
256
+
257
+ [^phoenix-employee-nonsolicit]: **Phoenix Capital, Inc. v. Dowell** — "Where a nonsolicitation provision is limited to prohibiting only initiating contacts or ‘active’ solicitation of the employer's employees, it is enforceable, despite the invalidity of an accompanying noncompetition provision." *Phoenix Capital, Inc. v. Dowell, 176 P.3d 835 (Colo. App. 2007).* <https://www.courtlistener.com/opinion/2633761/phoenix-capital-inc-v-dowell/#:~:text=Where%20a%20nonsolicitation%20provision%20is,of%20an%20accompanying%20noncompetition%20provision.>
258
+
259
+ [^phoenix-livelihood-distinction]: **Phoenix Capital, Inc. v. Dowell** — "In contrast, an agreement not to solicit employees would not impair the former employee's ability to make a living." *Phoenix Capital, Inc. v. Dowell, 176 P.3d 835 (Colo. App. 2007).* <https://www.courtlistener.com/opinion/2633761/phoenix-capital-inc-v-dowell/#:~:text=In%20contrast%2C%20an%20agreement%20not,ability%20to%20make%20a%20living.>
260
+
261
+ [^phoenix-conclusion-distinction]: **Phoenix Capital, Inc. v. Dowell** — "We conclude that, although the invalidity of the noncompetition provision did not render invalid Dowell's agreement not to solicit Phoenix's employees, it rendered invalid Dowell's agreement not to solicit Phoenix's customers." *Phoenix Capital, Inc. v. Dowell, 176 P.3d 835 (Colo. App. 2007).* <https://www.courtlistener.com/opinion/2633761/phoenix-capital-inc-v-dowell/#:~:text=We%20conclude%20that%2C%20although%20the,not%20to%20solicit%20Phoenix's%20customers.>
262
+
263
+ [^crs-customer-nonsolicit-silence]: **C.R.S. § 8-2-113** — "This subsection (2) does not apply to a covenant not to solicit customers governing a person who, at the time the covenant is entered into and at the time it is enforced, earns an amount of annualized cash compensation equivalent to or greater than sixty percent of the threshold amount for highly compensated workers if the nonsolicitation covenant is no broader than reasonably necessary to protect the employer's legitimate interest in protecting trade secrets." *C.R.S. § 8-2-113(2)(d).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
264
+
265
+ [^phoenix-no-extension]: **Phoenix Capital, Inc. v. Dowell** — "Consequently, we discern no error in the trial court's refusing to extend the terms of the preliminary injunction beyond the one-year term specified in the parties' agreement." *Phoenix Capital, Inc. v. Dowell, 176 P.3d 835 (Colo. App. 2007).* <https://www.courtlistener.com/opinion/2633761/phoenix-capital-inc-v-dowell/#:~:text=Consequently%2C%20we%20discern%20no%20error,specified%20in%20the%20parties'%20agreement.>
266
+
267
+ [^crs-enforced-time]: **C.R.S. § 8-2-113** — "This subsection (2) does not apply to a covenant not to compete governing a person who, at the time the covenant not to compete is entered into and at the time it is enforced, earns an amount of annualized cash compensation equivalent to or greater than the threshold amount for highly compensated workers" *C.R.S. § 8-2-113(2)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
268
+
269
+ [^dev-misdemeanor]: **C.R.S. § 8-2-113** — "A person who violates this subsection (1.5) commits a class 2 misdemeanor, as defined in section 18-1.3-501." *C.R.S. § 8-2-113(1.5)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
270
+
271
+ [^dev-hb22-1317]: **C.R.S. § 8-2-113** — "An employer that violates subsection (8)(a) of this section is liable for actual damages and a penalty of five thousand dollars per worker or prospective worker harmed by the conduct." *C.R.S. § 8-2-113(8)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
272
+
273
+ [^dev-hb24-1324]: **C.R.S. § 8-2-113** — "The attorney general may recover three times the amount of any recovery or attempted recovery by an employer in violation of subsection (3)(a) of this section." *C.R.S. § 8-2-113(8)(b).* <https://content.leg.colorado.gov/sites/default/files/images/olls/crs2024-title-08.pdf>
274
+
275
+ [^dev-sb25-083]: **S.B. 25-083 (Limitations on Restrictive Employment Agreements)** — "EXCEPT FOR A COVENANT NOT TO COMPETE THAT RESTRICTS THE PRACTICE OF MEDICINE, THE PRACTICE OF ADVANCED PRACTICE REGISTERED NURSING, OR THE PRACTICE OF DENTISTRY IN THIS STATE, this subsection (2) does not apply to a covenant not to compete" *S.B. 25-083, 75th Gen. Assemb., Reg. Sess. (Colo. 2025) (amending C.R.S. § 8-2-113(2)(b)).* <https://leg.colorado.gov/bills/sb25-083>
276
+
277
+ [^ebg-recent-thresholds]: **Raising the Cost of Noncompetes: 2026 State Noncompete Salary Threshold Changes** — "Effective January 1, 2026, the threshold amount for highly compensated workers is $130,014." *Epstein Becker Green, Raising the Cost of Noncompetes: 2026 State Noncompete Salary Threshold Changes (Dec. 10, 2025).* <https://www.tradesecretsandemployeemobility.com/raising-the-cost-of-noncompetes-2026-state-noncompete-salary-threshold-changes>