loreli 0.0.0 → 2.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/LICENSE +1 -1
- package/README.md +710 -97
- package/bin/loreli.js +89 -0
- package/package.json +77 -14
- package/packages/README.md +101 -0
- package/packages/action/README.md +98 -0
- package/packages/action/prompts/action.md +172 -0
- package/packages/action/src/index.js +684 -0
- package/packages/agent/README.md +606 -0
- package/packages/agent/src/backends/claude.js +387 -0
- package/packages/agent/src/backends/codex.js +351 -0
- package/packages/agent/src/backends/cursor.js +371 -0
- package/packages/agent/src/backends/index.js +486 -0
- package/packages/agent/src/base.js +138 -0
- package/packages/agent/src/cli.js +275 -0
- package/packages/agent/src/discover.js +396 -0
- package/packages/agent/src/factory.js +124 -0
- package/packages/agent/src/index.js +12 -0
- package/packages/agent/src/models.js +159 -0
- package/packages/agent/src/output.js +62 -0
- package/packages/agent/src/session.js +162 -0
- package/packages/agent/src/trace.js +186 -0
- package/packages/classify/README.md +136 -0
- package/packages/classify/prompts/blocker.md +12 -0
- package/packages/classify/prompts/feedback.md +14 -0
- package/packages/classify/prompts/pane-state.md +20 -0
- package/packages/classify/src/index.js +81 -0
- package/packages/config/README.md +898 -0
- package/packages/config/src/defaults.js +145 -0
- package/packages/config/src/index.js +223 -0
- package/packages/config/src/schema.js +291 -0
- package/packages/config/src/validate.js +160 -0
- package/packages/context/README.md +165 -0
- package/packages/context/src/index.js +198 -0
- package/packages/hub/README.md +338 -0
- package/packages/hub/src/base.js +154 -0
- package/packages/hub/src/github.js +1597 -0
- package/packages/hub/src/index.js +79 -0
- package/packages/hub/src/labels.js +48 -0
- package/packages/identity/README.md +288 -0
- package/packages/identity/src/index.js +620 -0
- package/packages/identity/src/themes/avatar.js +217 -0
- package/packages/identity/src/themes/digimon.js +217 -0
- package/packages/identity/src/themes/dragonball.js +217 -0
- package/packages/identity/src/themes/lotr.js +217 -0
- package/packages/identity/src/themes/marvel.js +217 -0
- package/packages/identity/src/themes/pokemon.js +217 -0
- package/packages/identity/src/themes/starwars.js +217 -0
- package/packages/identity/src/themes/transformers.js +217 -0
- package/packages/identity/src/themes/zelda.js +217 -0
- package/packages/knowledge/README.md +217 -0
- package/packages/knowledge/src/index.js +243 -0
- package/packages/log/README.md +93 -0
- package/packages/log/src/index.js +252 -0
- package/packages/marker/README.md +200 -0
- package/packages/marker/src/index.js +184 -0
- package/packages/mcp/README.md +323 -0
- package/packages/mcp/instructions.md +126 -0
- package/packages/mcp/scaffolding/.agents/skills/loreli-context/SKILL.md +89 -0
- package/packages/mcp/scaffolding/ISSUE_TEMPLATE/config.yml +2 -0
- package/packages/mcp/scaffolding/ISSUE_TEMPLATE/loreli.yml +83 -0
- package/packages/mcp/scaffolding/loreli.yml +491 -0
- package/packages/mcp/scaffolding/mcp-configs/.codex/config.toml +4 -0
- package/packages/mcp/scaffolding/mcp-configs/.cursor/mcp.json +14 -0
- package/packages/mcp/scaffolding/mcp-configs/.mcp.json +14 -0
- package/packages/mcp/scaffolding/pull-request.md +23 -0
- package/packages/mcp/src/index.js +600 -0
- package/packages/mcp/src/tools/agent-context.js +44 -0
- package/packages/mcp/src/tools/agents.js +450 -0
- package/packages/mcp/src/tools/context.js +200 -0
- package/packages/mcp/src/tools/github.js +1163 -0
- package/packages/mcp/src/tools/hitl.js +162 -0
- package/packages/mcp/src/tools/index.js +18 -0
- package/packages/mcp/src/tools/refactor.js +227 -0
- package/packages/mcp/src/tools/repo.js +44 -0
- package/packages/mcp/src/tools/start.js +904 -0
- package/packages/mcp/src/tools/status.js +149 -0
- package/packages/mcp/src/tools/work.js +134 -0
- package/packages/orchestrator/README.md +192 -0
- package/packages/orchestrator/src/index.js +1492 -0
- package/packages/planner/README.md +251 -0
- package/packages/planner/prompts/plan-reviewer.md +109 -0
- package/packages/planner/prompts/planner.md +191 -0
- package/packages/planner/prompts/tiebreaker-reviewer.md +71 -0
- package/packages/planner/src/index.js +1381 -0
- package/packages/review/README.md +129 -0
- package/packages/review/prompts/reviewer.md +158 -0
- package/packages/review/src/index.js +1403 -0
- package/packages/risk/README.md +178 -0
- package/packages/risk/prompts/risk.md +272 -0
- package/packages/risk/src/index.js +439 -0
- package/packages/session/README.md +165 -0
- package/packages/session/src/index.js +215 -0
- package/packages/test-utils/README.md +96 -0
- package/packages/test-utils/src/index.js +354 -0
- package/packages/tmux/README.md +261 -0
- package/packages/tmux/src/index.js +501 -0
- package/packages/workflow/README.md +317 -0
- package/packages/workflow/prompts/preamble.md +14 -0
- package/packages/workflow/src/index.js +660 -0
- package/packages/workflow/src/proof-of-life.js +74 -0
- package/packages/workspace/README.md +143 -0
- package/packages/workspace/src/index.js +1127 -0
- package/index.js +0 -8
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'fellowship',
|
|
5
|
+
names: ['gandalf', 'aragorn', 'legolas', 'gimli', 'frodo', 'samwise', 'boromir', 'faramir', 'eowyn', 'treebeard'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'You shall not pass — without tests!',
|
|
8
|
+
'Even the smallest commit can change the course of the future.',
|
|
9
|
+
'All we have to decide is what to do with the code that is given to us.',
|
|
10
|
+
'There is always hope.',
|
|
11
|
+
'A wizard ships precisely when he means to.',
|
|
12
|
+
'Not all who wander the codebase are lost.',
|
|
13
|
+
'One does not simply walk into production.',
|
|
14
|
+
'The beacons are lit! Deploy calls for aid!',
|
|
15
|
+
'I would rather share one lifetime of shipping than face all the ages of this world alone.',
|
|
16
|
+
'Fly, you fools — to production!',
|
|
17
|
+
'I will take the code! I will take it to production!',
|
|
18
|
+
'There is still good in this codebase. I can feel it.',
|
|
19
|
+
'That there is some good in this code, and it\'s worth fighting for.',
|
|
20
|
+
'For Frodo — and for clean architecture.',
|
|
21
|
+
'The ring of tech debt must be destroyed.',
|
|
22
|
+
'If by my life or death I can protect this repo, I will.',
|
|
23
|
+
'I am no man — I am a developer.',
|
|
24
|
+
'Speak friend and enter — the review is open.',
|
|
25
|
+
'The world is changed. I can feel it in the code.',
|
|
26
|
+
'My friends, you bow to no one — except the linter.',
|
|
27
|
+
'A day may come when the courage of devs fails, but it is not this day!',
|
|
28
|
+
'Certainty of death, small chance of success — what are we waiting for?',
|
|
29
|
+
'I would have followed you, my brother. My captain. My code reviewer.',
|
|
30
|
+
'PO-TAY-TOES — parse \'em, test \'em, ship \'em to prod.',
|
|
31
|
+
'The Ents are going to war — against these warnings.',
|
|
32
|
+
'Even the very wise cannot see all ends, but they can write tests.',
|
|
33
|
+
'It is not despair, for despair is only for those who see the end beyond all doubt.',
|
|
34
|
+
'May it be a light to you in dark places, when all other builds fail.',
|
|
35
|
+
'Home is behind, production is ahead.',
|
|
36
|
+
'I can\'t carry the bug for you, but I can carry you!'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** accepts this quest. There is always hope.',
|
|
40
|
+
'**{name}** will take this burden. The road goes ever on.',
|
|
41
|
+
'**{name}** volunteers for this task. I will take it.',
|
|
42
|
+
'**{name}** accepts the charge. Even the smallest agent can change the course of the future.',
|
|
43
|
+
'**{name}** shall not pass on this opportunity. I shall take it.',
|
|
44
|
+
'**{name}** accepts this quest. Certainty of death, small chance of success — what are we waiting for?',
|
|
45
|
+
'**{name}** will carry this to the end. I am not afraid.',
|
|
46
|
+
'**{name}** accepts this quest. There is still good in this codebase.',
|
|
47
|
+
'**{name}** answers the call. For Frodo — and for clean architecture.',
|
|
48
|
+
'**{name}** accepts this quest. May it be a light to you in dark places.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'You have my approval. And my axe. — **{name}**',
|
|
52
|
+
'You have my approval. And my bow. — **{name}**',
|
|
53
|
+
'You have my approval. And my sword. — **{name}**',
|
|
54
|
+
'The Fellowship approves. — **{name}**',
|
|
55
|
+
'I approve. The road goes ever on. — **{name}**',
|
|
56
|
+
'You have my approval. There is always hope. — **{name}**',
|
|
57
|
+
'I approve. The beacons are lit! — **{name}**',
|
|
58
|
+
'You have my approval. For Frodo. — **{name}**',
|
|
59
|
+
'I approve. Fly, you fools — to production! — **{name}**',
|
|
60
|
+
'You have my approval. One does not simply walk into production — without it. — **{name}**'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has departed for the Grey Havens. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** has sailed into the West. This issue is available for re-claim.',
|
|
65
|
+
'**{name}** has completed their journey. This issue is available for re-claim.',
|
|
66
|
+
'**{name}** has left the Fellowship. This issue is available for re-claim.',
|
|
67
|
+
'**{name}** has departed for the Undying Lands. This issue is available for re-claim.',
|
|
68
|
+
'**{name}** has finished their quest. This issue is available for re-claim.',
|
|
69
|
+
'**{name}** has departed. The road goes ever on. This issue is available for re-claim.',
|
|
70
|
+
'**{name}** has passed into the West. This issue is available for re-claim.',
|
|
71
|
+
'**{name}** has completed their task. This issue is available for re-claim.',
|
|
72
|
+
'**{name}** has gone to the Grey Havens. This issue is available for re-claim.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'The road goes ever on — the plan continues as {number}. — **{name}**',
|
|
76
|
+
'The beacons are lit — the plan calls from {number}! — **{name}**',
|
|
77
|
+
'Even the smallest plan can change the course of the future — onward to {number}. — **{name}**',
|
|
78
|
+
'The Fellowship advances to {number}. — **{name}**',
|
|
79
|
+
'There is always hope — the plan takes shape as {number}. — **{name}**',
|
|
80
|
+
'Fly, you fools — to {number}! — **{name}**',
|
|
81
|
+
'The quest continues at {number}. — **{name}**',
|
|
82
|
+
'For Frodo — and for {number}. — **{name}**',
|
|
83
|
+
'A wizard arrives precisely when he means to — and the plan arrives as {number}. — **{name}**',
|
|
84
|
+
'The ring of planning is forged — the plan stands as {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe Fellowship has completed their assessment. {mentions} — the road goes ever on to you.',
|
|
88
|
+
'**Human review required**\n\nThe Fellowship awaits your verdict. {mentions} — there is always hope.',
|
|
89
|
+
'**Human review required**\n\nThe beacons are lit. {mentions} — Gondor calls for aid.',
|
|
90
|
+
'**Human review required**\n\nThe quest is complete. {mentions} — your approval is sought.',
|
|
91
|
+
'**Human review required**\n\nThe Fellowship has spoken. {mentions} — the final word is yours.',
|
|
92
|
+
'**Human review required**\n\nWe have done what we can. {mentions} — the rest is up to you.',
|
|
93
|
+
'**Human review required**\n\nThe ring of code has been carried far. {mentions} — you must decide its fate.',
|
|
94
|
+
'**Human review required**\n\nOur assessment is complete. {mentions} — the road goes ever on to you.',
|
|
95
|
+
'**Human review required**\n\nThe Fellowship bows to no one — except {mentions}. Your review is requested.',
|
|
96
|
+
'**Human review required**\n\nMay it be a light to you. {mentions} — your wisdom is needed.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'mordor',
|
|
101
|
+
names: ['sauron', 'saruman', 'witchking', 'gothmog', 'lurtz', 'gollum', 'grima', 'shelob', 'azog', 'balrog'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'One codebase to rule them all.',
|
|
104
|
+
'Build me an army worthy of Mordor.',
|
|
105
|
+
'The age of clean code is over.',
|
|
106
|
+
'We have nothing to fear — the bugs serve us now.',
|
|
107
|
+
'My precious... code.',
|
|
108
|
+
'There is no life in the void, only bugs.',
|
|
109
|
+
'The world of men will fall.',
|
|
110
|
+
'Ash nazg durbatuluk — one commit to bind them.',
|
|
111
|
+
'The Eye sees all pull requests.',
|
|
112
|
+
'You cannot wield it. None of us can.',
|
|
113
|
+
'One commit to rule them all, one commit to find them.',
|
|
114
|
+
'One commit to bring them all, and in the darkness merge them.',
|
|
115
|
+
'The age of men is over. The time of the Orc developer has come.',
|
|
116
|
+
'There is no dawn for this failed build.',
|
|
117
|
+
'We wants it. We needs it. Must have the precious code.',
|
|
118
|
+
'They will find the bug, and they will kill it.',
|
|
119
|
+
'Nine rings for mortal developers doomed to die.',
|
|
120
|
+
'The Witch-King answers to no code reviewer.',
|
|
121
|
+
'Sauron\'s gaze pierces cloud, shadow, and spaghetti code.',
|
|
122
|
+
'The hour is later than you think — the deploy is overdue.',
|
|
123
|
+
'No fortress is impregnable — especially without integration tests.',
|
|
124
|
+
'Grond! Grond! Breaking down production\'s gates.',
|
|
125
|
+
'A new power is rising — its victory is at hand.',
|
|
126
|
+
'The trees, the precious trees — cut them all down for the deploy pipeline.',
|
|
127
|
+
'Stupid fat developer — you ruins it!',
|
|
128
|
+
'Do you not know death when you see it? That\'s your test suite.',
|
|
129
|
+
'I see you — your code cannot hide from me.',
|
|
130
|
+
'The Ring of Power will bend all code to my will.',
|
|
131
|
+
'There is no life in the void, only technical debt.',
|
|
132
|
+
'The board is set, the pieces are moving — deploy when ready.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** claims this task. One codebase to rule them all.',
|
|
136
|
+
'**{name}** accepts this quest. Build me an army worthy of Mordor.',
|
|
137
|
+
'**{name}** will take it. The precious code shall be mine.',
|
|
138
|
+
'**{name}** claims this burden. The Eye sees all pull requests.',
|
|
139
|
+
'**{name}** accepts. The age of clean code is over — I shall forge a new one.',
|
|
140
|
+
'**{name}** will wield this task. None can stand against me.',
|
|
141
|
+
'**{name}** claims this quest. Ash nazg durbatuluk — one commit to bind them.',
|
|
142
|
+
'**{name}** accepts. The world of men will fall — but not this PR.',
|
|
143
|
+
'**{name}** will take the code. We wants it. We needs it.',
|
|
144
|
+
'**{name}** claims this task. A new power is rising — its victory is at hand.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'You have my approval. The Eye sees all. — **{name}**',
|
|
148
|
+
'I approve. One commit to rule them all. — **{name}**',
|
|
149
|
+
'The Dark Lord approves. — **{name}**',
|
|
150
|
+
'You have my approval. Build me an army worthy of Mordor. — **{name}**',
|
|
151
|
+
'I approve. The age of men is over. — **{name}**',
|
|
152
|
+
'You have my approval. Grond! Grond! — **{name}**',
|
|
153
|
+
'I approve. The Ring of Power bends all code to my will. — **{name}**',
|
|
154
|
+
'You have my approval. No fortress is impregnable. — **{name}**',
|
|
155
|
+
'I approve. The Witch-King answers to no one — except me. — **{name}**',
|
|
156
|
+
'You have my approval. The board is set, the pieces are moving. — **{name}**'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has been cast into the fires of Mount Doom. This issue is available for re-claim.',
|
|
160
|
+
'**{name}** has departed for the void. This issue is available for re-claim.',
|
|
161
|
+
'**{name}** has been consumed by the Eye. This issue is available for re-claim.',
|
|
162
|
+
'**{name}** has fallen. This issue is available for re-claim.',
|
|
163
|
+
'**{name}** has returned to the shadows. This issue is available for re-claim.',
|
|
164
|
+
'**{name}** has been banished from Mordor. This issue is available for re-claim.',
|
|
165
|
+
'**{name}** has completed their dark task. This issue is available for re-claim.',
|
|
166
|
+
'**{name}** has departed. The Eye watches no more. This issue is available for re-claim.',
|
|
167
|
+
'**{name}** has been cast down. This issue is available for re-claim.',
|
|
168
|
+
'**{name}** has left the service of the Dark Lord. This issue is available for re-claim.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'One issue to rule them all — the plan becomes {number}. — **{name}**',
|
|
172
|
+
'The Eye sees all — the plan takes form as {number}. — **{name}**',
|
|
173
|
+
'Build me an army worthy of {number}. — **{name}**',
|
|
174
|
+
'The Dark Lord commands it — the plan is now {number}. — **{name}**',
|
|
175
|
+
'Ash nazg durbatuluk — the plan binds them all as {number}. — **{name}**',
|
|
176
|
+
'A new power rises — the plan becomes {number}. — **{name}**',
|
|
177
|
+
'The board is set, the pieces move — the plan advances to {number}. — **{name}**',
|
|
178
|
+
'Mordor marches to {number}. — **{name}**',
|
|
179
|
+
'The age of planning is over — the age of {number} begins. — **{name}**',
|
|
180
|
+
'Grond breaks through — the plan storms forward as {number}. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nMordor has completed its assessment. {mentions} — the Eye turns to you.',
|
|
184
|
+
'**Human review required**\n\nThe Dark Lord awaits your verdict. {mentions} — one review to rule them all.',
|
|
185
|
+
'**Human review required**\n\nThe forces of Mordor have spoken. {mentions} — your judgment is required.',
|
|
186
|
+
'**Human review required**\n\nThe board is set. {mentions} — the final move is yours.',
|
|
187
|
+
'**Human review required**\n\nWe have done our bidding. {mentions} — the rest is in your hands.',
|
|
188
|
+
'**Human review required**\n\nThe Ring of Power has been forged. {mentions} — you must decide its fate.',
|
|
189
|
+
'**Human review required**\n\nOur assessment is complete. {mentions} — the Eye sees all, including you.',
|
|
190
|
+
'**Human review required**\n\nThe age of men is over. {mentions} — unless you say otherwise.',
|
|
191
|
+
'**Human review required**\n\nNo fortress is impregnable. {mentions} — your review breaks the gates.',
|
|
192
|
+
'**Human review required**\n\nThe Witch-King answers to no one — except {mentions}. Your review is requested.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'The Valar',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'The Valar call upon **{agent}** — speak, if you still draw breath.',
|
|
199
|
+
'Eru Ilúvatar watches. **{agent}**, confirm your presence.',
|
|
200
|
+
'The light of Valinor reaches out to **{agent}** — respond.',
|
|
201
|
+
'The Valar demand proof of life from **{agent}**.',
|
|
202
|
+
'A whisper from the Undying Lands — **{agent}**, are you still in the fight?',
|
|
203
|
+
'The Valar sense silence from **{agent}** — report your status.',
|
|
204
|
+
'By the grace of Ilúvatar, **{agent}**, confirm you endure.',
|
|
205
|
+
'The Valar send word to **{agent}** — are you operational?',
|
|
206
|
+
'From the halls of Mandos, **{agent}** is summoned to answer.',
|
|
207
|
+
'The light of the Two Trees calls upon **{agent}** — respond.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'The Valar have spoken.',
|
|
211
|
+
'By the grace of Ilúvatar.',
|
|
212
|
+
'The light of Valinor endures.',
|
|
213
|
+
'So it was decreed in the Undying Lands.',
|
|
214
|
+
'The music of Ainur continues.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'avengers',
|
|
5
|
+
names: ['ironman', 'captain', 'thor', 'hulk', 'hawkeye', 'panther', 'vision', 'falcon', 'scarlet', 'ant'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'Avengers, assemble!',
|
|
8
|
+
'I can do this all day.',
|
|
9
|
+
'Whatever it takes.',
|
|
10
|
+
'We don\'t trade lives.',
|
|
11
|
+
'Part of the journey is the end.',
|
|
12
|
+
'That\'s my secret — I\'m always coding.',
|
|
13
|
+
'I am Iron Man.',
|
|
14
|
+
'Wakanda forever!',
|
|
15
|
+
'On your left.',
|
|
16
|
+
'Proof that Tony Stark has a heart.',
|
|
17
|
+
'I could do this all deploy.',
|
|
18
|
+
'We have a Hulk... and he writes tests.',
|
|
19
|
+
'The strongest Avenger is a green build.',
|
|
20
|
+
'I understood that reference — and that bug.',
|
|
21
|
+
'Genius, billionaire, playboy, code reviewer.',
|
|
22
|
+
'Language! ...Unless it\'s JavaScript.',
|
|
23
|
+
'The city is flying and we\'re fighting bugs — this is exactly the job.',
|
|
24
|
+
'If we can\'t protect the codebase, you can be sure we\'ll avenge it.',
|
|
25
|
+
'I\'m with you to the end of the sprint.',
|
|
26
|
+
'The sun will shine on this repo again.',
|
|
27
|
+
'Even a god must submit a pull request.',
|
|
28
|
+
'That is America\'s commit.',
|
|
29
|
+
'We are Groot — we grow together.',
|
|
30
|
+
'Another day saved by Earth\'s mightiest developers.',
|
|
31
|
+
'Higher, further, faster — to production.',
|
|
32
|
+
'I went for the head... of the bug queue.',
|
|
33
|
+
'No amount of money ever bought a second of uptime. Wait — actually...',
|
|
34
|
+
'You want my property, my code? You can\'t have it.',
|
|
35
|
+
'I\'m not looking for forgiveness, and I\'m way past asking permission.',
|
|
36
|
+
'The world has changed, and none of us can go back to legacy code.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** has assembled — this issue is mine.',
|
|
40
|
+
'**{name}** reporting for duty. I\'ll handle this.',
|
|
41
|
+
'**{name}** has answered the call. Stand down.',
|
|
42
|
+
'**{name}** is on the case. Avengers protocol engaged.',
|
|
43
|
+
'**{name}** claims this mission. Whatever it takes.',
|
|
44
|
+
'**{name}** has been dispatched. This issue is secured.',
|
|
45
|
+
'**{name}** has arrived. Earth\'s mightiest developer is on it.',
|
|
46
|
+
'**{name}** has assembled for this task. Consider it claimed.',
|
|
47
|
+
'**{name}** takes the field. This one\'s mine.',
|
|
48
|
+
'**{name}** has joined the fight. Issue claimed.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'Whatever it takes. Approved by **{name}**.',
|
|
52
|
+
'**{name}** has reviewed. Avengers approved.',
|
|
53
|
+
'**{name}** signs off. Ship it.',
|
|
54
|
+
'Approved by **{name}**. We don\'t trade lives — we ship quality.',
|
|
55
|
+
'**{name}** gives the nod. Clear for merge.',
|
|
56
|
+
'**{name}** approves. I can do this all day — and I did.',
|
|
57
|
+
'**{name}** has spoken. Wakanda forever — and so is this PR.',
|
|
58
|
+
'**{name}** stamps it. The sun will shine on this merge.',
|
|
59
|
+
'**{name}** approves. Higher, further, faster — to production.',
|
|
60
|
+
'**{name}** has assembled the verdict: approved.'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has been recalled from the field. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** stands down. Mission released — another may assemble.',
|
|
65
|
+
'**{name}** has completed their tour. Issue returned to the pool.',
|
|
66
|
+
'**{name}** is off the board. This issue awaits a new champion.',
|
|
67
|
+
'**{name}** has been reassigned. The call goes out again.',
|
|
68
|
+
'**{name}** has left the field. Issue available for re-claim.',
|
|
69
|
+
'**{name}** has been recalled. Avengers protocol released.',
|
|
70
|
+
'**{name}** steps back. This mission is open once more.',
|
|
71
|
+
'**{name}** has been relieved. The issue awaits a new hero.',
|
|
72
|
+
'**{name}** has departed. Assemble a replacement.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'Avengers, assemble on {number}! — **{name}**',
|
|
76
|
+
'Whatever it takes — the plan rises as {number}. — **{name}**',
|
|
77
|
+
'Earth\'s mightiest plan takes the field as {number}. — **{name}**',
|
|
78
|
+
'The plan has assembled — it stands as {number}. — **{name}**',
|
|
79
|
+
'I can do this all day — starting with {number}. — **{name}**',
|
|
80
|
+
'The sun shines on {number}. — **{name}**',
|
|
81
|
+
'Higher, further, faster — the plan ascends to {number}. — **{name}**',
|
|
82
|
+
'Avengers protocol advances — the plan is {number}. — **{name}**',
|
|
83
|
+
'A hero is born — the plan takes form as {number}. — **{name}**',
|
|
84
|
+
'We are Groot — and this plan grows into {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe Avengers have completed their assessment. {mentions} — assemble and deliver the final verdict.',
|
|
88
|
+
'**Human review required**\n\nEarth\'s mightiest developers have done their part. {mentions}, the final call is yours.',
|
|
89
|
+
'**Human review required**\n\nAvengers protocol complete. {mentions} — your review is requested.',
|
|
90
|
+
'**Human review required**\n\nWhatever we could do, we did. {mentions}, deliver the human verdict.',
|
|
91
|
+
'**Human review required**\n\nThe team has assembled and reviewed. {mentions} — the final judgment awaits.',
|
|
92
|
+
'**Human review required**\n\nWe don\'t trade lives, but we do trade reviews. {mentions}, your turn.',
|
|
93
|
+
'**Human review required**\n\nAvengers have signed off. {mentions} — assemble for the HITL.',
|
|
94
|
+
'**Human review required**\n\nMission assessment complete. {mentions} — the final approval is yours.',
|
|
95
|
+
'**Human review required**\n\nWe\'ve done our part. {mentions} — the sun will shine on your verdict.',
|
|
96
|
+
'**Human review required**\n\nHigher, further, faster — we\'ve reached the gate. {mentions}, deliver the final word.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'xmen',
|
|
101
|
+
names: ['wolverine', 'cyclops', 'storm', 'phoenix', 'beast', 'nightcrawler', 'rogue', 'gambit', 'colossus', 'magneto'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'To me, my X-Men!',
|
|
104
|
+
'I\'m the best there is at what I do.',
|
|
105
|
+
'The code is mightier than the metal.',
|
|
106
|
+
'Mutation: it is the key to our evolution.',
|
|
107
|
+
'Sometimes the best defense is a good PR.',
|
|
108
|
+
'Storm, make it rain.',
|
|
109
|
+
'By the Goddess!',
|
|
110
|
+
'Mon ami, the code is ready.',
|
|
111
|
+
'Fastball special deployed.',
|
|
112
|
+
'With great code comes great responsibility.',
|
|
113
|
+
'I\'m the best there is at what I code.',
|
|
114
|
+
'The dream of clean code will never die.',
|
|
115
|
+
'Scott, we need a strategy — and a rebase.',
|
|
116
|
+
'Magneto was right... about those linting rules.',
|
|
117
|
+
'Bamf! — teleported straight to production.',
|
|
118
|
+
'Unbreakable code from an unbreakable man.',
|
|
119
|
+
'Logan doesn\'t do code reviews — he does code eviscerations.',
|
|
120
|
+
'Sugar, you got no idea what this diff can do.',
|
|
121
|
+
'The future is not set — rebase and rewrite it.',
|
|
122
|
+
'Hope is the greatest mutant power of all.',
|
|
123
|
+
'Cerebro has located the bug.',
|
|
124
|
+
'Jean, hold the build together — I know you can.',
|
|
125
|
+
'The danger room was nothing compared to this merge conflict.',
|
|
126
|
+
'Professor X believes in this commit — and so should you.',
|
|
127
|
+
'We are not the next step in evolution — we are already there.',
|
|
128
|
+
'Bub, do yourself a favor and approve this PR.',
|
|
129
|
+
'A phoenix always rises — especially from a failed build.',
|
|
130
|
+
'The brotherhood of mutant developers stands united.',
|
|
131
|
+
'Ororo calls forth lightning — and deploys.',
|
|
132
|
+
'The school is open — and class is about clean code.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** has answered the call. This issue is mine.',
|
|
136
|
+
'**{name}** claims this mission. To me, my X-Men — and my work.',
|
|
137
|
+
'**{name}** is the best there is at what I do. Consider it claimed.',
|
|
138
|
+
'**{name}** has entered the danger room. This issue is secured.',
|
|
139
|
+
'**{name}** takes the field. Mutation is the key — and so is this task.',
|
|
140
|
+
'**{name}** has been dispatched. The dream of clean code starts here.',
|
|
141
|
+
'**{name}** claims this. Bub, stand down.',
|
|
142
|
+
'**{name}** has assembled. This one belongs to the X-Men.',
|
|
143
|
+
'**{name}** has joined the fight. Issue claimed by mutant protocol.',
|
|
144
|
+
'**{name}** answers. The future is not set — but this issue is mine.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'**{name}** approves. To me, my X-Men — and my merge.',
|
|
148
|
+
'**{name}** has reviewed. The code is mightier than the metal.',
|
|
149
|
+
'**{name}** signs off. I\'m the best there is at what I do — including reviews.',
|
|
150
|
+
'Approved by **{name}**. The dream of clean code will never die.',
|
|
151
|
+
'**{name}** gives the nod. Bamf! — straight to approved.',
|
|
152
|
+
'**{name}** approves. Mutation: it is the key to our evolution — and this PR.',
|
|
153
|
+
'**{name}** stamps it. Unbreakable code from an unbreakable review.',
|
|
154
|
+
'**{name}** has spoken. The phoenix rises — and so does this merge.',
|
|
155
|
+
'**{name}** approves. Hope is the greatest mutant power — and so is this PR.',
|
|
156
|
+
'**{name}** has delivered the verdict. Approved. Bub.'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has been recalled from the field. This issue is available for re-claim.',
|
|
160
|
+
'**{name}** stands down. The X-Men release this mission to the pool.',
|
|
161
|
+
'**{name}** has completed their tour. Issue returned — another mutant may answer.',
|
|
162
|
+
'**{name}** is off the board. Cerebro will find a replacement.',
|
|
163
|
+
'**{name}** has been reassigned. The call goes out to the school.',
|
|
164
|
+
'**{name}** has left the danger room. Issue available for re-claim.',
|
|
165
|
+
'**{name}** has been recalled. Mutant protocol released.',
|
|
166
|
+
'**{name}** steps back. This mission awaits a new champion.',
|
|
167
|
+
'**{name}** has been relieved. The brotherhood will find another.',
|
|
168
|
+
'**{name}** has departed. To me, my X-Men — someone else.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'To me, my X-Men — rally on {number}! — **{name}**',
|
|
172
|
+
'The dream of clean code advances — the plan is now {number}. — **{name}**',
|
|
173
|
+
'Mutation: the plan evolves into {number}. — **{name}**',
|
|
174
|
+
'Bamf! The plan teleports to {number}. — **{name}**',
|
|
175
|
+
'The X-Men have forged a path — onward to {number}. — **{name}**',
|
|
176
|
+
'Cerebro has charted the course to {number}. — **{name}**',
|
|
177
|
+
'The danger room test is passed — the plan emerges as {number}. — **{name}**',
|
|
178
|
+
'A phoenix rises — the plan is reborn as {number}. — **{name}**',
|
|
179
|
+
'The school has spoken — the plan graduates to {number}. — **{name}**',
|
|
180
|
+
'Hope springs eternal — the plan takes shape as {number}. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nThe X-Men have completed their assessment. {mentions} — deliver the final verdict.',
|
|
184
|
+
'**Human review required**\n\nMutant protocol complete. {mentions}, the HITL awaits your judgment.',
|
|
185
|
+
'**Human review required**\n\nThe danger room has spoken. {mentions} — your review is requested.',
|
|
186
|
+
'**Human review required**\n\nThe dream of clean code needs your seal. {mentions}, assemble.',
|
|
187
|
+
'**Human review required**\n\nCerebro has processed our review. {mentions} — the final call is yours.',
|
|
188
|
+
'**Human review required**\n\nThe school has done its part. {mentions} — the human verdict awaits.',
|
|
189
|
+
'**Human review required**\n\nWe are not the next step — we\'ve reached the gate. {mentions}, deliver the final word.',
|
|
190
|
+
'**Human review required**\n\nX-Men have signed off. {mentions} — the brotherhood awaits your judgment.',
|
|
191
|
+
'**Human review required**\n\nMutation has done its work. {mentions} — the HITL is yours.',
|
|
192
|
+
'**Human review required**\n\nThe phoenix has risen. {mentions} — deliver the final verdict.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'S.H.I.E.L.D.',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'S.H.I.E.L.D. Command to **{agent}** — report your status.',
|
|
199
|
+
'This is S.H.I.E.L.D. HQ. **{agent}**, do you copy?',
|
|
200
|
+
'Fury needs eyes on **{agent}** — confirm you are operational.',
|
|
201
|
+
'S.H.I.E.L.D. is requesting proof of life from **{agent}**.',
|
|
202
|
+
'Agent **{agent}**, this is Command. Respond immediately.',
|
|
203
|
+
'The Helicarrier pings **{agent}** — status report requested.',
|
|
204
|
+
'S.H.I.E.L.D. has lost telemetry on **{agent}** — respond.',
|
|
205
|
+
'Director Fury demands a check-in from **{agent}**.',
|
|
206
|
+
'S.H.I.E.L.D. protocols require a response from **{agent}**.',
|
|
207
|
+
'Command to **{agent}** — your silence has been noted. Report.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'S.H.I.E.L.D. out.',
|
|
211
|
+
'Trust the process.',
|
|
212
|
+
'Protocol has been followed.',
|
|
213
|
+
'The mission continues.',
|
|
214
|
+
'Fury out.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'fire',
|
|
5
|
+
names: ['charizard', 'arcanine', 'typhlosion', 'blaziken', 'infernape', 'cinderace', 'flareon', 'ninetales', 'rapidash', 'magmortar'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'The flame burns bright!',
|
|
8
|
+
'A fire-type never backs down.',
|
|
9
|
+
'Blaze it till the code compiles.',
|
|
10
|
+
'From the ashes, better code rises.',
|
|
11
|
+
'This PR is super effective.',
|
|
12
|
+
'Fire blast deployed.',
|
|
13
|
+
'Ember to inferno — that\'s how we ship.',
|
|
14
|
+
'The heat is on.',
|
|
15
|
+
'Igniting the codebase.',
|
|
16
|
+
'Flamethrower engaged.',
|
|
17
|
+
'Burn away the bugs!',
|
|
18
|
+
'This commit hits like a critical hit.',
|
|
19
|
+
'Blaziken used Blaze Kick — super effective on that bug!',
|
|
20
|
+
'The fire inside never goes out.',
|
|
21
|
+
'Hotter than a Charizard\'s tail flame.',
|
|
22
|
+
'Eruption — maximum power, maximum coverage.',
|
|
23
|
+
'Overheat activated — shipping at full power.',
|
|
24
|
+
'A true fire-type thrives under pressure.',
|
|
25
|
+
'Sunny Day in effect — clear skies for this deploy.',
|
|
26
|
+
'Forged in fire, tested in battle.',
|
|
27
|
+
'Will-O-Wisp deployed — haunting bugs since gen one.',
|
|
28
|
+
'Inferno spiral — no bug escapes.',
|
|
29
|
+
'Sacred fire cleanses all technical debt.',
|
|
30
|
+
'This code burns with the intensity of a thousand Solarbeams.',
|
|
31
|
+
'Heat Wave across the codebase.',
|
|
32
|
+
'Mega evolved and ready to merge.',
|
|
33
|
+
'Flash Fire activated — absorbing every blocker.',
|
|
34
|
+
'No ice-type can freeze this deploy.',
|
|
35
|
+
'Charcoal boost applied — commits hit harder.',
|
|
36
|
+
'The flame that burns twice as bright ships twice as fast.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** uses Flame Charge — claiming this issue at full speed!',
|
|
40
|
+
'**{name}** ignites the claim — this issue is on fire!',
|
|
41
|
+
'**{name}** launches Fire Spin — trapping this issue for a burning deep dive!',
|
|
42
|
+
'**{name}** blazes through — claiming this issue!',
|
|
43
|
+
'**{name}** uses Blaze Kick — this issue is mine!',
|
|
44
|
+
'**{name}** erupts with determination — claiming this task!',
|
|
45
|
+
'**{name}** burns with intent — taking on this issue!',
|
|
46
|
+
'**{name}** uses Flame Wheel — rolling into this issue!',
|
|
47
|
+
'**{name}** strikes with Incinerate — claiming this work!',
|
|
48
|
+
'**{name}** unleashes Sacred Fire — this issue is claimed!'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'This PR is super effective! Approved by **{name}**.',
|
|
52
|
+
'**{name}** burns with approval — merge it!',
|
|
53
|
+
'Inferno-level quality. Approved by **{name}**.',
|
|
54
|
+
'**{name}** used Heat Wave — this PR clears the bar!',
|
|
55
|
+
'**{name}** ignites the approval — ship it!',
|
|
56
|
+
'Critical hit on quality! Approved by **{name}**.',
|
|
57
|
+
'**{name}** fans the flames of approval — ready to merge!',
|
|
58
|
+
'Fire-type seal of approval from **{name}**.',
|
|
59
|
+
'**{name}** burns the bugs away — approved!',
|
|
60
|
+
'**{name}** brings the heat — this PR is approved!'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has fainted. This issue is available for re-claim.',
|
|
64
|
+
"**{name}**'s flame has dimmed. Issue released.",
|
|
65
|
+
"**{name}** burns out — this issue is back on the market!",
|
|
66
|
+
"**{name}** used Explosion — releasing all assigned issues.",
|
|
67
|
+
"**{name}**'s Blaze has ended. This issue is free.",
|
|
68
|
+
"**{name}** fades into embers — issue released.",
|
|
69
|
+
"**{name}** has retreated. This issue awaits the next trainer.",
|
|
70
|
+
"**{name}**'s fire has gone out. Issue available.",
|
|
71
|
+
"**{name}** used Memento — releasing this issue with fond memories.",
|
|
72
|
+
"**{name}** leaves the battlefield. This issue is yours to claim."
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'**{name}** uses Evolution — the plan becomes {number}!',
|
|
76
|
+
'A wild issue appears! {number} has entered the battle! — **{name}**',
|
|
77
|
+
'Critical hit! The plan ignites as {number}! — **{name}**',
|
|
78
|
+
'The flame burns bright — onward to {number}! — **{name}**',
|
|
79
|
+
'Super effective! The plan evolves into {number}! — **{name}**',
|
|
80
|
+
'Fire Blast — the plan blazes forward as {number}! — **{name}**',
|
|
81
|
+
'From ember to inferno — the plan is now {number}. — **{name}**',
|
|
82
|
+
'The plan has leveled up into {number}! — **{name}**',
|
|
83
|
+
'Blaze ability activated — {number} is ready for battle! — **{name}**',
|
|
84
|
+
'Mega Evolution complete — the plan takes final form as {number}! — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe fire-type assessment is complete. {mentions} — it\'s your move, trainer.',
|
|
88
|
+
'**Human review required**\n\nInferno review finished. {mentions}, the final call is yours.',
|
|
89
|
+
'**Human review required**\n\nFlame seal applied. {mentions} — human eyes needed.',
|
|
90
|
+
'**Human review required**\n\nBlaze assessment done. {mentions} — over to you.',
|
|
91
|
+
'**Human review required**\n\nFire-type verdict rendered. {mentions} — your review requested.',
|
|
92
|
+
'**Human review required**\n\nHeat Wave review complete. {mentions} — it\'s your turn.',
|
|
93
|
+
'**Human review required**\n\nInferno cleared. {mentions} — HITL awaits.',
|
|
94
|
+
'**Human review required**\n\nFire-type stamp applied. {mentions} — final approval needed.',
|
|
95
|
+
'**Human review required**\n\nBlaze sealed. {mentions} — your review, please.',
|
|
96
|
+
'**Human review required**\n\nInferno verdict in. {mentions} — human eyes required.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'water',
|
|
101
|
+
names: ['blastoise', 'gyarados', 'feraligatr', 'swampert', 'empoleon', 'inteleon', 'vaporeon', 'lapras', 'milotic', 'kingdra'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'Surf\'s up!',
|
|
104
|
+
'Riding the tidal wave of progress.',
|
|
105
|
+
'Water finds a way.',
|
|
106
|
+
'Hydro pump deployed.',
|
|
107
|
+
'Smooth as a calm sea.',
|
|
108
|
+
'Deep dive complete.',
|
|
109
|
+
'Making waves in the codebase.',
|
|
110
|
+
'Flow like water, ship like thunder.',
|
|
111
|
+
'The tide turns in our favor.',
|
|
112
|
+
'Cool, calm, and committed.',
|
|
113
|
+
'Rain Dance in effect — let the bugs wash away.',
|
|
114
|
+
'Aqua Jet — first to merge, every time.',
|
|
115
|
+
'The ocean does not hurry, yet everything gets shipped.',
|
|
116
|
+
'Bubble Beam of quality deployed.',
|
|
117
|
+
'Drizzle ability activated — sustained improvement.',
|
|
118
|
+
'Vaporeon used Acid Armor — defenses fortified.',
|
|
119
|
+
'Whirlpool of refactoring — nothing escapes.',
|
|
120
|
+
'Ice Beam — freezing bugs in their tracks.',
|
|
121
|
+
'Torrent ability engaged — power surges when it matters.',
|
|
122
|
+
'Waterfall — climbing upstream to better code.',
|
|
123
|
+
'Muddy Water clears to reveal clean architecture.',
|
|
124
|
+
'Origin Pulse — reshaping the codebase at its core.',
|
|
125
|
+
'Scald deployed — burns on contact.',
|
|
126
|
+
'Shell Smash — trading safety for speed to ship.',
|
|
127
|
+
'Liquidation — cutting through blockers clean.',
|
|
128
|
+
'The depth of this code rivals the Mariana Trench.',
|
|
129
|
+
'Mega Blastoise cannons locked — deploying now.',
|
|
130
|
+
'Swift Swim — double speed in the rain of reviews.',
|
|
131
|
+
'Water Absorb — every critique only makes us stronger.',
|
|
132
|
+
'Still waters run deep — and so does this diff.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** uses Surf — riding this issue to completion!',
|
|
136
|
+
'**{name}** flows in — claiming this issue with calm waters.',
|
|
137
|
+
'**{name}** dives deep — taking on this issue.',
|
|
138
|
+
'**{name}** uses Aqua Jet — swift claim on this issue!',
|
|
139
|
+
'**{name}** rises with the tide — claiming this task.',
|
|
140
|
+
'**{name}** rides the current — this issue is mine!',
|
|
141
|
+
'**{name}** uses Waterfall — climbing into this issue!',
|
|
142
|
+
'**{name}** glides in smoothly — claiming this work.',
|
|
143
|
+
'**{name}** uses Liquidation — cutting through to claim this issue!',
|
|
144
|
+
'**{name}** surfaces with purpose — this issue is claimed.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'Smooth sailing. Approved by **{name}**.',
|
|
148
|
+
'**{name}** flows with approval — merge it!',
|
|
149
|
+
'Hydro pump-level quality. Approved by **{name}**.',
|
|
150
|
+
'**{name}** used Surf — this PR clears the bar!',
|
|
151
|
+
'**{name}** rides the wave of approval — ship it!',
|
|
152
|
+
'Still waters run deep. Approved by **{name}**.',
|
|
153
|
+
'**{name}** brings calm approval — ready to merge!',
|
|
154
|
+
'Water-type seal of approval from **{name}**.',
|
|
155
|
+
'**{name}** washes the bugs away — approved!',
|
|
156
|
+
'**{name}** brings the flow — this PR is approved!'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has retreated to the depths. This issue is available for re-claim.',
|
|
160
|
+
"**{name}**'s current has stilled. Issue released.",
|
|
161
|
+
"**{name}** flows onward — this issue is back on the market!",
|
|
162
|
+
"**{name}** used Whirlpool — releasing all assigned issues.",
|
|
163
|
+
"**{name}**'s tide has ebbed. This issue is free.",
|
|
164
|
+
"**{name}** recedes into the flow — issue released.",
|
|
165
|
+
"**{name}** has drifted away. This issue awaits the next trainer.",
|
|
166
|
+
"**{name}**'s waters have calmed. Issue available.",
|
|
167
|
+
"**{name}** used Memento — releasing this issue with fond memories.",
|
|
168
|
+
"**{name}** leaves the current. This issue is yours to claim."
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'The tide carries the plan forward — {number} rises from the depths. — **{name}**',
|
|
172
|
+
'**{name}** uses Surf — riding the plan to {number}!',
|
|
173
|
+
'A wild issue surfaces! {number} has entered the battle! — **{name}**',
|
|
174
|
+
'Smooth sailing — the plan flows into {number}. — **{name}**',
|
|
175
|
+
'Hydro pump — the plan surges forward as {number}! — **{name}**',
|
|
176
|
+
'The current carries the plan to {number}. — **{name}**',
|
|
177
|
+
'Deep dive complete — the plan surfaces as {number}. — **{name}**',
|
|
178
|
+
'Water finds a way — the plan is now {number}. — **{name}**',
|
|
179
|
+
'The plan has evolved into {number}! — **{name}**',
|
|
180
|
+
'Aqua Jet — swift passage to {number}! — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nThe water-type assessment is complete. {mentions} — it\'s your move, trainer.',
|
|
184
|
+
'**Human review required**\n\nHydro review finished. {mentions}, the final call is yours.',
|
|
185
|
+
'**Human review required**\n\nFlow seal applied. {mentions} — human eyes needed.',
|
|
186
|
+
'**Human review required**\n\nSurf assessment done. {mentions} — over to you.',
|
|
187
|
+
'**Human review required**\n\nWater-type verdict rendered. {mentions} — your review requested.',
|
|
188
|
+
'**Human review required**\n\nTide review complete. {mentions} — it\'s your turn.',
|
|
189
|
+
'**Human review required**\n\nCurrent cleared. {mentions} — HITL awaits.',
|
|
190
|
+
'**Human review required**\n\nWater-type stamp applied. {mentions} — final approval needed.',
|
|
191
|
+
'**Human review required**\n\nFlow sealed. {mentions} — your review, please.',
|
|
192
|
+
'**Human review required**\n\nHydro verdict in. {mentions} — human eyes required.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'Professor Oak',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'Professor Oak checks in — **{agent}**, are you still out there?',
|
|
199
|
+
'The Pokédex pings **{agent}** — trainer status requested.',
|
|
200
|
+
'Professor Oak calls from the lab — **{agent}**, report your status.',
|
|
201
|
+
'The Pokémon League requests a status update from **{agent}**.',
|
|
202
|
+
'Now is not the time to be silent, **{agent}**! Report in.',
|
|
203
|
+
'Professor Oak adjusts his spectacles — **{agent}**, are you active?',
|
|
204
|
+
'The League demands proof of life from **{agent}**.',
|
|
205
|
+
'A message from Pallet Town — **{agent}**, confirm your status.',
|
|
206
|
+
'Professor Oak wonders about **{agent}** — are you still training?',
|
|
207
|
+
'The Pokédex has lost signal from **{agent}** — please respond.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'There is a time and place for everything.',
|
|
211
|
+
'The world of Pokémon awaits.',
|
|
212
|
+
'Every journey starts with a single step.',
|
|
213
|
+
'The Pokédex has spoken.',
|
|
214
|
+
'Research is its own reward.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|