High quality content writer
Skill SwiftAdviser/public-skills/skills/high-quality-content-writer
Public sanitized agent skills by SwiftAdviser
npx -y skills add SwiftAdviser/public-skills --skill high-quality-content-writerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Write, rewrite, audit, and iteratively improve prose until it passes isolated content-quality gates. Use when the user asks for high-quality content, cleanup, anti-slop rewriting, article/copy/landing-page improvement, link/text grading, AI-writing trope removal, slop-check validation, or a loop that keeps revising until the final text is clean, specific, fact-dense, and publishable.
SKILL.md
4.8 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
High Quality Content Writer
Use this skill as a closed-loop content system: draft or clean text, score it with deterministic gates, evaluate it in isolation, then retry with concrete fix instructions until quality passes or the retry budget is exhausted.
Operating Model
Default to this loop:
- Prepare an isolated workdir under
.tmp/high-quality-content-writer/<timestamp>/. - For websites, always separate scoring from extraction:
- For trope scoring, run
slop_score.py --url <url>first so the result is calibrated against the public AI Vetter action when available. - For token-efficient content review/rewrite, extract compact markdown through Jina Reader and save it as
source.md: curl -L -s 'https://r.jina.ai/http://https://example.com/path' -o source.md- If Jina fails or returns an error page, fall back to direct fetch/HTML extraction.
- For trope scoring, run
- Save pasted text or extracted markdown as
source.mdand the current candidate ascandidate.md. - Run deterministic scoring:
scripts/slop_score.py --file candidate.md --prettyscripts/quality_gate.py --file candidate.md --pretty
- If available, run an isolated evaluator subagent using
references/evaluator-flow.md. Give it only the candidate text, scoring JSON, user brief, and the skill path. - If any gate fails, run an isolated writer subagent using
references/writer-flow.md. Give itsource.md,candidate.md, previous findings, and fix instructions. Ask it to write the nextcandidate.md. - Repeat until pass or
max_attemptsis reached. Defaultmax_attempts = 4. - Return the final text first, then a compact QA report with scores, attempts, remaining risks, and what changed.
Do not stop after analysis when the user asked for final content. The expected output is improved content plus evidence that it passed the gates.
Gates
Use three complementary gates:
- Trope score:
slop_score.pycatches tropes.fyi-style AI-writing patterns. Pass target: score <= 25 and verdictHumanorAI-assisted;Suspiciousis allowed only if the user wants light editing. - Slop-check score:
quality_gate.pyimplements the bundled quote/article slop-check criteria. Pass target for articles:cleanorgood;acceptableis allowed only with explanation;probable_slopandobvious_slophard fail. - Quality evaluator score: isolated evaluator scores 1-10 on clarity, specificity, fact density, voice, slop risk, and brief adherence. Pass target: >= 8.
Hard fail if the draft invents facts, drops required claims, adds unsupported numbers, or changes the user's intended meaning.
Common Commands
python3 scripts/slop_score.py --file candidate.md --pretty
python3 scripts/quality_gate.py --file candidate.md --pretty
URL scoring remains available:
python3 scripts/slop_score.py --url https://example.com/article --pretty
For website content checks, prefer explicit Jina extraction when the user wants token-efficient review:
python3 scripts/slop_score.py --url https://example.com/article --pretty
curl -L -s 'https://r.jina.ai/http://https://example.com/article' -o .tmp/high-quality-content-writer/source.md
python3 scripts/quality_gate.py --file .tmp/high-quality-content-writer/source.md --type article --pretty
Output Contract
For a grading-only request:
Verdict: <clean/good/acceptable/probable_slop/obvious_slop + trope verdict>
Score: <quality score>/10
Trope score: <0-100>
Slop-check score: <points>
Findings:
- <issue>: <evidence>
Fix instructions:
- <sentence-level or structural instruction>
For a write/fix request:
<final improved content>
QA:
- Attempts: <n>
- Quality gate: <pass/fail>, <score>/10
- Trope score: <score>, <verdict>
- Slop-check: <score>, <verdict>
- Main fixes: <short list>
- Residual risk: <only if any>
References
references/tropes.md: full uncut tropes.fyi-style rubric supplied by the user.references/slop-check.md: short quote criteria imported from$slop-check.references/slop-check-full-criteria.md: full 24-criteria article rubric imported from$slop-check.references/c8c-loop-analysis.md: distilled mechanics fromcontent-improve-loop.chainand c8c evaluator implementation.references/writer-flow.md: isolated writer subagent prompt.references/evaluator-flow.md: isolated evaluator subagent prompt.references/api-example.md: public Vetter action id, request shape, and response shape.
What ships with it: 14 files
80.4 KB alongside SKILL.md, 3 of them executable
agents/
- openai.yaml290 B
references/
- api-example.md1.3 KB
- c8c-loop-analysis.md2.9 KB
- evaluator-flow.md1.2 KB
- fix-flow.md910 B
- high-quality-content-writer.chain2.0 KB
- scoring-flow.md945 B
- slop-check-full-criteria.md5.9 KB
- slop-check.md4.5 KB
- tropes.md17.0 KB
- writer-flow.md1.2 KB
scripts/
- content_quality_loop.pyruns3.4 KB
- quality_gate.pyruns15.4 KB
- slop_score.pyruns23.4 KB