-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguages.json
More file actions
135 lines (135 loc) · 3.33 KB
/
Copy pathlanguages.json
File metadata and controls
135 lines (135 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"schema_version": 1,
"canonical_language": "en",
"default_output_language": "en",
"documentation_languages": [
"en",
"zh"
],
"pairs": [
{
"canonical": "README.md",
"translations": {
"zh": "README.zh.md"
}
},
{
"canonical": "docs/README.md",
"translations": {
"zh": "docs/README.zh.md"
}
},
{
"canonical": "docs/ENGINE.md",
"translations": {
"zh": "docs/ENGINE.zh.md"
}
},
{
"canonical": "docs/framings.md",
"translations": {
"zh": "docs/framings.zh.md"
}
},
{
"canonical": "docs/presets.md",
"translations": {
"zh": "docs/presets.zh.md"
}
},
{
"canonical": "docs/chaining.md",
"translations": {
"zh": "docs/chaining.zh.md"
}
},
{
"canonical": "field-profiles/README.md",
"translations": {
"zh": "field-profiles/README.zh.md"
}
},
{
"canonical": "examples/attack/README.md",
"translations": {
"zh": "examples/attack/README.zh.md"
}
}
],
"canonical_only": [
{
"path": "docs/EVALUATION.md",
"reason": "Project evaluation and design-history record is maintained in canonical English only."
},
{
"path": "CHANGELOG.md",
"reason": "Release history is maintained in canonical English only."
},
{
"path": "CONTRIBUTING.md",
"reason": "Contributor workflow references English-only tooling output, file paths, and CI step names."
},
{
"path": "LICENSE",
"reason": "The legal license text is not translated by this project."
},
{
"path": "skills/**/*.md",
"reason": "Runtime skill prompts use the canonical English machine skeleton."
},
{
"path": "commands/*.md",
"reason": "Slash-command wrappers use canonical English names, flags, and prompt contracts."
},
{
"path": "presets/*.md",
"reason": "Preset schemas and shipped runtime prompt bodies remain canonical-only."
},
{
"path": "field-profiles/_template.md",
"reason": "The field-profile schema template keeps fixed English section identifiers."
},
{
"path": "field-profiles/physics.md",
"reason": "Field-profile definitions may contain any language and are not documentation translations."
},
{
"path": "examples/attack/sample-claim.md",
"reason": "Example input fixtures are preserved as authored."
},
{
"path": "examples/attack/expected-out/*.md",
"reason": "Expected-output fixtures are canonical snapshots, not parallel documentation."
},
{
"path": ".claude-plugin/*.json",
"reason": "Plugin manifests use fixed machine-readable English keys and values."
},
{
"path": "docs/languages.json",
"reason": "The language-version manifest is itself a machine-readable source of truth."
}
],
"required_runtime_flags": [
"--lang"
],
"fixed_machine_tokens": [
"CONVERGED",
"WIDTH_CAP_REACHED",
"DEPTH_CAP_REACHED",
"ROUNDS_EXHAUSTED",
"EARLY_STOP",
"INCOMPLETE_FORBIDDEN",
"NEEDS_VERIFICATION",
"MERGED_INTO",
"root_unparseable",
"root_underspecified",
"tool_blocked",
"language_mismatch",
"en",
"zh",
"zh-Hans",
"zh-Hant",
"auto"
]
}