-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
31 lines (31 loc) · 1.58 KB
/
plugin.json
File metadata and controls
31 lines (31 loc) · 1.58 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
{
"name": "writing-quality",
"version": "1.1.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 (29 patterns) + stop-slop (5-dim scoring). 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."
}
},
"required": ["content"]
},
"handler": "node handler.js"
}
]
}