slopless 0.2.20 → 0.2.21

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 (2) hide show
  1. package/README.md +22 -25
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,44 +2,35 @@
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/slopless?label=npm)](https://www.npmjs.com/package/slopless)
4
4
  [![downloads](https://img.shields.io/npm/dm/slopless)](https://www.npmjs.com/package/slopless)
5
- [![bundle size](https://img.shields.io/bundlephobia/minzip/slopless?label=minzip)](https://bundlephobia.com/package/slopless)
6
5
  [![install size](https://packagephobia.com/badge?p=slopless)](https://packagephobia.com/result?p=slopless)
7
6
  [![license](https://img.shields.io/npm/l/slopless)](LICENSE)
8
7
  [![node](https://img.shields.io/badge/node-22%2B-brightgreen)](package.json)
9
8
 
10
9
  [![ci](https://img.shields.io/github/actions/workflow/status/seochecks-ai%2Fslopless/ci.yml?branch=main&label=ci)](/actions/workflows/ci.yml)
11
- [![scorecard](https://api.scorecard.dev/projects/github.com/seochecks-ai/slopless/badge)](https://scorecard.dev/viewer/?uri=github.com/seochecks-ai/slopless)
12
10
  [![socket](https://socket.dev/api/badge/npm/package/slopless)](https://socket.dev/npm/package/slopless)
13
- [![snyk advisor](https://snyk.io/advisor/npm-package/slopless/badge.svg)](https://snyk.io/advisor/npm-package/slopless)
14
11
 
15
12
  Catch AI and human slop in English Markdown without calling an LLM. Slopless ships 50+ deterministic textlint rules and a CLI that emits structured JSON findings.
16
13
 
17
14
  ## What it catches
18
15
 
19
- Given this paragraph (typical LLM prose):
16
+ Given this paragraph of confident-sounding slop:
20
17
 
21
18
  ```markdown
22
- In today's rapidly evolving landscape, it's important to note that AI tools
23
- are revolutionizing how we work - truly transforming workflows in
24
- unprecedented ways. By harnessing the power of large language models, teams
25
- can delve into complex challenges, streamline operations, and unlock new
26
- possibilities. But what does this really mean for you? In essence, the
27
- future belongs to those who embrace these tools today. Not just to keep up,
28
- not just to stay competitive, but to thrive.
19
+ Let me be honest: in a world where everyone is racing to ship, most teams
20
+ forget the basics. We do not sell software. We sell outcomes. Everyone knows
21
+ the best products feel effortless. At the end of the day, the future belongs
22
+ to the teams that slow down to think.
29
23
  ```
30
24
 
31
- `npx slopless` returns nine findings across seven rules:
25
+ `npx slopless` flags six findings across five rules - structure and rhetoric, not just a word list:
32
26
 
33
27
  ```
34
- [slopless/generic-signposting] it's important to note
35
- [slopless/prohibited-phrases] it's important to note
36
- [slopless/llm-vocabulary] landscape
37
- [slopless/llm-vocabulary] delve
38
- [slopless/prohibited-words] delve
39
- [slopless/prohibited-words] unlock
40
- [slopless/prohibited-phrases] the future belongs to
41
- [slopless/negation-reframe] Not just X, not just Y, but Z
42
- [slopless/flesch-kincaid] Flesch Reading Ease 56.05 (keep >= 61)
28
+ [slopless/boilerplate-framing] let me be honest
29
+ [slopless/prohibited-phrases] in a world where
30
+ [slopless/negation-reframe] We do not sell software. We sell outcomes.
31
+ [slopless/universalizing-claims] everyone knows
32
+ [slopless/cliches] at the end of the day
33
+ [slopless/prohibited-phrases] the future belongs to
43
34
  ```
44
35
 
45
36
  Full JSON output is the default. See the [Rules](https://github.com/seochecks-ai/slopless/wiki/Rules) page for the complete inventory.
@@ -48,6 +39,7 @@ Full JSON output is the default. See the [Rules](https://github.com/seochecks-ai
48
39
 
49
40
  ```bash
50
41
  npm install -D slopless
42
+ npx slopless --help
51
43
  npx slopless install-skill codex
52
44
  npx slopless install-skill claude
53
45
  ```
@@ -61,10 +53,11 @@ Use the Slopless skill. Check this Markdown, rewrite the prose, and keep iterati
61
53
  Loop:
62
54
 
63
55
  1. Install Slopless.
64
- 2. Install the agent skill for Codex or Claude Code.
65
- 3. Tell the writing agent to use the skill.
66
- 4. Let the agent run Slopless, rewrite, and rerun until the JSON output has no findings.
67
- 5. Profit.
56
+ 2. Read the core help (`npx slopless --help`).
57
+ 3. Install the agent skill for Codex or Claude Code.
58
+ 4. Tell the writing agent to use the skill.
59
+ 5. Let the agent run Slopless, rewrite, and rerun until the JSON output has no findings.
60
+ 6. Profit.
68
61
 
69
62
  ## Direct CLI Use
70
63
 
@@ -144,6 +137,10 @@ This confirms the tarball you installed was built in the published source reposi
144
137
 
145
138
  [![Star History Chart](https://api.star-history.com/svg?repos=seochecks-ai/slopless&type=Date)](https://star-history.com/#seochecks-ai/slopless&Date)
146
139
 
140
+ ## Credits
141
+
142
+ [Graham Rowe](https://github.com/grahamrowe82/antislop), thanks for giving me new ideas for classes of slop to detect. Your lib is now fully incorporated with your permission.
143
+
147
144
  ---
148
145
 
149
146
  Developed by [seochecks.ai](https://seochecks.ai) to keep content specific, useful, and recognizably human.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slopless",
3
- "version": "0.2.20",
3
+ "version": "0.2.21",
4
4
  "description": "Deterministic textlint rules and CLI for catching prose slop in English Markdown.",
5
5
  "keywords": [
6
6
  "textlint",