@rfxlamia/skillkit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/agents/creative-copywriter.md +212 -0
- package/agents/dario-amodei.md +135 -0
- package/agents/doc-simplifier.md +63 -0
- package/agents/kotlin-pro.md +433 -0
- package/agents/red-team.md +136 -0
- package/agents/sam-altman.md +121 -0
- package/agents/seo-manager.md +184 -0
- package/bin/skillkit.js +3 -0
- package/package.json +35 -0
- package/skills/adversarial-review/SKILL.md +219 -0
- package/skills/baby-education/SKILL.md +260 -0
- package/skills/baby-education/references/advanced-techniques.md +323 -0
- package/skills/baby-education/references/transformations.md +345 -0
- package/skills/been-there-done-that/SKILL.md +455 -0
- package/skills/been-there-done-that/references/analysis-patterns.md +162 -0
- package/skills/been-there-done-that/references/git-commands.md +132 -0
- package/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
- package/skills/coolhunter/SKILL.md +270 -0
- package/skills/coolhunter/assets/elicitation-methods.csv +51 -0
- package/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
- package/skills/coolhunter/references/workflow-execution.md +238 -0
- package/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
- package/skills/creative-copywriting/SKILL.md +324 -0
- package/skills/creative-copywriting/databases/README.md +60 -0
- package/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
- package/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
- package/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
- package/skills/creative-copywriting/databases/power-words.csv +201 -0
- package/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
- package/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
- package/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
- package/skills/creative-copywriting/references/carousel-psychology.md +223 -0
- package/skills/creative-copywriting/references/hook-anatomy.md +169 -0
- package/skills/creative-copywriting/references/power-word-science.md +134 -0
- package/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
- package/skills/diverse-content-gen/SKILL.md +201 -0
- package/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
- package/skills/diverse-content-gen/references/research-findings.md +379 -0
- package/skills/diverse-content-gen/references/task-workflows.md +241 -0
- package/skills/diverse-content-gen/references/tool-integration.md +419 -0
- package/skills/diverse-content-gen/references/troubleshooting.md +426 -0
- package/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
- package/skills/framework-critical-thinking/SKILL.md +220 -0
- package/skills/framework-critical-thinking/references/bias_detector.md +375 -0
- package/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
- package/skills/framework-critical-thinking/references/memory_curator.md +161 -0
- package/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
- package/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
- package/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
- package/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
- package/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
- package/skills/framework-critical-thinking/references/self_verification.md +388 -0
- package/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
- package/skills/framework-initiative/SKILL.md +231 -0
- package/skills/framework-initiative/references/examples.md +150 -0
- package/skills/framework-initiative/references/impact-analysis.md +157 -0
- package/skills/framework-initiative/references/intent-patterns.md +145 -0
- package/skills/framework-initiative/references/star-framework.md +165 -0
- package/skills/humanize-docs/SKILL.md +203 -0
- package/skills/humanize-docs/references/advanced-techniques.md +13 -0
- package/skills/humanize-docs/references/core-transformations.md +368 -0
- package/skills/humanize-docs/references/detection-patterns.md +400 -0
- package/skills/humanize-docs/references/examples-gallery.md +374 -0
- package/skills/imagine/SKILL.md +190 -0
- package/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
- package/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
- package/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
- package/skills/imagine/references/artstyle-sciencesaru.md +276 -0
- package/skills/pre-deploy-checklist/README.md +26 -0
- package/skills/pre-deploy-checklist/SKILL.md +153 -0
- package/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
- package/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
- package/skills/prompt-engineering/SKILL.md +209 -0
- package/skills/prompt-engineering/references/advanced-combinations.md +444 -0
- package/skills/prompt-engineering/references/chain-of-thought.md +140 -0
- package/skills/prompt-engineering/references/decision_matrix.md +220 -0
- package/skills/prompt-engineering/references/few-shot.md +346 -0
- package/skills/prompt-engineering/references/json-format.md +270 -0
- package/skills/prompt-engineering/references/natural-language.md +420 -0
- package/skills/prompt-engineering/references/pitfalls.md +365 -0
- package/skills/prompt-engineering/references/prompt-chaining.md +498 -0
- package/skills/prompt-engineering/references/react.md +108 -0
- package/skills/prompt-engineering/references/self-consistency.md +322 -0
- package/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
- package/skills/prompt-engineering/references/xml-format.md +220 -0
- package/skills/prompt-engineering/references/yaml-format.md +488 -0
- package/skills/prompt-engineering/references/zero-shot.md +74 -0
- package/skills/quick-spec/SKILL.md +280 -0
- package/skills/quick-spec/assets/tech-spec-template.md +74 -0
- package/skills/quick-spec/references/step-01-understand.md +189 -0
- package/skills/quick-spec/references/step-02-investigate.md +144 -0
- package/skills/quick-spec/references/step-03-generate.md +128 -0
- package/skills/quick-spec/references/step-04-review.md +173 -0
- package/skills/quick-spec/tests/test_scenarios.md +83 -0
- package/skills/quick-spec/tests/test_skill.py +136 -0
- package/skills/readme-expert/SKILL.md +538 -0
- package/skills/readme-expert/knowledge/INDEX.md +192 -0
- package/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
- package/skills/readme-expert/knowledge/application/script-executor.md +604 -0
- package/skills/readme-expert/knowledge/application/template-library.md +822 -0
- package/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
- package/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
- package/skills/red-teaming/SKILL.md +321 -0
- package/skills/red-teaming/references/ai-llm-redteam.md +517 -0
- package/skills/red-teaming/references/attack-techniques.md +410 -0
- package/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
- package/skills/red-teaming/references/tools-frameworks.md +446 -0
- package/skills/releasing/.skillkit-mode +1 -0
- package/skills/releasing/SKILL.md +225 -0
- package/skills/releasing/references/version-detection.md +108 -0
- package/skills/screenwriter/SKILL.md +273 -0
- package/skills/screenwriter/references/advanced-techniques.md +216 -0
- package/skills/screenwriter/references/pipeline-integration.md +266 -0
- package/skills/skillkit/.claude-plugin/plugin.json +27 -0
- package/skills/skillkit/CHANGELOG.md +484 -0
- package/skills/skillkit/SKILL.md +511 -0
- package/skills/skillkit/commands/skillkit.md +6 -0
- package/skills/skillkit/commands/validate-plan.md +6 -0
- package/skills/skillkit/commands/verify.md +6 -0
- package/skills/skillkit/knowledge/INDEX.md +352 -0
- package/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
- package/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
- package/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
- package/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
- package/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
- package/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
- package/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
- package/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
- package/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
- package/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
- package/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
- package/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
- package/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
- package/skills/skillkit/knowledge/plugin-guide.md +614 -0
- package/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
- package/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
- package/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
- package/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
- package/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
- package/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
- package/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
- package/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
- package/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
- package/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
- package/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
- package/skills/skillkit/references/proposal-generation.md +982 -0
- package/skills/skillkit/references/rationalization-catalog.md +75 -0
- package/skills/skillkit/references/research-methodology.md +661 -0
- package/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
- package/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
- package/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
- package/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
- package/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
- package/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
- package/skills/skillkit/scripts/decision_helper.py +799 -0
- package/skills/skillkit/scripts/init_skill.py +400 -0
- package/skills/skillkit/scripts/init_subagent.py +231 -0
- package/skills/skillkit/scripts/migration_helper.py +669 -0
- package/skills/skillkit/scripts/package_skill.py +211 -0
- package/skills/skillkit/scripts/pattern_detector.py +381 -0
- package/skills/skillkit/scripts/pattern_detector_new.py +382 -0
- package/skills/skillkit/scripts/pressure_tester.py +157 -0
- package/skills/skillkit/scripts/quality_scorer.py +999 -0
- package/skills/skillkit/scripts/quick_validate.py +100 -0
- package/skills/skillkit/scripts/security_scanner.py +474 -0
- package/skills/skillkit/scripts/split_skill.py +540 -0
- package/skills/skillkit/scripts/test_generator.py +695 -0
- package/skills/skillkit/scripts/token_estimator.py +493 -0
- package/skills/skillkit/scripts/utils/__init__.py +49 -0
- package/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
- package/skills/skillkit/scripts/utils/output_formatter.py +263 -0
- package/skills/skillkit/scripts/utils/reference_validator.py +401 -0
- package/skills/skillkit/scripts/validate_skill.py +594 -0
- package/skills/skillkit/tests/test_behavioral.py +39 -0
- package/skills/skillkit/tests/test_scenarios.md +83 -0
- package/skills/skillkit/tests/test_skill.py +136 -0
- package/skills/social-media-seo/SKILL.md +278 -0
- package/skills/social-media-seo/databases/caption-styles.csv +31 -0
- package/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
- package/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
- package/skills/social-media-seo/databases/hook-formulas.csv +26 -0
- package/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
- package/skills/social-media-seo/databases/thread-structures.csv +26 -0
- package/skills/social-media-seo/databases/viral-patterns.csv +21 -0
- package/skills/social-media-seo/references/analytics-guide.md +321 -0
- package/skills/social-media-seo/references/instagram-seo.md +235 -0
- package/skills/social-media-seo/references/threads-seo.md +305 -0
- package/skills/social-media-seo/references/x-twitter-seo.md +337 -0
- package/skills/social-media-seo/scripts/query_database.py +191 -0
- package/skills/storyteller/SKILL.md +241 -0
- package/skills/storyteller/references/transformation-methodology.md +293 -0
- package/skills/storyteller/references/visual-vocabulary.md +177 -0
- package/skills/thread-pro/SKILL.md +162 -0
- package/skills/thread-pro/anti-ai-patterns.md +120 -0
- package/skills/thread-pro/hook-formulas.md +138 -0
- package/skills/thread-pro/references/anti-ai-patterns.md +120 -0
- package/skills/thread-pro/references/hook-formulas.md +138 -0
- package/skills/thread-pro/references/thread-structures.md +240 -0
- package/skills/thread-pro/references/voice-injection.md +130 -0
- package/skills/thread-pro/thread-structures.md +240 -0
- package/skills/thread-pro/voice-injection.md +130 -0
- package/skills/tinkering/SKILL.md +251 -0
- package/skills/tinkering/references/graduation-checklist.md +100 -0
- package/skills/validate-plan/.skillkit-mode +1 -0
- package/skills/validate-plan/SKILL.md +406 -0
- package/skills/validate-plan/references/dry-principles.md +251 -0
- package/skills/validate-plan/references/gap-analysis-guide.md +320 -0
- package/skills/validate-plan/references/tdd-patterns.md +413 -0
- package/skills/validate-plan/references/yagni-checklist.md +330 -0
- package/skills/verify-before-ship/.skillkit-mode +1 -0
- package/skills/verify-before-ship/SKILL.md +116 -0
- package/skills/verify-before-ship/references/anti-rationalization.md +212 -0
- package/skills/verify-before-ship/references/verification-gates.md +305 -0
- package/skills-manifest.json +217 -0
- package/src/banner.js +10 -0
- package/src/cli.js +30 -0
- package/src/install.js +53 -0
- package/src/install.test.js +40 -0
- package/src/picker.js +74 -0
- package/src/picker.test.js +21 -0
- package/src/scope.js +57 -0
- package/src/scope.test.js +19 -0
- package/src/update.js +34 -0
- package/src/update.test.js +24 -0
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
# AI Signature Detection Patterns
|
|
2
|
+
|
|
3
|
+
Before transforming a document, confirm it's actually AI-generated. This checklist helps you spot the tell-tale patterns.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Quick Detection Test](#quick-detection-test-30-seconds)
|
|
8
|
+
- [Deep Pattern Analysis](#deep-pattern-analysis)
|
|
9
|
+
- [Pattern 1: Structural Symmetry](#pattern-1-structural-symmetry)
|
|
10
|
+
- [Pattern 2: Sentence Length Uniformity](#pattern-2-sentence-length-uniformity)
|
|
11
|
+
- [Pattern 3: Checkbox Addiction](#pattern-3-checkbox-addiction)
|
|
12
|
+
- [Pattern 4: Template Embedding Mania](#pattern-4-template-embedding-mania)
|
|
13
|
+
- [Pattern 5: AI Trigger Phrases](#pattern-5-ai-trigger-phrases)
|
|
14
|
+
- [Pattern 6: Emotional Flatness](#pattern-6-emotional-flatness)
|
|
15
|
+
- [Pattern 7: The Perfect Introduction](#pattern-7-the-perfect-introduction)
|
|
16
|
+
- [Pattern 8: Conclusion Obsession](#pattern-8-conclusion-obsession)
|
|
17
|
+
- [Edge Cases & False Positives](#edge-cases--false-positives)
|
|
18
|
+
- [Detection Workflow](#detection-workflow)
|
|
19
|
+
- [Real-World Examples](#real-world-examples)
|
|
20
|
+
- [Summary Checklist](#summary-checklist)
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Quick Detection Test (30 seconds)
|
|
25
|
+
|
|
26
|
+
Count how many of these the document has:
|
|
27
|
+
|
|
28
|
+
1. ☐ Checkbox spam (5+ checkboxes in single section)
|
|
29
|
+
2. ☐ CAPS LOCK emphasis for warnings
|
|
30
|
+
3. ☐ Template embedding (full code blocks >50 lines)
|
|
31
|
+
4. ☐ Perfect paragraph symmetry (all sections same length)
|
|
32
|
+
5. ☐ Zero sentence variation (all 15-20 words)
|
|
33
|
+
6. ☐ AI trigger phrases (see list below)
|
|
34
|
+
7. ☐ Emotional flatness (no personality)
|
|
35
|
+
8. ☐ Structure too perfect (intro/body/conclusion every time)
|
|
36
|
+
|
|
37
|
+
**Scoring:**
|
|
38
|
+
- 5+ boxes checked → **Definitely AI-generated**
|
|
39
|
+
- 3-4 boxes → **Probably AI-generated, proceed with caution**
|
|
40
|
+
- 1-2 boxes → **Might be human, analyze deeper**
|
|
41
|
+
- 0 boxes → **Likely human-written, don't transform**
|
|
42
|
+
|
|
43
|
+
## Deep Pattern Analysis
|
|
44
|
+
|
|
45
|
+
### Pattern 1: Structural Symmetry
|
|
46
|
+
|
|
47
|
+
**What to look for:**
|
|
48
|
+
|
|
49
|
+
Every section has the same structure - usually 3 paragraphs, each 4-5 sentences, each sentence 15-20 words.
|
|
50
|
+
|
|
51
|
+
**Example (AI-generated):**
|
|
52
|
+
```markdown
|
|
53
|
+
## Feature A
|
|
54
|
+
Paragraph 1: 5 sentences, 80 words
|
|
55
|
+
Paragraph 2: 5 sentences, 85 words
|
|
56
|
+
Paragraph 3: 4 sentences, 75 words
|
|
57
|
+
|
|
58
|
+
## Feature B
|
|
59
|
+
Paragraph 1: 5 sentences, 82 words
|
|
60
|
+
Paragraph 2: 5 sentences, 83 words
|
|
61
|
+
Paragraph 3: 4 sentences, 77 words
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
**Human writing:** Wildly uneven. One section might be 1 paragraph, next is 5 paragraphs.
|
|
65
|
+
|
|
66
|
+
**Detection method:**
|
|
67
|
+
Count paragraphs per section. If 80%+ of sections have same paragraph count, it's AI.
|
|
68
|
+
|
|
69
|
+
### Pattern 2: Sentence Length Uniformity
|
|
70
|
+
|
|
71
|
+
**What to look for:**
|
|
72
|
+
|
|
73
|
+
AI aims for ~17 words per sentence. Humans swing from 3 to 40.
|
|
74
|
+
|
|
75
|
+
**AI example:**
|
|
76
|
+
```
|
|
77
|
+
The system validates user input before processing (7 words).
|
|
78
|
+
It checks for required fields and data types (8 words).
|
|
79
|
+
Then it proceeds to the next validation step (8 words).
|
|
80
|
+
All errors are logged for debugging purposes (7 words).
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
**Human example:**
|
|
84
|
+
```
|
|
85
|
+
The system validates input. Obviously.
|
|
86
|
+
|
|
87
|
+
But here's the thing - it doesn't just check if required fields exist, it actually runs
|
|
88
|
+
a pretty sophisticated validation pipeline that catches edge cases most developers wouldn't
|
|
89
|
+
even think about until they hit production and everything explodes.
|
|
90
|
+
|
|
91
|
+
All errors get logged. Thank god.
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**Detection method:**
|
|
95
|
+
Calculate standard deviation of sentence word count. If <3, probably AI.
|
|
96
|
+
|
|
97
|
+
### Pattern 3: Checkbox Addiction
|
|
98
|
+
|
|
99
|
+
**What to look for:**
|
|
100
|
+
|
|
101
|
+
AI LOVES checklists. It will turn everything into checkboxes.
|
|
102
|
+
|
|
103
|
+
**Common checkbox patterns (AI signatures):**
|
|
104
|
+
|
|
105
|
+
```markdown
|
|
106
|
+
- [x] Task 1: Do thing (AC: #1)
|
|
107
|
+
- [x] Subtask 1a
|
|
108
|
+
- [x] Subtask 1b
|
|
109
|
+
- [x] Task 2: Do other thing (AC: #2)
|
|
110
|
+
- [x] Subtask 2a
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Notice:
|
|
114
|
+
- Double-nested checkboxes
|
|
115
|
+
- Every item has acceptance criteria reference
|
|
116
|
+
- Everything is "completed" (all [x] not [ ])
|
|
117
|
+
- Format is too consistent
|
|
118
|
+
|
|
119
|
+
**Human checkbox patterns:**
|
|
120
|
+
|
|
121
|
+
```markdown
|
|
122
|
+
- Install dependencies
|
|
123
|
+
- Configure .env file (copy from .env.example)
|
|
124
|
+
- Run migrations
|
|
125
|
+
- ??? (profit)
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
Notice:
|
|
129
|
+
- Mix of [ ] and natural bullets
|
|
130
|
+
- Inconsistent formatting
|
|
131
|
+
- Jokes ("??? profit")
|
|
132
|
+
- Some items more detailed than others
|
|
133
|
+
|
|
134
|
+
### Pattern 4: Template Embedding Mania
|
|
135
|
+
|
|
136
|
+
**What to look for:**
|
|
137
|
+
|
|
138
|
+
AI embeds ENTIRE code files, even when 10 lines would do.
|
|
139
|
+
|
|
140
|
+
**AI pattern:**
|
|
141
|
+
```markdown
|
|
142
|
+
Here is the complete implementation:
|
|
143
|
+
|
|
144
|
+
[200 lines of Python with every possible edge case]
|
|
145
|
+
|
|
146
|
+
Modify according to your needs.
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
**Human pattern:**
|
|
150
|
+
```markdown
|
|
151
|
+
Here's the basic setup:
|
|
152
|
+
|
|
153
|
+
```python
|
|
154
|
+
config = {
|
|
155
|
+
'api_key': 'your-key',
|
|
156
|
+
'timeout': 30
|
|
157
|
+
}
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
You can add more options (see docs) but honestly this works for 90% of cases.
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
**Detection method:**
|
|
164
|
+
Count code blocks >50 lines. If 3+, likely AI.
|
|
165
|
+
|
|
166
|
+
### Pattern 5: AI Trigger Phrases
|
|
167
|
+
|
|
168
|
+
These phrases are AI signatures. Humans almost never write like this:
|
|
169
|
+
|
|
170
|
+
**High-confidence AI indicators:**
|
|
171
|
+
|
|
172
|
+
| Phrase | Why It's AI | Human Alternative |
|
|
173
|
+
|--------|-------------|-------------------|
|
|
174
|
+
| "Certainly, here is..." | ChatGPT signature | Just start |
|
|
175
|
+
| "It is important to note that..." | Padding | State the fact |
|
|
176
|
+
| "Furthermore, additionally, moreover" | AI loves these | Use "also" or "and" |
|
|
177
|
+
| "Prior to" | Overly formal | "Before" |
|
|
178
|
+
| "In order to" | Redundant | "To" |
|
|
179
|
+
| "Utilize" | AI default | "Use" |
|
|
180
|
+
| "Leverage" | Corporate AI | "Use" |
|
|
181
|
+
| "Facilitate" | More corporate AI | "Help" or "enable" |
|
|
182
|
+
| "Subsequently" | Time padding | "Then" or "next" |
|
|
183
|
+
| "It should be noted" | Useless filler | Delete it |
|
|
184
|
+
| "As previously mentioned" | AI callback | "Remember..." or delete |
|
|
185
|
+
| "At this point in time" | Worst offender | "Now" |
|
|
186
|
+
|
|
187
|
+
**Detection method:**
|
|
188
|
+
Search for these phrases. If 5+ appear, it's AI.
|
|
189
|
+
|
|
190
|
+
### Pattern 6: Emotional Flatness
|
|
191
|
+
|
|
192
|
+
**What to look for:**
|
|
193
|
+
|
|
194
|
+
AI maintains perfect neutral tone. No frustration, excitement, or personality.
|
|
195
|
+
|
|
196
|
+
**AI example:**
|
|
197
|
+
```markdown
|
|
198
|
+
The configuration process involves several steps. Each step must be completed
|
|
199
|
+
in the specified order. Failure to follow the sequence may result in errors.
|
|
200
|
+
Please ensure all requirements are met before proceeding.
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
**Emotional temperature:** 0/10 (robotic)
|
|
204
|
+
|
|
205
|
+
**Human example:**
|
|
206
|
+
```markdown
|
|
207
|
+
Config is annoying but necessary. Do these in order or everything breaks:
|
|
208
|
+
|
|
209
|
+
1. Set up API keys
|
|
210
|
+
2. Configure database (this takes forever)
|
|
211
|
+
3. Run the migration script
|
|
212
|
+
|
|
213
|
+
If you skip step 2, you'll get the world's least helpful error message.
|
|
214
|
+
Ask me how I know.
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
**Emotional temperature:** 6/10 (frustrated but helpful)
|
|
218
|
+
|
|
219
|
+
**Detection clues:**
|
|
220
|
+
- No personal pronouns (I, we, you)
|
|
221
|
+
- No asides or parentheticals
|
|
222
|
+
- No informal language ("stuff", "thing", "kinda")
|
|
223
|
+
- No acknowledgment of pain points
|
|
224
|
+
- Zero humor attempts
|
|
225
|
+
|
|
226
|
+
### Pattern 7: The Perfect Introduction
|
|
227
|
+
|
|
228
|
+
**AI loves this structure:**
|
|
229
|
+
```markdown
|
|
230
|
+
## [Topic]
|
|
231
|
+
|
|
232
|
+
This section explains [X]. It covers [Y] and [Z].
|
|
233
|
+
By the end, you will understand [outcome].
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
**Human writes:**
|
|
237
|
+
```markdown
|
|
238
|
+
## [Topic]
|
|
239
|
+
|
|
240
|
+
Quick version: [X] does [core thing].
|
|
241
|
+
|
|
242
|
+
Longer version if you care: [actual explanation]
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
Or just starts explaining without meta-commentary about what the section will do.
|
|
246
|
+
|
|
247
|
+
**Detection:** If every section starts with "This section explains...", it's AI.
|
|
248
|
+
|
|
249
|
+
### Pattern 8: Conclusion Obsession
|
|
250
|
+
|
|
251
|
+
**AI needs closure:**
|
|
252
|
+
```markdown
|
|
253
|
+
In conclusion, this approach provides several benefits including X, Y, and Z.
|
|
254
|
+
By following these steps, you can successfully implement the solution.
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
**Humans:** Often just stop. Or: "Anyway, that's the basics."
|
|
258
|
+
|
|
259
|
+
**Detection:** If 80%+ of sections have "In conclusion/summary/brief", it's AI.
|
|
260
|
+
|
|
261
|
+
## Edge Cases & False Positives
|
|
262
|
+
|
|
263
|
+
### When Humans Look Like AI
|
|
264
|
+
|
|
265
|
+
**Problem:** Some human writing triggers false positives.
|
|
266
|
+
|
|
267
|
+
**Common causes:**
|
|
268
|
+
1. Non-native English speakers (may use formal constructions)
|
|
269
|
+
2. Academic writing (deliberately formal)
|
|
270
|
+
3. Corporate style guides (mandate certain phrases)
|
|
271
|
+
4. Legal documents (required language)
|
|
272
|
+
|
|
273
|
+
**How to distinguish:**
|
|
274
|
+
|
|
275
|
+
Look for micro-variations:
|
|
276
|
+
- Do they ever use contractions?
|
|
277
|
+
- Is there ANY sentence variety (even slight)?
|
|
278
|
+
- Do they make choices that seem personal (word choice, examples)?
|
|
279
|
+
- Is there ANY personality, even subtle?
|
|
280
|
+
|
|
281
|
+
If yes to 2+, probably human.
|
|
282
|
+
|
|
283
|
+
### When AI Looks Human
|
|
284
|
+
|
|
285
|
+
**Problem:** Advanced AI (GPT-4, Claude) can mimic human patterns if prompted.
|
|
286
|
+
|
|
287
|
+
**Detection strategy:**
|
|
288
|
+
|
|
289
|
+
Look for tell-tale combination:
|
|
290
|
+
- Burstiness BUT too consistent (same pattern every paragraph)
|
|
291
|
+
- Personality BUT generic (could be anyone)
|
|
292
|
+
- Examples BUT too perfect (no rough edges)
|
|
293
|
+
- Contractions BUT in predictable places
|
|
294
|
+
|
|
295
|
+
**Real human writing:** Inconsistent in unpredictable ways. One section formal, next casual, no pattern.
|
|
296
|
+
|
|
297
|
+
## Detection Workflow
|
|
298
|
+
|
|
299
|
+
**Step 1: Quick test (30 sec)**
|
|
300
|
+
Count the 8 checkbox items at top of doc.
|
|
301
|
+
- 5+ → AI, proceed with transformation
|
|
302
|
+
- <5 → Continue to Step 2
|
|
303
|
+
|
|
304
|
+
**Step 2: Structural analysis (2 min)**
|
|
305
|
+
- Check paragraph symmetry
|
|
306
|
+
- Calculate sentence length variation
|
|
307
|
+
- Count checkboxes
|
|
308
|
+
|
|
309
|
+
**Step 3: Linguistic analysis (2 min)**
|
|
310
|
+
- Search for AI trigger phrases
|
|
311
|
+
- Assess emotional temperature
|
|
312
|
+
- Check for perfect intros/conclusions
|
|
313
|
+
|
|
314
|
+
**Step 4: Confidence score**
|
|
315
|
+
- 8+ AI signals → High confidence, transform aggressively
|
|
316
|
+
- 5-7 AI signals → Medium confidence, transform moderately
|
|
317
|
+
- 3-4 AI signals → Low confidence, proceed carefully
|
|
318
|
+
- <3 AI signals → Don't transform, might be human
|
|
319
|
+
|
|
320
|
+
## Real-World Examples
|
|
321
|
+
|
|
322
|
+
### Example 1: Flutter Story Documentation (Your Upload)
|
|
323
|
+
|
|
324
|
+
**AI signatures detected:**
|
|
325
|
+
- ✅ Checkbox overload: `- [x] Task 1: Create Flutter project (AC: #1)`
|
|
326
|
+
- ✅ Perfect structure: Every task has subtasks with same format
|
|
327
|
+
- ✅ Template embedding: 8 full code templates
|
|
328
|
+
- ✅ Meta-commentary: "LLM Developer Guardrails" section
|
|
329
|
+
- ✅ Zero emotional content
|
|
330
|
+
- ✅ "CRITICAL", "MANDATORY" caps emphasis
|
|
331
|
+
- ✅ "DO NOT" lists (robot instructions)
|
|
332
|
+
|
|
333
|
+
**Confidence:** 100% AI-generated ✅
|
|
334
|
+
|
|
335
|
+
### Example 2: LevelDB impl.md (Your Upload)
|
|
336
|
+
|
|
337
|
+
**AI signatures detected:**
|
|
338
|
+
- ❌ No checkboxes
|
|
339
|
+
- ❌ Natural flow, varying paragraph lengths
|
|
340
|
+
- ❌ Informal touches: "So maybe even the sharding is not necessary?"
|
|
341
|
+
- ❌ Conversational: "Note that if a level-L file overlaps..."
|
|
342
|
+
- ❌ Real data: Actual experiment results table
|
|
343
|
+
- ❌ Uncertainty: "we might want to...", "perhaps most of..."
|
|
344
|
+
|
|
345
|
+
**Confidence:** 0% AI-generated ❌ (Human-written)
|
|
346
|
+
|
|
347
|
+
### Example 3: Borderline Case
|
|
348
|
+
|
|
349
|
+
```markdown
|
|
350
|
+
## API Configuration
|
|
351
|
+
|
|
352
|
+
To configure the API, you need to set several environment variables.
|
|
353
|
+
The following variables are required:
|
|
354
|
+
|
|
355
|
+
- API_KEY: Your authentication key
|
|
356
|
+
- BASE_URL: The API endpoint
|
|
357
|
+
- TIMEOUT: Request timeout in seconds
|
|
358
|
+
|
|
359
|
+
After setting these variables, restart the application to apply changes.
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**Analysis:**
|
|
363
|
+
- Structure: Somewhat formal but not excessive
|
|
364
|
+
- Checkboxes: Uses bullets, not checkboxes (neutral)
|
|
365
|
+
- Language: "you need" (conversational), "several" (human), but "following variables are required" (AI-ish)
|
|
366
|
+
- Conclusion: "After setting..." (could be either)
|
|
367
|
+
|
|
368
|
+
**Verdict:** Unclear. Could be human writing formally, could be AI writing casually.
|
|
369
|
+
|
|
370
|
+
**Action:** Don't transform yet. Ask for more context or look at rest of document.
|
|
371
|
+
|
|
372
|
+
---
|
|
373
|
+
|
|
374
|
+
## Summary Checklist
|
|
375
|
+
|
|
376
|
+
Use this as your final decision matrix:
|
|
377
|
+
|
|
378
|
+
| Signal | AI Weight | Human Weight |
|
|
379
|
+
|--------|-----------|--------------|
|
|
380
|
+
| 5+ checkboxes per section | +3 | 0 |
|
|
381
|
+
| Perfect paragraph symmetry | +3 | 0 |
|
|
382
|
+
| Sentence length σ < 3 | +3 | 0 |
|
|
383
|
+
| 5+ AI trigger phrases | +2 | 0 |
|
|
384
|
+
| Zero contractions | +2 | 0 |
|
|
385
|
+
| Template dumps >50 lines | +2 | 0 |
|
|
386
|
+
| Every section has intro/conclusion | +2 | 0 |
|
|
387
|
+
| CAPS LOCK emphasis | +1 | 0 |
|
|
388
|
+
| Robot instructions (DO/DON'T lists) | +1 | 0 |
|
|
389
|
+
| Emotional flatness | +1 | 0 |
|
|
390
|
+
| Sentence variety (σ > 8) | 0 | +3 |
|
|
391
|
+
| Asides/parentheticals | 0 | +2 |
|
|
392
|
+
| Informal words (stuff, thing, kinda) | 0 | +2 |
|
|
393
|
+
| Spontaneous humor | 0 | +2 |
|
|
394
|
+
| Contradictions or corrections | 0 | +1 |
|
|
395
|
+
|
|
396
|
+
**Total score:**
|
|
397
|
+
- AI weight 10+ → Transform aggressively
|
|
398
|
+
- AI weight 7-9 → Transform moderately
|
|
399
|
+
- AI weight 4-6 → Transform gently
|
|
400
|
+
- Human weight > AI weight → Don't transform
|