-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
36 lines (36 loc) · 2.04 KB
/
Copy pathplugin.json
File metadata and controls
36 lines (36 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "writing-quality",
"version": "1.2.0",
"description": "AI writing pattern detection and 5-dimension quality scoring with content-type-aware thresholds. Deterministic checks for banned phrases/structures + LLM scoring for voice, rhythm, authenticity. Landing pages: 28/50 threshold with adjusted Rhythm/Trust/Authenticity. Prose: 35/50. Sources: humanizer v2.8 (33 patterns + detection guidance) + stop-slop (5-dim scoring, full structures set incl. false agency, narrator distance, Wh-starters, lazy extremes). Per-run category suppression via ignore param. Calibrated against Stripe, Linear, Basecamp, Vercel, Notion.",
"tools": [
{
"name": "check_writing_quality",
"description": "Score content on 5 dimensions (Directness, Rhythm, Trust, Authenticity, Density) and detect AI writing patterns. Content-type-aware: landing pages use 28/50 threshold with adjusted Rhythm/Trust/Authenticity scoring; prose uses 35/50. Deterministic pattern matching for banned phrases/structures, LLM for judgment-based scoring.",
"inputSchema": {
"type": "object",
"properties": {
"content": {
"type": "string",
"description": "The text content to audit"
},
"context": {
"type": "string",
"description": "Optional brand context (voice rules, audience, constraints)"
},
"mode": {
"type": "string",
"enum": ["full", "patterns-only", "score-only"],
"description": "Audit mode: full (patterns + scoring), patterns-only (deterministic only, no LLM), score-only (LLM scoring only). Default: full."
},
"ignore": {
"type": "array",
"items": { "type": "string" },
"description": "Optional finding-category slugs to suppress (e.g. [\"em-dash\", \"rule-of-three\"]) for intentional brand-voice patterns. Suppressed findings are reported as a count only."
}
},
"required": ["content"]
},
"handler": "node handler.js"
}
]
}