Install
openclaw skills install plagiarism-checker-pre-screenerUse when: User provides text/document and asks to check originality, detect plagiarism, assess similarity, or rewrite high-duplicate content. Triggers: "check plagiarism", "originality check", "similarity detection", "改写重复内容", "降重", "查重", "原创性检测", "抄袭检查" Input: Text content or document (txt, md, docx support via text extraction) Output: Originality score, highlighted duplicate/similar paragraphs, paraphrasing suggestions
openclaw skills install plagiarism-checker-pre-screenerPre-screens text for potential plagiarism by detecting similarity patterns and providing paraphrasing suggestions for high-duplicate sections.
AI自主验收状态: 需人工检查 This skill uses advanced NLP techniques. Results should be manually reviewed before submission.
python scripts/main.py --input "Your text here" --threshold 0.75
python scripts/main.py --file document.txt --output report.json
python scripts/main.py --input "text" --paraphrase --style academic
| Parameter | Type | Default | Description |
|---|---|---|---|
--input | string | - | Direct text input (alternative to --file) |
--file | path | - | Path to text file to analyze |
--threshold | float | 0.70 | Similarity threshold (0.0-1.0) for flagging |
--paraphrase | flag | false | Enable paraphrasing suggestions |
--style | string | neutral | Paraphrasing style: academic/formal/casual/neutral |
--output | path | stdout | Output file path (JSON format) |
--segments | string | sentence | Analysis unit: sentence/paragraph |
{
"originality_score": 85.5,
"total_segments": 12,
"flagged_segments": 2,
"segments": [
{
"index": 1,
"text": "Original sentence text...",
"similarity_score": 0.92,
"flagged": true,
"paraphrase_suggestion": "Rewritten version..."
}
],
"summary": "Text shows high originality with minor flagged sections"
}
references/algorithm.md - Technical algorithm detailsreferences/paraphrasing_guide.md - Paraphrasing methodology| Risk Indicator | Assessment | Level |
|---|---|---|
| Code Execution | Python/R scripts executed locally | Medium |
| Network Access | No external API calls | Low |
| File System Access | Read input files, write output files | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |
# Python dependencies
pip install -r requirements.txt