llm-slop-detector 0.5.0 → 0.6.2
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 +32 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.2](https://github.com/mandakan/llm-slop-detector/compare/llm-slop-detector-v0.6.1...llm-slop-detector-v0.6.2) (2026-04-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* run npm publish via npx instead of upgrading in place ([#58](https://github.com/mandakan/llm-slop-detector/issues/58)) ([ae3a370](https://github.com/mandakan/llm-slop-detector/commit/ae3a3702cc9ccb5014f06905b8ae7d4158a308f3))
|
|
9
|
+
|
|
10
|
+
## [0.6.1](https://github.com/mandakan/llm-slop-detector/compare/llm-slop-detector-v0.6.0...llm-slop-detector-v0.6.1) (2026-04-24)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* publish to npm from release workflow via OIDC ([#56](https://github.com/mandakan/llm-slop-detector/issues/56)) ([f249939](https://github.com/mandakan/llm-slop-detector/commit/f24993950227a7b1ee9a2a9af48591f4235e2cf0))
|
|
16
|
+
|
|
17
|
+
## [0.6.0](https://github.com/mandakan/llm-slop-detector/compare/llm-slop-detector-v0.5.0...llm-slop-detector-v0.6.0) (2026-04-24)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add .slopignore and llmSlopDetector.exclude for file-glob skips ([#46](https://github.com/mandakan/llm-slop-detector/issues/46)) ([836f081](https://github.com/mandakan/llm-slop-detector/commit/836f08165405311d4adc1457d9bf6e03ea37a4ef))
|
|
23
|
+
* add llmSlopDetector.severityOverrides for per-rule tuning ([#47](https://github.com/mandakan/llm-slop-detector/issues/47)) ([d4d8750](https://github.com/mandakan/llm-slop-detector/commit/d4d87505ccd7593ea77cceb03be5c1f199c46e2a)), closes [#37](https://github.com/mandakan/llm-slop-detector/issues/37)
|
|
24
|
+
* add Scan workspace command ([#53](https://github.com/mandakan/llm-slop-detector/issues/53)) ([26e3270](https://github.com/mandakan/llm-slop-detector/commit/26e32708d9903efc7a87632f87495eacbfaf9114))
|
|
25
|
+
* expose detector as stdio MCP server for agent self-linting ([#51](https://github.com/mandakan/llm-slop-detector/issues/51)) ([bdd7e29](https://github.com/mandakan/llm-slop-detector/commit/bdd7e29fcd0e067dc5086997ac476193eb7a0da4))
|
|
26
|
+
* publish CLI to npm ([#55](https://github.com/mandakan/llm-slop-detector/issues/55)) ([fe529e7](https://github.com/mandakan/llm-slop-detector/commit/fe529e764731bafad2553fc1268c2696741e4fcd))
|
|
27
|
+
* scan git commit messages and SCM input box ([#44](https://github.com/mandakan/llm-slop-detector/issues/44)) ([3e3196e](https://github.com/mandakan/llm-slop-detector/commit/3e3196e7ebc14614d27eee35c3c051effb176591)), closes [#40](https://github.com/mandakan/llm-slop-detector/issues/40)
|
|
28
|
+
* ship JSON Schema for .llmsloprc.json ([#45](https://github.com/mandakan/llm-slop-detector/issues/45)) ([96c2e0b](https://github.com/mandakan/llm-slop-detector/commit/96c2e0bd0bce338333d24fc71771209a62c19d0c)), closes [#36](https://github.com/mandakan/llm-slop-detector/issues/36)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Performance Improvements
|
|
32
|
+
|
|
33
|
+
* debounce document scanning on keystrokes ([#42](https://github.com/mandakan/llm-slop-detector/issues/42)) ([0ddb4ca](https://github.com/mandakan/llm-slop-detector/commit/0ddb4cacfc9205ac44bb9a997bbf5bea3c005731)), closes [#41](https://github.com/mandakan/llm-slop-detector/issues/41)
|
|
34
|
+
|
|
3
35
|
## [0.5.0](https://github.com/mandakan/llm-slop-detector/compare/llm-slop-detector-v0.4.0...llm-slop-detector-v0.5.0) (2026-04-23)
|
|
4
36
|
|
|
5
37
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "llm-slop-detector",
|
|
3
3
|
"displayName": "LLM Slop Detector",
|
|
4
4
|
"description": "Highlights invisible Unicode, AI-style punctuation, and telltale LLM phrases in markdown and plain text.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.6.2",
|
|
6
6
|
"publisher": "thias-se",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.95.0"
|