Changed the natural-coding definition files to single-pass convergence

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-17 22:38:26 +08:00
co-authored by Claude Fable 5
parent 964006ec6d
commit d46c50a2db
15 changed files with 133 additions and 482 deletions
+9 -6
View File
@@ -16,11 +16,14 @@ Rules:
- Merge the keywords that are closest in meaning first; keep
clearly distinct themes apart as far as the limit allows.
A group may be a single keyword.
- Name each group with a short lowercase phrase, words joined
by hyphens, that best names the theme it gathers. Group
names must be unique.
Output a single JSON array of groups — each group an array of
its member keywords and nothing else:
Output a single JSON object mapping each group name to the
list of its member keywords, and nothing else:
[
["keyword", "another-keyword"],
["keyword"]
]
{
"first-group-name": ["member-keyword", "another-member"],
"second-group-name": ["member-keyword"]
}