feat(gr-blog-post): + Citability-by-Design Spec (134-167w + definition pattern + signals)
Browse files- skills/gr-blog-post/SKILL.md +85 -0
skills/gr-blog-post/SKILL.md
CHANGED
|
@@ -109,3 +109,88 @@ faq:
|
|
| 109 |
|---|---|
|
| 110 |
| GitHub PAT | `GITHUB_TOKEN` |
|
| 111 |
| DeepSeek / Teamo(翻译) | `DEEPSEEK_API_KEY` / `TEAMOROUTER_API_KEY` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
|---|---|
|
| 110 |
| GitHub PAT | `GITHUB_TOKEN` |
|
| 111 |
| DeepSeek / Teamo(翻译) | `DEEPSEEK_API_KEY` / `TEAMOROUTER_API_KEY` |
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
---
|
| 115 |
+
|
| 116 |
+
## Citability-by-Design Spec (mandatory for NEW articles, 2026-05-18+)
|
| 117 |
+
|
| 118 |
+
**Rationale**: Verified 2026-05-07 that retrofitting old articles hits a ~65-68/100 citability ceiling no matter what (booster passages, surgical rewrites, splitting all produce diminishing returns). **Writing new articles from this spec produces 75-85 baseline directly.** Spec saves ~3 hours of post-hoc citability fixing per article.
|
| 119 |
+
|
| 120 |
+
### Per-section structural requirements
|
| 121 |
+
|
| 122 |
+
Every H2/H3 section must satisfy ALL of:
|
| 123 |
+
|
| 124 |
+
1. **Word count: 134-167** (the AI-extraction sweet spot validated by zubair-trabzada/geo-seo-claude scoring)
|
| 125 |
+
- Under 134 → self_containment drops below 10/25
|
| 126 |
+
- Over 167 → same penalty for being too long for AI chunks
|
| 127 |
+
- Use a word counter as you draft
|
| 128 |
+
|
| 129 |
+
2. **Opening sentence = definition pattern**, one of:
|
| 130 |
+
- `[Thing] is [definition]`
|
| 131 |
+
- `[Thing] refers to [scope]`
|
| 132 |
+
- `[Thing] means [unpacking]`
|
| 133 |
+
- `In other words, [Thing] is...`
|
| 134 |
+
- `[Thing] can be defined as...`
|
| 135 |
+
|
| 136 |
+
3. **Section contains at least ONE of each**:
|
| 137 |
+
- ✅ Original research signal: "Our X-launch dataset", "We tracked", "Our 2026 audit measured", "Our analysis of N samples"
|
| 138 |
+
- ✅ Specific number with unit: "60K stars", "30 launches", "$79/mo", "67%"
|
| 139 |
+
- ✅ Specific named product/tool: "Taplio ($39/mo)", "Surfe", "PH Deck", "Loom" — by name not "[the tool]"
|
| 140 |
+
|
| 141 |
+
### Heading conventions
|
| 142 |
+
|
| 143 |
+
- H1 = page title (≤ 70 chars after title-suffix fix from 2026-05-07)
|
| 144 |
+
- H2 should be **question form** ~40% of the time:
|
| 145 |
+
- ✅ "How do I get cited by Perplexity in 2026?"
|
| 146 |
+
- ✅ "What is the GEO three-piece set?"
|
| 147 |
+
- ❌ "Perplexity citation strategy"
|
| 148 |
+
|
| 149 |
+
- Each H2 should contain primary keyword **or** clear question intent
|
| 150 |
+
|
| 151 |
+
### Article-level requirements
|
| 152 |
+
|
| 153 |
+
- 5-12 H2 sections (sweet spot: 7-8)
|
| 154 |
+
- TL;DR or "Citable Statistics" block IN FIRST H2 (becomes top-scored passage)
|
| 155 |
+
- FAQ Schema JSON-LD at end (5+ Q&A using exact User-Search-Form questions)
|
| 156 |
+
- `last_modified_at:` frontmatter (flows through to dateModified schema)
|
| 157 |
+
- canonical_url self-reference
|
| 158 |
+
- hreflang_ja / hreflang_ko if multilingual variants exist
|
| 159 |
+
|
| 160 |
+
### Citability self-check before publishing
|
| 161 |
+
|
| 162 |
+
Run **before** committing the article:
|
| 163 |
+
|
| 164 |
+
```bash
|
| 165 |
+
python3 skills/gr-geo-cite/scripts/citability-scorer.py /local/path/to/draft.html
|
| 166 |
+
```
|
| 167 |
+
|
| 168 |
+
Target: page score ≥ 75. If under 70, revise top 2 weakest passages.
|
| 169 |
+
|
| 170 |
+
### Anti-patterns (avoid)
|
| 171 |
+
|
| 172 |
+
- ❌ Long expository paragraphs (200+ words) — split into 2 sections at 134-167 each
|
| 173 |
+
- ❌ Generic transitions ("Now let's discuss...") — replace with definition pattern
|
| 174 |
+
- ❌ Marketing fluff ("the best way to") — replace with measured claims with data
|
| 175 |
+
- ❌ "[Tool name]" placeholders — always cite the specific tool by name + price
|
| 176 |
+
- ❌ Bullet lists with single words — combine into prose with definition + example pattern
|
| 177 |
+
|
| 178 |
+
### Real-data benchmark
|
| 179 |
+
|
| 180 |
+
Articles from 2026-05-07 audit (without this spec):
|
| 181 |
+
|
| 182 |
+
| Article (old, retrofit) | Score | Pattern |
|
| 183 |
+
|---|---|---|
|
| 184 |
+
| PH playbook master | 65 | Top passage 74, dragged by 62s |
|
| 185 |
+
| Social listening | 68 | Best of the 5 (early Citable Stats) |
|
| 186 |
+
| Community directory | 62 | Lifted from 54 via booster (+12% from 0 to 1 sweet-spot passage) |
|
| 187 |
+
|
| 188 |
+
Predicted from spec (NEW articles):
|
| 189 |
+
|
| 190 |
+
| Spec compliance | Predicted score |
|
| 191 |
+
|---|---|
|
| 192 |
+
| All sections 134-167 + definition pattern + 1 original signal | **78-85** |
|
| 193 |
+
| 80% sections compliant, 20% legacy structure | 72-77 |
|
| 194 |
+
| 50% compliant | 65-70 (same as retrofit ceiling) |
|
| 195 |
+
|
| 196 |
+
The marginal value of strict compliance is **~10 points** vs partial compliance.
|