slopless 0.2.25 → 0.2.26
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/README.md +9 -9
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](package.json)
|
|
8
8
|
|
|
9
|
-
[](/actions/workflows/ci.yml)
|
|
10
10
|
[](https://socket.dev/npm/package/slopless)
|
|
11
11
|
|
|
12
12
|
Give it to your writing agent and it stops handing you AI-slop prose. Slopless is a deterministic linter - a textlint preset and a zero-config CLI - that flags the LLM tells (hollow framing, fake contrasts, hedging, em-dash tics, vacuous closers, and many more) so the agent rewrites until the text reads human. No model calls, no API key.
|
|
@@ -33,7 +33,7 @@ to the teams that slow down to think.
|
|
|
33
33
|
[slopless/prohibited-phrases] the future belongs to
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
Full JSON output is the default. See the [Rules](https://github.com/
|
|
36
|
+
Full JSON output is the default. See the [Rules](https://github.com/berelevant-ai/slopless/wiki/Rules) page for the complete inventory.
|
|
37
37
|
|
|
38
38
|
## Intended Usage Loop
|
|
39
39
|
|
|
@@ -141,12 +141,12 @@ Something shifted in the room.
|
|
|
141
141
|
|
|
142
142
|
## More
|
|
143
143
|
|
|
144
|
-
- [Philosophy](https://github.com/
|
|
145
|
-
- [Comparison](https://github.com/
|
|
146
|
-
- [Rules](https://github.com/
|
|
147
|
-
- [Behavior](https://github.com/
|
|
148
|
-
- [Ignore rules](https://github.com/
|
|
149
|
-
- [Thanks](https://github.com/
|
|
144
|
+
- [Philosophy](https://github.com/berelevant-ai/slopless/wiki/Philosophy) - what slopless is for, design principles, why deterministic.
|
|
145
|
+
- [Comparison](https://github.com/berelevant-ai/slopless/wiki/Comparison) - slopless vs proselint, write-good, alex, vale, default textlint presets.
|
|
146
|
+
- [Rules](https://github.com/berelevant-ai/slopless/wiki/Rules) - full 50+ rule inventory across seven families.
|
|
147
|
+
- [Behavior](https://github.com/berelevant-ai/slopless/wiki/Behavior) - CLI flags, exit codes, JSON output shape, direct textlint integration.
|
|
148
|
+
- [Ignore rules](https://github.com/berelevant-ai/slopless/wiki/Ignore-Rules) - inline `textlint-disable` block syntax.
|
|
149
|
+
- [Thanks](https://github.com/berelevant-ai/slopless/wiki/Thanks) - direct rule sources, dependencies, and acknowledgments.
|
|
150
150
|
- [Roadmap](ROADMAP.md) - near-term direction and links to active plans.
|
|
151
151
|
- [Contributing](.github/CONTRIBUTING.md) - open a detailed issue first; PRs must pass the G3TS pre-commit gate.
|
|
152
152
|
|
|
@@ -166,4 +166,4 @@ This confirms the tarball you installed was built in the published source reposi
|
|
|
166
166
|
|
|
167
167
|
---
|
|
168
168
|
|
|
169
|
-
Developed by [
|
|
169
|
+
Developed by [berelevant.ai](https://berelevant.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.
|
|
3
|
+
"version": "0.2.26",
|
|
4
4
|
"description": "Deterministic textlint rules and CLI for catching prose slop in English Markdown.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"textlint",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"cli"
|
|
20
20
|
],
|
|
21
21
|
"license": "MIT",
|
|
22
|
-
"author": "
|
|
22
|
+
"author": "berelevant.ai (https://berelevant.ai)",
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public",
|
|
25
25
|
"provenance": true
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/
|
|
29
|
+
"url": "git+https://github.com/berelevant-ai/slopless.git"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://github.com/
|
|
31
|
+
"homepage": "https://github.com/berelevant-ai/slopless#readme",
|
|
32
32
|
"bugs": {
|
|
33
|
-
"url": "https://github.com/
|
|
33
|
+
"url": "https://github.com/berelevant-ai/slopless/issues"
|
|
34
34
|
},
|
|
35
35
|
"type": "module",
|
|
36
36
|
"main": "./dist/index.js",
|