Install
openclaw skills install monet-works-content-qa-dvQA remediation auto-fix pipeline for Monet Works content. Detects and repairs common content issues: banned phrases, missing disclaimers, missing CTAs, and e...
openclaw skills install monet-works-content-qa-dvGoal Chain: L0 Medici Enterprises → L1 Monet Works → L2 Content Quality
This skill is an automated QA and remediation pipeline for all content produced by Monet Works. It detects and automatically fixes common content issues, ensuring brand consistency and quality before publication.
The content-qa CLI tool takes a markdown file as input and processes it through a series of checks and fixes. It outputs the remediated content to stdout and a structured JSON report of all changes to stderr.
Banned Phrases:
Missing Disclaimers:
Missing Call-to-Action (CTA):
Excessive Length:
AI Writing Patterns:
ogilvy-humanizer skill to detect and fix common AI writing tics.# Run the QA pipeline on a draft file
content-qa fix path/to/draft.md > path/to/fixed-draft.md 2> path/to/report.json
# Example report.json
{
"changes": [
{
"type": "banned_phrase",
"action": "removed",
"original": "In conclusion, this is a great product.",
"remediated": "This is a great product.",
"line": 42
},
{
"type": "missing_disclaimer",
"action": "appended",
"details": "Appended standard investment disclaimer."
}
],
"word_count": {
"original": 750,
"remediated": 738
},
"humanizer_score": {
"before": 0.68,
"after": 0.95
}
}
This is the final step in the Monet Works content generation pipeline, run just before scheduling a post.
# Part of the main content pipeline script
cat $DRAFT_FILE | content-qa fix > $FINAL_FILE 2> $QA_REPORT_FILE
references/banned_phrases.txt.references/disclaimers/.references/ctas.json.This automated QA process saves hours of manual editing and ensures every piece of content meets our quality standards.