AI-Text Detection
Estimate the probability that a document's prose was written by AI, with the specific linguistic tells and an honest abstention when the document isn't prose. Uses the Stipple API (free anonymous tier).
When to use
- Educators screening student submissions
- Publishers and platforms triaging inbound content
- HR reviewing AI-drafted CVs (flag, don't reject)
- Researchers checking source provenance
Instructions
Get the document. URL, local file path (PDF, DOCX, TXT, MD), or raw text via --text.
Run detection.
curl -X POST https://www.stipple.sh/v1/detect-ai-text \
-F "file=@essay.pdf" \
-H "Authorization: Bearer $STIPPLE_API_KEY"
For raw text: POST JSON {"text": "..."} to the same endpoint.
Interpret the response.
applicable: false — the document is not prose (forms, tables, scans, spreadsheets). Detection is deliberately refused rather than guessed. Report this and stop.
probability — model confidence (0–1), NOT a calibrated truth
lean — "ai" | "human" | "unsure"
tells[] — the specific phrases/patterns flagged (e.g. "It is important to note that", uniform sentence length, low burstiness)
reasoning — why the model reached its verdict
limitations — always present; the API states its own noise profile
Report honestly. This measures style, not authenticity:
| Question |
Tool |
| Was this written by AI? (style) |
this skill |
| Is this document genuine/tampered? (forensics) |
verify-document skill |
A human can write generically; an AI can write plainly. One triage signal, never a verdict.
Output format
AI-written probability: 0.87 (lean: ai)
prose ratio: 0.82
linguistic tells:
- "It is important to note that, in today's fast-paced world" (stock phrase)
- uniform sentence length across paragraphs
- low burstiness; no authorial asides
reasoning: The text relies entirely on formulaic transition clichés...
limitations: The probability is the model's CONFIDENCE, not a calibrated truth.
Limitations and Safety
- AI-text detection is probabilistic and can disproportionately flag templated,
coached, translated, accessibility-assisted, or non-native-English writing. Do
not use it as proof of misconduct or as the sole basis for employment, academic,
publishing, or disciplinary action.
- Uploading a document sends its contents to a hosted third party. Obtain explicit
approval first, remove unnecessary personal or confidential material, and verify
the provider's current retention and deletion terms.
- Preserve the original work and give the affected person a meaningful human review
and appeal path before any consequential decision.
Notes
- Non-prose documents (forms, tables, payslips) get
applicable: false — the engine refuses rather than guessing
- Can false-flag templated/coached or non-native-English writing — always present as one signal alongside human review
- Free anonymous tier works without a key; free key at https://www.stipple.sh
1---2name: detect-ai-text3description: Estimate whether a document's prose was written by AI, with the linguistic tells and honest abstention on non-prose. Use when the user asks whether an essay, report, CV, submission, or article was AI-4---567# AI-Text Detection89Estimate the probability that a document's prose was written by AI, with the specific linguistic tells and an honest abstention when the document isn't prose. Uses the Stipple API (free anonymous tier).1011## When to use1213- Educators screening student submissions14- Publishers and platforms triaging inbound content15- HR reviewing AI-drafted CVs (flag, don't reject)16- Researchers checking source provenance1718## Instructions19201. **Get the document.** URL, local file path (PDF, DOCX, TXT, MD), or raw text via `--text`.21222. **Run detection.**2324 ```bash25 curl -X POST https://www.stipple.sh/v1/detect-ai-text \26 -F "file=@essay.pdf" \27 -H "Authorization: Bearer $STIPPLE_API_KEY"28 ```2930 For raw text: POST JSON `{"text": "..."}` to the same endpoint.31323. **Interpret the response.**3334 - `applicable: false` — the document is not prose (forms, tables, scans, spreadsheets). Detection is **deliberately refused** rather than guessed. Report this and stop.35 - `probability` — model confidence (0–1), NOT a calibrated truth36 - `lean` — "ai" | "human" | "unsure"37 - `tells[]` — the specific phrases/patterns flagged (e.g. "It is important to note that", uniform sentence length, low burstiness)38 - `reasoning` — why the model reached its verdict39 - `limitations` — always present; the API states its own noise profile40414. **Report honestly.** This measures *style, not authenticity*:4243 | Question | Tool |44 |---|---|45 | Was this *written* by AI? (style) | this skill |46 | Is this document *genuine/tampered*? (forensics) | `verify-document` skill |4748 A human can write generically; an AI can write plainly. One triage signal, never a verdict.4950## Output format5152```53AI-written probability: 0.87 (lean: ai)54prose ratio: 0.825556linguistic tells:57 - "It is important to note that, in today's fast-paced world" (stock phrase)58 - uniform sentence length across paragraphs59 - low burstiness; no authorial asides6061reasoning: The text relies entirely on formulaic transition clichés...62limitations: The probability is the model's CONFIDENCE, not a calibrated truth.63```6465## Limitations and Safety6667- AI-text detection is probabilistic and can disproportionately flag templated,68 coached, translated, accessibility-assisted, or non-native-English writing. Do69 not use it as proof of misconduct or as the sole basis for employment, academic,70 publishing, or disciplinary action.71- Uploading a document sends its contents to a hosted third party. Obtain explicit72 approval first, remove unnecessary personal or confidential material, and verify73 the provider's current retention and deletion terms.74- Preserve the original work and give the affected person a meaningful human review75 and appeal path before any consequential decision.7677## Notes7879- Non-prose documents (forms, tables, payslips) get `applicable: false` — the engine refuses rather than guessing80- Can false-flag templated/coached or non-native-English writing — always present as one signal alongside human review81- Free anonymous tier works without a key; free key at https://www.stipple.sh