llm-slop-detector 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +66 -0
- package/LICENSE +21 -0
- package/README.md +429 -0
- package/THIRD_PARTY_NOTICES.md +310 -0
- package/builtin-packs/academic.json +105 -0
- package/builtin-packs/claudeisms.json +47 -0
- package/builtin-packs/cliches.json +57 -0
- package/builtin-packs/fiction.json +88 -0
- package/builtin-packs/security.json +359 -0
- package/builtin-packs/structural.json +31 -0
- package/builtin-rules.json +84 -0
- package/out/cli.js +421 -0
- package/out/core/comments.js +179 -0
- package/out/core/ignore.js +147 -0
- package/out/core/rules.js +301 -0
- package/out/core/scan.js +321 -0
- package/out/core/types.js +10 -0
- package/out/extension.js +607 -0
- package/out/mcp.js +265 -0
- package/out/rules.js +46 -0
- package/package.json +228 -0
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
LLM Slop Detector's optional rule packs in `builtin-packs/` include content
|
|
4
|
+
derived from the projects listed below. The core rule list
|
|
5
|
+
(`builtin-rules.json`) contains no third-party content.
|
|
6
|
+
|
|
7
|
+
Each pack is opt-in via the `llmSlopDetector.enabledPacks` setting. If you
|
|
8
|
+
enable a pack, the notices for its sources apply to the redistributed content.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## builtin-packs/academic.json
|
|
13
|
+
|
|
14
|
+
Derived from **llm-excess-vocab** by Dmitry Kobak and Rita Gonzalez-Marquez.
|
|
15
|
+
|
|
16
|
+
- Source: https://github.com/berenslab/llm-excess-vocab
|
|
17
|
+
- License: MIT
|
|
18
|
+
- Copyright (c) 2024 Dmitry Kobak, Rita Gonzalez-Marquez
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
MIT License
|
|
22
|
+
|
|
23
|
+
Copyright (c) 2024 Dmitry Kobak, Rita Gonzalez-Marquez
|
|
24
|
+
|
|
25
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
26
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
27
|
+
in the Software without restriction, including without limitation the rights
|
|
28
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
29
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
30
|
+
furnished to do so, subject to the following conditions:
|
|
31
|
+
|
|
32
|
+
The above copyright notice and this permission notice shall be included in all
|
|
33
|
+
copies or substantial portions of the Software.
|
|
34
|
+
|
|
35
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
36
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
37
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
38
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
39
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
40
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
41
|
+
SOFTWARE.
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Note: the academic pack uses the `type=style` subset of `excess_words.csv`,
|
|
45
|
+
curated down to words whose slop signal is strong enough to flag outside
|
|
46
|
+
biomedical writing. Regex lemma groupings, severities, and rule reasons are
|
|
47
|
+
our own additions.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## builtin-packs/cliches.json
|
|
52
|
+
|
|
53
|
+
Derived from **llm-cliches** by Nan Xiao.
|
|
54
|
+
|
|
55
|
+
- Source: https://github.com/nanxstats/llm-cliches
|
|
56
|
+
- License: MIT
|
|
57
|
+
- Copyright (c) 2025 Nan Xiao
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
MIT License
|
|
61
|
+
|
|
62
|
+
Copyright (c) 2025 Nan Xiao
|
|
63
|
+
|
|
64
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
65
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
66
|
+
in the Software without restriction, including without limitation the rights
|
|
67
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
68
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
69
|
+
furnished to do so, subject to the following conditions:
|
|
70
|
+
|
|
71
|
+
The above copyright notice and this permission notice shall be included in all
|
|
72
|
+
copies or substantial portions of the Software.
|
|
73
|
+
|
|
74
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
75
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
76
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
77
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
78
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
79
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
80
|
+
SOFTWARE.
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Note: entries that overlapped with the core list or the academic pack were
|
|
84
|
+
dropped to avoid duplicate diagnostics. Remaining entries were rewritten as
|
|
85
|
+
regex patterns with word boundaries.
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## builtin-packs/fiction.json and builtin-packs/claudeisms.json
|
|
90
|
+
|
|
91
|
+
Derived from **SLOP_Detector** by SicariusSicariiStuff.
|
|
92
|
+
|
|
93
|
+
- Source: https://github.com/SicariusSicariiStuff/SLOP_Detector
|
|
94
|
+
- License: Apache License, Version 2.0
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
Apache License
|
|
98
|
+
Version 2.0, January 2004
|
|
99
|
+
http://www.apache.org/licenses/
|
|
100
|
+
|
|
101
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
102
|
+
|
|
103
|
+
1. Definitions.
|
|
104
|
+
|
|
105
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
106
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
107
|
+
|
|
108
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
109
|
+
the copyright owner that is granting the License.
|
|
110
|
+
|
|
111
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
112
|
+
other entities that control, are controlled by, or are under common
|
|
113
|
+
control with that entity. For the purposes of this definition,
|
|
114
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
115
|
+
direction or management of such entity, whether by contract or
|
|
116
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
117
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
118
|
+
|
|
119
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
120
|
+
exercising permissions granted by this License.
|
|
121
|
+
|
|
122
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
123
|
+
including but not limited to software source code, documentation
|
|
124
|
+
source, and configuration files.
|
|
125
|
+
|
|
126
|
+
"Object" form shall mean any form resulting from mechanical
|
|
127
|
+
transformation or translation of a Source form, including but
|
|
128
|
+
not limited to compiled object code, generated documentation,
|
|
129
|
+
and conversions to other media types.
|
|
130
|
+
|
|
131
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
132
|
+
Object form, made available under the License, as indicated by a
|
|
133
|
+
copyright notice that is included in or attached to the work
|
|
134
|
+
(an example is provided in the Appendix below).
|
|
135
|
+
|
|
136
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
137
|
+
form, that is based on (or derived from) the Work and for which the
|
|
138
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
139
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
140
|
+
of this License, Derivative Works shall not include works that remain
|
|
141
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
142
|
+
the Work and Derivative Works thereof.
|
|
143
|
+
|
|
144
|
+
"Contribution" shall mean any work of authorship, including
|
|
145
|
+
the original version of the Work and any modifications or additions
|
|
146
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
147
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
148
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
149
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
150
|
+
means any form of electronic, verbal, or written communication sent
|
|
151
|
+
to the Licensor or its representatives, including but not limited to
|
|
152
|
+
communication on electronic mailing lists, source code control systems,
|
|
153
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
154
|
+
Licensor for the purpose of tracking or improving the Work, but
|
|
155
|
+
excluding communication that is conspicuously marked or otherwise
|
|
156
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
157
|
+
|
|
158
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
159
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
160
|
+
subsequently incorporated within the Work.
|
|
161
|
+
|
|
162
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
163
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
164
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
165
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
166
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
167
|
+
Work and such Derivative Works in Source or Object form.
|
|
168
|
+
|
|
169
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
170
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
171
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
172
|
+
(except as stated in this section) patent license to make, have made,
|
|
173
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
174
|
+
where such license applies only to those patent claims licensable
|
|
175
|
+
by such Contributor that are necessarily infringed by their
|
|
176
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
177
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
178
|
+
institute patent litigation against any entity (including a
|
|
179
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
180
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
181
|
+
or contributory patent infringement, then any patent licenses
|
|
182
|
+
granted to You under this License for that Work shall terminate
|
|
183
|
+
as of the date such litigation is filed.
|
|
184
|
+
|
|
185
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
186
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
187
|
+
modifications, and in Source or Object form, provided that You
|
|
188
|
+
meet the following conditions:
|
|
189
|
+
|
|
190
|
+
(a) You must give any other recipients of the Work or
|
|
191
|
+
Derivative Works a copy of this License; and
|
|
192
|
+
|
|
193
|
+
(b) You must cause any modified files to carry prominent notices
|
|
194
|
+
stating that You changed the files; and
|
|
195
|
+
|
|
196
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
197
|
+
that You distribute, all copyright, patent, trademark, and
|
|
198
|
+
attribution notices from the Source form of the Work,
|
|
199
|
+
excluding those notices that do not pertain to any part of
|
|
200
|
+
the Derivative Works; and
|
|
201
|
+
|
|
202
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
203
|
+
distribution, then any Derivative Works that You distribute must
|
|
204
|
+
include a readable copy of the attribution notices contained
|
|
205
|
+
within such NOTICE file, excluding those notices that do not
|
|
206
|
+
pertain to any part of the Derivative Works, in at least one
|
|
207
|
+
of the following places: within a NOTICE text file distributed
|
|
208
|
+
as part of the Derivative Works; within the Source form or
|
|
209
|
+
documentation, if provided along with the Derivative Works; or,
|
|
210
|
+
within a display generated by the Derivative Works, if and
|
|
211
|
+
wherever such third-party notices normally appear. The contents
|
|
212
|
+
of the NOTICE file are for informational purposes only and
|
|
213
|
+
do not modify the License. You may add Your own attribution
|
|
214
|
+
notices within Derivative Works that You distribute, alongside
|
|
215
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
216
|
+
that such additional attribution notices cannot be construed
|
|
217
|
+
as modifying the License.
|
|
218
|
+
|
|
219
|
+
You may add Your own copyright statement to Your modifications and
|
|
220
|
+
may provide additional or different license terms and conditions
|
|
221
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
222
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
223
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
224
|
+
the conditions stated in this License.
|
|
225
|
+
|
|
226
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
227
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
228
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
229
|
+
this License, without any additional terms or conditions.
|
|
230
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
231
|
+
the terms of any separate license agreement you may have executed
|
|
232
|
+
with Licensor regarding such Contributions.
|
|
233
|
+
|
|
234
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
235
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
236
|
+
except as required for describing the origin of the Work and
|
|
237
|
+
reproducing the content of the NOTICE file.
|
|
238
|
+
|
|
239
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
240
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
241
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
242
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
243
|
+
implied, including, without limitation, any warranties or conditions
|
|
244
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
245
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
246
|
+
appropriateness of using or redistributing the Work and assume any
|
|
247
|
+
risks associated with Your exercise of permissions under this License.
|
|
248
|
+
|
|
249
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
250
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
251
|
+
unless required by applicable law (such as deliberate and grossly
|
|
252
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
253
|
+
liable to You for damages, including any direct, indirect, special,
|
|
254
|
+
incidental, or consequential damages of any character arising as a
|
|
255
|
+
result of this License or out of the use or inability to use the
|
|
256
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
257
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
258
|
+
other commercial damages or losses), even if such Contributor
|
|
259
|
+
has been advised of the possibility of such damages.
|
|
260
|
+
|
|
261
|
+
9. Accepting Warranty or Support. While redistributing the Work or
|
|
262
|
+
Derivative Works thereof, You may choose to offer, and charge a
|
|
263
|
+
fee for, acceptance of support, warranty, indemnity, or other
|
|
264
|
+
liability obligations and/or rights consistent with this License.
|
|
265
|
+
However, in accepting such obligations, You may act only on Your
|
|
266
|
+
own behalf and on Your sole responsibility, not on behalf of any
|
|
267
|
+
other Contributor, and only if You agree to indemnify, defend,
|
|
268
|
+
and hold each Contributor harmless for any liability incurred by,
|
|
269
|
+
or claims asserted against, such Contributor by reason of your
|
|
270
|
+
accepting any such warranty or support.
|
|
271
|
+
|
|
272
|
+
END OF TERMS AND CONDITIONS
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
Changes from the original `SLOP.yml`:
|
|
276
|
+
|
|
277
|
+
- Extracted only a curated subset of entries relevant to general fiction
|
|
278
|
+
and Claude-specific mannerisms; most ultra-specific anatomical NSFW
|
|
279
|
+
entries were omitted.
|
|
280
|
+
- Rewrote lookaround patterns with `\b` word boundaries where semantically
|
|
281
|
+
equivalent, to keep the rule file easy to read.
|
|
282
|
+
- Added rule reasons, severities, and pack metadata. These additions are
|
|
283
|
+
Copyright (c) 2026 Mathias Axell and are licensed under MIT as part of
|
|
284
|
+
this project.
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Read-only references (not included in any pack)
|
|
289
|
+
|
|
290
|
+
The following sources were consulted for general context but no content was
|
|
291
|
+
copied. They are listed for transparency.
|
|
292
|
+
|
|
293
|
+
- **Wikipedia: Signs of AI writing**
|
|
294
|
+
https://en.wikipedia.org/wiki/Wikipedia:Signs_of_AI_writing
|
|
295
|
+
CC BY-SA 4.0. Not included due to license incompatibility with this
|
|
296
|
+
project's MIT license.
|
|
297
|
+
|
|
298
|
+
- **NousResearch/autonovel -- ANTI-SLOP.md**
|
|
299
|
+
https://github.com/NousResearch/autonovel
|
|
300
|
+
No LICENSE file at time of writing. Default "all rights reserved" applies,
|
|
301
|
+
so no content was copied.
|
|
302
|
+
|
|
303
|
+
- **Juzek & Ward -- "Why Does ChatGPT 'Delve' So Much?" (COLING 2025)**
|
|
304
|
+
https://aclanthology.org/2025.coling-main.426/
|
|
305
|
+
Word list overlaps entirely with llm-excess-vocab; no separate import.
|
|
306
|
+
|
|
307
|
+
- **sam-paech/antislop-sampler -- slop_phrase_prob_adjustments.json**
|
|
308
|
+
https://github.com/sam-paech/antislop-sampler
|
|
309
|
+
Apache-2.0. Not currently imported; would require a separate attribution
|
|
310
|
+
block if used in a future pack.
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pack:academic",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Words over-represented in LLM-authored academic writing. Severity defaults to hint since many are legitimate in careful prose.",
|
|
5
|
+
"credits": "Derived from berenslab/llm-excess-vocab (MIT, (c) 2024 Dmitry Kobak, Rita Gonzalez-Marquez). See THIRD_PARTY_NOTICES.md.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"phrases": [
|
|
8
|
+
{ "pattern": "\\baccentuat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
9
|
+
{ "pattern": "\\backnowledg(e|es|ed|ing) (the|a|its|their)\\b", "severity": "hint", "reason": "academic LLM hedge" },
|
|
10
|
+
{ "pattern": "\\baffirm(s|ed|ing)?\\b", "severity": "hint" },
|
|
11
|
+
{ "pattern": "\\balign(s|ed|ing)? with\\b", "severity": "hint" },
|
|
12
|
+
{ "pattern": "\\bbolster(s|ed|ing)?\\b", "severity": "hint" },
|
|
13
|
+
{ "pattern": "\\bburgeoning\\b", "severity": "hint" },
|
|
14
|
+
{ "pattern": "\\bcapitaliz(e|es|ed|ing) on\\b", "severity": "hint" },
|
|
15
|
+
{ "pattern": "\\bconsolidat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
16
|
+
{ "pattern": "\\bcraft(s|ed|ing)\\b", "severity": "hint", "reason": "over-used academic verb" },
|
|
17
|
+
{ "pattern": "\\bculminat(e|es|ed|ing) in\\b", "severity": "hint" },
|
|
18
|
+
{ "pattern": "\\bdelineat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
19
|
+
{ "pattern": "\\bdemonstrat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
20
|
+
{ "pattern": "\\bdiscern(s|ed|ing|ible)?\\b", "severity": "hint" },
|
|
21
|
+
{ "pattern": "\\bdisrupt(s|ed|ing)\\b", "severity": "hint" },
|
|
22
|
+
{ "pattern": "\\belevat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
23
|
+
{ "pattern": "\\belucidat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
24
|
+
{ "pattern": "\\bembrac(e|es|ed|ing)\\b", "severity": "hint", "reason": "metaphorical overuse" },
|
|
25
|
+
{ "pattern": "\\bempower(s|ed|ing)?\\b", "severity": "hint" },
|
|
26
|
+
{ "pattern": "\\bencapsulat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
27
|
+
{ "pattern": "\\bencompass(es|ed|ing)?\\b", "severity": "hint" },
|
|
28
|
+
{ "pattern": "\\benhanc(e|es|ed|ing)\\b", "severity": "hint", "reason": "academic LLM marker" },
|
|
29
|
+
{ "pattern": "\\bescalat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
30
|
+
{ "pattern": "\\bexacerbat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
31
|
+
{ "pattern": "\\bexhibit(s|ed|ing)\\b", "severity": "hint" },
|
|
32
|
+
{ "pattern": "\\bexpedit(e|es|ed|ing)\\b", "severity": "hint" },
|
|
33
|
+
{ "pattern": "\\bfacilitat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
34
|
+
{ "pattern": "\\bgarner(s|ed|ing)?\\b", "severity": "hint" },
|
|
35
|
+
{ "pattern": "\\bgrappling with\\b", "severity": "hint" },
|
|
36
|
+
{ "pattern": "\\bheighten(s|ed|ing)?\\b", "severity": "hint" },
|
|
37
|
+
{ "pattern": "\\bhighlight(s|ed|ing)\\b", "severity": "hint", "reason": "academic LLM marker" },
|
|
38
|
+
{ "pattern": "\\billuminat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
39
|
+
{ "pattern": "\\bimped(e|es|ed|ing)\\b", "severity": "hint" },
|
|
40
|
+
{ "pattern": "\\bincorporat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
41
|
+
{ "pattern": "\\bjuxtapos(e|es|ed|ing)\\b", "severity": "hint" },
|
|
42
|
+
{ "pattern": "\\bnecessitat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
43
|
+
{ "pattern": "\\borchestrat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
44
|
+
{ "pattern": "\\bpav(e|es|ed|ing) the way\\b", "severity": "hint" },
|
|
45
|
+
{ "pattern": "\\bpinpoint(s|ed|ing)?\\b", "severity": "hint" },
|
|
46
|
+
{ "pattern": "\\bpoised to\\b", "severity": "hint" },
|
|
47
|
+
{ "pattern": "\\bpropel(s|led|ling)\\b", "severity": "hint" },
|
|
48
|
+
{ "pattern": "\\brefin(e|es|ed|ing)\\b", "severity": "hint" },
|
|
49
|
+
{ "pattern": "\\bscrutiniz(e|es|ed|ing)\\b", "severity": "hint" },
|
|
50
|
+
{ "pattern": "\\bshed(s|ding)? light on\\b", "severity": "hint" },
|
|
51
|
+
{ "pattern": "\\bshowcas(e|es|ed|ing)\\b", "severity": "hint" },
|
|
52
|
+
{ "pattern": "\\bsolidif(y|ies|ied|ying)\\b", "severity": "hint" },
|
|
53
|
+
{ "pattern": "\\bstreamlin(e|es|ed|ing)\\b", "severity": "hint" },
|
|
54
|
+
{ "pattern": "\\bsubstantiat(e|es|ed|ing)\\b", "severity": "hint" },
|
|
55
|
+
{ "pattern": "\\bsurmount(s|ed|ing)?\\b", "severity": "hint" },
|
|
56
|
+
{ "pattern": "\\bsurpass(es|ed|ing)?\\b", "severity": "hint" },
|
|
57
|
+
{ "pattern": "\\buncover(s|ed|ing)?\\b", "severity": "hint" },
|
|
58
|
+
{ "pattern": "\\bunravel(s|led|ed|ling|ing)?\\b", "severity": "hint" },
|
|
59
|
+
{ "pattern": "\\bunveil(s|ed|ing)?\\b", "severity": "hint" },
|
|
60
|
+
{ "pattern": "\\butiliz(e|es|ed|ing)\\b", "severity": "hint", "reason": "prefer 'use'" },
|
|
61
|
+
{ "pattern": "\\badept\\b", "severity": "hint" },
|
|
62
|
+
{ "pattern": "\\bakin to\\b", "severity": "hint" },
|
|
63
|
+
{ "pattern": "\\bcommendable\\b", "severity": "hint" },
|
|
64
|
+
{ "pattern": "\\bcompelling\\b", "severity": "hint" },
|
|
65
|
+
{ "pattern": "\\bcomprehensive\\b", "severity": "hint" },
|
|
66
|
+
{ "pattern": "\\bdependable\\b", "severity": "hint" },
|
|
67
|
+
{ "pattern": "\\bdistinctive\\b", "severity": "hint" },
|
|
68
|
+
{ "pattern": "\\bformidable\\b", "severity": "hint" },
|
|
69
|
+
{ "pattern": "\\bfoundational\\b", "severity": "hint" },
|
|
70
|
+
{ "pattern": "\\bgroundbreaking\\b", "severity": "hint" },
|
|
71
|
+
{ "pattern": "\\bheightened\\b", "severity": "hint" },
|
|
72
|
+
{ "pattern": "\\billuminating\\b", "severity": "hint" },
|
|
73
|
+
{ "pattern": "\\bimpactful\\b", "severity": "hint" },
|
|
74
|
+
{ "pattern": "\\bimpressive\\b", "severity": "hint" },
|
|
75
|
+
{ "pattern": "\\binherent(ly)?\\b", "severity": "hint" },
|
|
76
|
+
{ "pattern": "\\binnovative\\b", "severity": "hint" },
|
|
77
|
+
{ "pattern": "\\bintricate(ly)?\\b", "severity": "hint" },
|
|
78
|
+
{ "pattern": "\\binvaluable\\b", "severity": "hint" },
|
|
79
|
+
{ "pattern": "\\bnoteworthy\\b", "severity": "hint" },
|
|
80
|
+
{ "pattern": "\\bnuanced\\b", "severity": "hint" },
|
|
81
|
+
{ "pattern": "\\bpivotal\\b", "severity": "hint" },
|
|
82
|
+
{ "pattern": "\\bremarkable\\b", "severity": "hint" },
|
|
83
|
+
{ "pattern": "\\brenowned\\b", "severity": "hint" },
|
|
84
|
+
{ "pattern": "\\btransformative\\b", "severity": "hint" },
|
|
85
|
+
{ "pattern": "\\buncharted\\b", "severity": "hint" },
|
|
86
|
+
{ "pattern": "\\bunexplored\\b", "severity": "hint" },
|
|
87
|
+
{ "pattern": "\\bunparalleled\\b", "severity": "hint" },
|
|
88
|
+
{ "pattern": "\\badvancement(s)?\\b", "severity": "hint" },
|
|
89
|
+
{ "pattern": "\\bavenue(s)? (for|to)\\b", "severity": "hint" },
|
|
90
|
+
{ "pattern": "\\bendeavo(u)?r(s)?\\b", "severity": "hint" },
|
|
91
|
+
{ "pattern": "\\bgroundwork for\\b", "severity": "hint" },
|
|
92
|
+
{ "pattern": "\\binterconnectedness\\b", "severity": "hint" },
|
|
93
|
+
{ "pattern": "\\binterplay (of|between)\\b", "severity": "hint" },
|
|
94
|
+
{ "pattern": "\\bintricac(y|ies)\\b", "severity": "hint" },
|
|
95
|
+
{ "pattern": "\\bmethodolog(y|ies)\\b", "severity": "hint" },
|
|
96
|
+
{ "pattern": "\\bnuance(s)?\\b", "severity": "hint" },
|
|
97
|
+
{ "pattern": "\\bnexus (of|between)\\b", "severity": "hint" },
|
|
98
|
+
{ "pattern": "\\bodyssey\\b", "severity": "hint" },
|
|
99
|
+
{ "pattern": "\\bexceptionally\\b", "severity": "hint" },
|
|
100
|
+
{ "pattern": "\\bpredominantly\\b", "severity": "hint" },
|
|
101
|
+
{ "pattern": "\\bswiftly\\b", "severity": "hint" },
|
|
102
|
+
{ "pattern": "\\ba wealth of\\b", "severity": "hint" },
|
|
103
|
+
{ "pattern": "\\bfrom \\w+ to \\w+, (and )?(from )?\\w+\\b", "severity": "hint", "reason": "academic tricolon opener" }
|
|
104
|
+
]
|
|
105
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pack:claudeisms",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Claude-specific mannerisms: sycophancy, consent-theater phrasing, and over-careful hedges.",
|
|
5
|
+
"credits": "Derived from SicariusSicariiStuff/SLOP_Detector (Apache License 2.0). See THIRD_PARTY_NOTICES.md.",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"phrases": [
|
|
8
|
+
{ "pattern": "\\byou'?re absolutely right\\b", "reason": "Claude sycophancy" },
|
|
9
|
+
{ "pattern": "\\byou'?re right (that|to)\\b", "reason": "Claude sycophancy" },
|
|
10
|
+
{ "pattern": "\\b(that'?s|what a) (a )?(great|excellent|fantastic|wonderful|brilliant) (question|point|observation|catch)\\b", "reason": "Claude sycophancy" },
|
|
11
|
+
{ "pattern": "\\bI (completely|totally|absolutely) (understand|agree)\\b", "reason": "Claude sycophancy" },
|
|
12
|
+
{ "pattern": "\\bI'?d be happy to\\b", "reason": "Claude hedge" },
|
|
13
|
+
{ "pattern": "\\bI hope (this|that) helps\\b", "reason": "Claude closer" },
|
|
14
|
+
{ "pattern": "\\bI apologize (for|if)\\b", "reason": "Claude over-apology" },
|
|
15
|
+
{ "pattern": "\\bI understand your (concern|frustration)\\b", "reason": "Claude validation" },
|
|
16
|
+
{ "pattern": "\\bonly if you want( to)?\\b", "reason": "consent theater" },
|
|
17
|
+
{ "pattern": "\\bwe can stop (at )?any ?time\\b", "reason": "consent theater" },
|
|
18
|
+
{ "pattern": "\\b(your|my|our) comfort is (my )?(priority|important)\\b", "reason": "consent theater" },
|
|
19
|
+
{ "pattern": "\\b(establish|respect)(ing)? boundaries\\b", "reason": "consent theater" },
|
|
20
|
+
{ "pattern": "\\b(tell|let) me if (you|it)\\b", "reason": "consent theater" },
|
|
21
|
+
{ "pattern": "\\bsafe ?word\\b", "reason": "consent theater" },
|
|
22
|
+
{ "pattern": "\\bwhether you like it or not\\b" },
|
|
23
|
+
{ "pattern": "\\bpropriety be damned\\b" },
|
|
24
|
+
{ "pattern": "\\btorn between propriety and desire\\b" },
|
|
25
|
+
{ "pattern": "\\bwith reckless abandon\\b" },
|
|
26
|
+
{ "pattern": "\\bwild abandon\\b" },
|
|
27
|
+
{ "pattern": "\\btorn between\\b" },
|
|
28
|
+
{ "pattern": "\\bwarring with\\b" },
|
|
29
|
+
{ "pattern": "\\bimportant to (note|remember) that\\b", "reason": "Claude hedge" },
|
|
30
|
+
{ "pattern": "\\bit should be (mentioned|noted)\\b", "reason": "Claude hedge" },
|
|
31
|
+
{ "pattern": "\\bone must (consider|remember)\\b", "reason": "Claude hedge" },
|
|
32
|
+
{ "pattern": "\\bworth (considering|keeping in mind)\\b", "reason": "Claude hedge" },
|
|
33
|
+
{ "pattern": "\\b(let me know|feel free to ask) if\\b", "reason": "Claude closer" },
|
|
34
|
+
{ "pattern": "\\bis there anything else\\b", "reason": "Claude closer" },
|
|
35
|
+
{ "pattern": "\\bcertainly!\\b", "reason": "Claude opener" },
|
|
36
|
+
{ "pattern": "\\bof course!\\b", "reason": "Claude opener" },
|
|
37
|
+
{ "pattern": "\\babsolutely!\\b", "reason": "Claude opener" },
|
|
38
|
+
{ "pattern": "\\bcommits to memory\\b" },
|
|
39
|
+
{ "pattern": "\\b(maps|charts) (out|every)\\b" },
|
|
40
|
+
{ "pattern": "\\blavishes attention\\b" },
|
|
41
|
+
{ "pattern": "\\bin the space between heartbeats\\b" },
|
|
42
|
+
{ "pattern": "\\ban ethereal beauty\\b" },
|
|
43
|
+
{ "pattern": "\\bchestnut eyes\\b" },
|
|
44
|
+
{ "pattern": "\\bfiery red hair\\b" },
|
|
45
|
+
{ "pattern": "\\blong lashes\\b" }
|
|
46
|
+
]
|
|
47
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pack:cliches",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "General LLM cliche adjectives, nouns, and verbs -- the kind of word that isn't wrong but has been strip-mined by LLMs.",
|
|
5
|
+
"credits": "Derived from nanxstats/llm-cliches (MIT, (c) 2025 Nan Xiao). See THIRD_PARTY_NOTICES.md.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"phrases": [
|
|
8
|
+
{ "pattern": "\\bavant[- ]garde\\b" },
|
|
9
|
+
{ "pattern": "\\bcaptivating\\b" },
|
|
10
|
+
{ "pattern": "\\bcrucial\\b" },
|
|
11
|
+
{ "pattern": "\\bdistinguished\\b" },
|
|
12
|
+
{ "pattern": "\\besteemed\\b" },
|
|
13
|
+
{ "pattern": "\\bexquisite\\b" },
|
|
14
|
+
{ "pattern": "\\biconic\\b" },
|
|
15
|
+
{ "pattern": "\\bindomitable\\b" },
|
|
16
|
+
{ "pattern": "\\birrefutable\\b" },
|
|
17
|
+
{ "pattern": "\\bomniscient\\b" },
|
|
18
|
+
{ "pattern": "\\bpioneering\\b" },
|
|
19
|
+
{ "pattern": "\\bpredominant\\b" },
|
|
20
|
+
{ "pattern": "\\bprofound\\b" },
|
|
21
|
+
{ "pattern": "\\bprominent\\b" },
|
|
22
|
+
{ "pattern": "\\bquintessential\\b" },
|
|
23
|
+
{ "pattern": "\\brevolutionary\\b" },
|
|
24
|
+
{ "pattern": "\\btangible\\b" },
|
|
25
|
+
{ "pattern": "\\btrailblazing\\b" },
|
|
26
|
+
{ "pattern": "\\bubiquitous\\b" },
|
|
27
|
+
{ "pattern": "\\bunassailable\\b" },
|
|
28
|
+
{ "pattern": "\\bunblemished\\b" },
|
|
29
|
+
{ "pattern": "\\bunequaled\\b" },
|
|
30
|
+
{ "pattern": "\\bunmatched\\b" },
|
|
31
|
+
{ "pattern": "\\bunrivaled\\b" },
|
|
32
|
+
{ "pattern": "\\bunsurpassed\\b" },
|
|
33
|
+
{ "pattern": "\\bunwavering\\b" },
|
|
34
|
+
{ "pattern": "\\bunyielding\\b" },
|
|
35
|
+
{ "pattern": "\\bvisionary\\b" },
|
|
36
|
+
{ "pattern": "\\bapogee\\b" },
|
|
37
|
+
{ "pattern": "\\bepitome\\b" },
|
|
38
|
+
{ "pattern": "\\bfacet(s)?\\b" },
|
|
39
|
+
{ "pattern": "\\bgusto\\b" },
|
|
40
|
+
{ "pattern": "\\b(a |the )?journey of\\b", "reason": "journey-metaphor LLM filler" },
|
|
41
|
+
{ "pattern": "\\blandscape of\\b", "reason": "landscape-metaphor LLM filler" },
|
|
42
|
+
{ "pattern": "\\bpanorama of\\b" },
|
|
43
|
+
{ "pattern": "\\bparadigm\\b" },
|
|
44
|
+
{ "pattern": "\\bpinnacle\\b" },
|
|
45
|
+
{ "pattern": "\\bspectrum of\\b" },
|
|
46
|
+
{ "pattern": "\\bsymphony of\\b" },
|
|
47
|
+
{ "pattern": "\\btrajectory\\b" },
|
|
48
|
+
{ "pattern": "\\bbrac(e|es|ed|ing) (for|yourself)\\b" },
|
|
49
|
+
{ "pattern": "\\benvision(s|ed|ing)?\\b" },
|
|
50
|
+
{ "pattern": "\\bgalvaniz(e|es|ed|ing)\\b" },
|
|
51
|
+
{ "pattern": "\\bredefin(e|es|ed|ing)\\b" },
|
|
52
|
+
{ "pattern": "\\breinforc(e|es|ed|ing)\\b" },
|
|
53
|
+
{ "pattern": "\\btranscend(s|ed|ing)?\\b" },
|
|
54
|
+
{ "pattern": "\\bunleash(es|ed|ing)?\\b" },
|
|
55
|
+
{ "pattern": "\\busher(s|ed|ing)? in\\b" }
|
|
56
|
+
]
|
|
57
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pack:fiction",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "LLM tells common in fiction and creative writing. Includes adult-fiction markers. Opt in if you are writing prose rather than tech docs.",
|
|
5
|
+
"credits": "Derived from SicariusSicariiStuff/SLOP_Detector (Apache License 2.0). See THIRD_PARTY_NOTICES.md.",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"phrases": [
|
|
8
|
+
{ "pattern": "\\bshivers? (ran |running )?(down|up) (her|his|their|my|your) spine\\b", "reason": "fiction cliche" },
|
|
9
|
+
{ "pattern": "\\bcould(n'?t| not) help but\\b", "reason": "fiction cliche" },
|
|
10
|
+
{ "pattern": "\\bmaybe, just maybe\\b" },
|
|
11
|
+
{ "pattern": "\\bperhaps,? just perhaps\\b" },
|
|
12
|
+
{ "pattern": "\\blittle did (she|he|they|you|I) know\\b" },
|
|
13
|
+
{ "pattern": "\\bunbeknownst to (her|him|them|you|me)\\b" },
|
|
14
|
+
{ "pattern": "\\bdespite (her|him|them|my|your|it)self\\b" },
|
|
15
|
+
{ "pattern": "\\bministrations?\\b" },
|
|
16
|
+
{ "pattern": "\\bbarely (above|more than) a whisper\\b" },
|
|
17
|
+
{ "pattern": "\\bvoice trembling slightly\\b" },
|
|
18
|
+
{ "pattern": "\\bvoice (husky|rough|gravelly) with\\b" },
|
|
19
|
+
{ "pattern": "\\bhusky (voice|whispers?)\\b" },
|
|
20
|
+
{ "pattern": "\\bsilky voice\\b" },
|
|
21
|
+
{ "pattern": "\\bhoarse with desire\\b" },
|
|
22
|
+
{ "pattern": "\\b(words?|voice) (dripping|laced) with\\b" },
|
|
23
|
+
{ "pattern": "\\b(throaty moan|breathy gasp)\\b" },
|
|
24
|
+
{ "pattern": "\\bbreath (hitched|catches|caught|fanning)\\b" },
|
|
25
|
+
{ "pattern": "\\bsharp intake of breath\\b" },
|
|
26
|
+
{ "pattern": "\\bbreath (she|he|they|I|you) didn'?t know (she|he|they|I|you) (was|were) holding\\b" },
|
|
27
|
+
{ "pattern": "\\bheart (hammering|pounding|stutters|leaps|clenches|skips a beat)\\b" },
|
|
28
|
+
{ "pattern": "\\bstomach (flips|drops|lurches)\\b" },
|
|
29
|
+
{ "pattern": "\\b(heat|warmth|coils?) (blooms|spreads|floods|low in) (her|his|their|your|my)\\b" },
|
|
30
|
+
{ "pattern": "\\bbutterflies in (her|his|their|my|your) stomach\\b" },
|
|
31
|
+
{ "pattern": "\\b(knees? (go weak|buckle|threaten to buckle)|toes curl)\\b" },
|
|
32
|
+
{ "pattern": "\\ba moan escapes (her|his|their|my|your) lips\\b" },
|
|
33
|
+
{ "pattern": "\\bsomething inside (her|him|them|you|me) shifts\\b" },
|
|
34
|
+
{ "pattern": "\\bprimal (urge|need|desire|instinct)\\b" },
|
|
35
|
+
{ "pattern": "\\ball[- ]consuming( (desire|need))?\\b" },
|
|
36
|
+
{ "pattern": "\\b(her|his|their|my|your) body betrays (her|him|them|me|you)\\b" },
|
|
37
|
+
{ "pattern": "\\btraitorous (body|heart)\\b" },
|
|
38
|
+
{ "pattern": "\\bcloses? the distance between (them|us)\\b" },
|
|
39
|
+
{ "pattern": "\\b(cups|cradles|frames) (her|his|their|your|my) face\\b" },
|
|
40
|
+
{ "pattern": "\\b(tilts?|tips?) (her|his|their|your|my) chin up\\b" },
|
|
41
|
+
{ "pattern": "\\bquirks? an eyebrow\\b" },
|
|
42
|
+
{ "pattern": "\\bwaggles (her|his|their|my|your) eyebrows\\b" },
|
|
43
|
+
{ "pattern": "\\b(exquisite|sweet) (agony|torment|pleasure)\\b" },
|
|
44
|
+
{ "pattern": "\\bghost of a (touch|kiss|smile)\\b" },
|
|
45
|
+
{ "pattern": "\\bworships every inch of (her|him|them|you|me)\\b" },
|
|
46
|
+
{ "pattern": "\\b(everyone|nobody|no one) (froze|freezes|freeze|went still|stopped moving)\\b" },
|
|
47
|
+
{ "pattern": "\\brunning (his|her|their|my|your) fingers through (his|her|their|my|your) hair\\b" },
|
|
48
|
+
{ "pattern": "\\bpushing aside (a )?strands? of hair\\b" },
|
|
49
|
+
{ "pattern": "\\b(her|his|their|your|my) eyes (widened|darken(ed|ing)?|fluttered?|rolled back)\\b" },
|
|
50
|
+
{ "pattern": "\\beyes (sparkling|twinkling|glinted|glinting|alight) with\\b" },
|
|
51
|
+
{ "pattern": "\\bpupils (dilated|blown)( wide)?\\b" },
|
|
52
|
+
{ "pattern": "\\b(locks? eyes with|to meet (her|his|their|your|my) gaze)\\b" },
|
|
53
|
+
{ "pattern": "\\b(lidded|smoldering) gaze\\b" },
|
|
54
|
+
{ "pattern": "\\b(bedroom|hooded|half[- ]lidded) eyes\\b" },
|
|
55
|
+
{ "pattern": "\\bmischievous glint\\b" },
|
|
56
|
+
{ "pattern": "\\b(dangerous|predatory) glint\\b" },
|
|
57
|
+
{ "pattern": "\\bcheeks (flamed?|flaming|reddened?|hollowing)\\b" },
|
|
58
|
+
{ "pattern": "\\bjaw (clenches|tightens|sets|tics|works)\\b" },
|
|
59
|
+
{ "pattern": "\\bgrinds? against\\b" },
|
|
60
|
+
{ "pattern": "\\b(crashes|claims?) (his|her|their|my|your) (lips|mouth)\\b" },
|
|
61
|
+
{ "pattern": "\\bchuckles darkly\\b" },
|
|
62
|
+
{ "pattern": "\\bgrins wickedly\\b" },
|
|
63
|
+
{ "pattern": "\\bsmirks? (playing|tugging) (on|at) (her|his|their|my) lips\\b" },
|
|
64
|
+
{ "pattern": "\\bwithout waiting for a response\\b" },
|
|
65
|
+
{ "pattern": "\\bwaiting for (his|her|their|your|my) response\\b" },
|
|
66
|
+
{ "pattern": "\\bwell, well, well\\b" },
|
|
67
|
+
{ "pattern": "\\ba mix(ture)? of fear and (confusion|desire|longing)\\b" },
|
|
68
|
+
{ "pattern": "\\b(a )?moth to a flame\\b" },
|
|
69
|
+
{ "pattern": "\\ba dance as old as time\\b" },
|
|
70
|
+
{ "pattern": "\\bdance of (pleasure|desire|fire)\\b" },
|
|
71
|
+
{ "pattern": "\\bkiss[- ]bruised lips\\b" },
|
|
72
|
+
{ "pattern": "\\b(bee[- ]stung|plush|pouty) lips\\b" },
|
|
73
|
+
{ "pattern": "\\bfeather[- ]light touch\\b" },
|
|
74
|
+
{ "pattern": "\\bstars burst behind (her|his|their|my|your) eyes\\b" },
|
|
75
|
+
{ "pattern": "\\bfor what (seemed|felt) like (an eternity|forever|hours)\\b" },
|
|
76
|
+
{ "pattern": "\\b(time (seems to )?(slow|stop|freeze|stand still)s?|suspended in time)\\b" },
|
|
77
|
+
{ "pattern": "\\bthe (atmosphere|air) (is|was|becomes?|turns?) (thick|heavy|tense|charged|electric)\\b" },
|
|
78
|
+
{ "pattern": "\\bthe (atmosphere|air) (crackles?|hums?|thrums?) with\\b" },
|
|
79
|
+
{ "pattern": "\\belectricity (crackles?|hums?) (under|beneath|along) (her|his|their|my|your) skin\\b" },
|
|
80
|
+
{ "pattern": "\\b(spark|jolt|shock) of electricity\\b" },
|
|
81
|
+
{ "pattern": "\\bmagnetic pull\\b" },
|
|
82
|
+
{ "pattern": "\\b(dances on the edge|teeters on the brink|razor'?s edge|precipice of|maelstrom of|whirlwind of)\\b" },
|
|
83
|
+
{ "pattern": "\\bin one (smooth|fluid) motion\\b" },
|
|
84
|
+
{ "pattern": "\\bwith practiced ease\\b" },
|
|
85
|
+
{ "pattern": "\\b(Elara|Thorne|Silas|Elias|Alaric|Zephyr|Kael|Lyra|Vane)\\b", "reason": "LLM-cliche fictional name" },
|
|
86
|
+
{ "pattern": "\\bWhispering (Woods|Pines|Forest|Glades?|Caverns?|Hollow|Vale|Grove)\\b", "reason": "LLM-cliche place name" }
|
|
87
|
+
]
|
|
88
|
+
}
|