← Back to list

narrative-tests
by aevatarAI
⭐ 10🍴 7📅 Jan 22, 2026
SKILL.md
name: narrative-tests description: Help the author write narrative unit tests (rules/constraints) and interpret failures with a concrete fix roadmap.
When to use
- Author wants stronger control: “改一处就知道后面哪里拽歪”
- After any major deviation or canon change
Test writing principles
- Tests are author intent made explicit, not bureaucracy.
- Prefer rules that are:
- specific (who/what/when)
- checkable (can locate failure in concrete text)
- stable (won’t change every chapter)
Recommended categories
- Canon rules: power system, forbidden knowledge, hard constraints
- Timeline rules: ordering, causality, “X must happen before Y”
- Character rules: motivation consistency, relationship milestones
- Information revelation: “before chapter N, reader must not know X”
Output files
narrative_tests.md: test suite definition (author editable)narrative_test_report.md: run result (failures + location + fix options)
v1 Test Format (deterministic)
当前实现(v1)支持在 narrative_tests.md 中嵌入一个 ```json 代码块:
{
"suiteId": "default",
"cases": [
{
"id": "no-spoiler-before-1",
"severity": "ERROR",
"type": "must_not_contain_before_chapter",
"untilChapter": 1,
"pattern": "SPOILER",
"message": "Chapter 1 must not contain SPOILER."
}
]
}
支持的 type(v1):
must_containmust_not_containmust_not_contain_before_chapter
Failure handling (must produce options)
For each failure, provide:
- where it breaks (chapter/beat/excerpt)
- why it breaks (rule violated, drift introduced by what change)
- routes (choose 1):
- minimal patch (small local edit)
- propagate change (update outline/canon + future chapters)
- branch rewrite (keep mainline stable)
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon