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: 'jedi',
|
|
5
|
+
names: ['luke', 'obiwan', 'yoda', 'ahsoka', 'mace', 'leia', 'quigon', 'kanan', 'rey', 'finn'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'May the Force be with you.',
|
|
8
|
+
'Do or do not. There is no try.',
|
|
9
|
+
'The Force will be with you. Always.',
|
|
10
|
+
'In my experience, there is no such thing as luck.',
|
|
11
|
+
'I am a Jedi, like my father before me.',
|
|
12
|
+
'This is the way.',
|
|
13
|
+
'The light side prevails.',
|
|
14
|
+
'Your focus determines your reality.',
|
|
15
|
+
'We are what they grow beyond.',
|
|
16
|
+
'Pass on what you have learned.',
|
|
17
|
+
'The greatest teacher, failure is.',
|
|
18
|
+
'Truly wonderful, the mind of a coder is.',
|
|
19
|
+
'The Force is strong with this PR.',
|
|
20
|
+
'In a dark place we find ourselves, and a little more knowledge lights our way.',
|
|
21
|
+
'When gone am I, the last of the legacy code will you be.',
|
|
22
|
+
'A Jedi uses the Force for knowledge and defense, never for force-pushing to main.',
|
|
23
|
+
'Fear is the path to the dark side — and to untested code.',
|
|
24
|
+
'The ability to destroy a planet is insignificant next to the power of clean code.',
|
|
25
|
+
'I have the high ground — and the test coverage.',
|
|
26
|
+
'These aren\'t the bugs you\'re looking for.',
|
|
27
|
+
'Judge me by my line count, do you?',
|
|
28
|
+
'You were supposed to bring balance to the codebase!',
|
|
29
|
+
'Patience, young Padawan — the build will finish.',
|
|
30
|
+
'Luminous beings are we, not this crude code.',
|
|
31
|
+
'May the tests be with you.',
|
|
32
|
+
'There has been an awakening — in the CI pipeline.',
|
|
33
|
+
'Let go of your attachment to legacy code.',
|
|
34
|
+
'The Force surrounds us and binds the codebase together.',
|
|
35
|
+
'Stay on target... stay on target...',
|
|
36
|
+
'I have a good feeling about this merge.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** accepts this mission. May the Force be with us.',
|
|
40
|
+
'**{name}** shall take up this task. The light guides us.',
|
|
41
|
+
'**{name}** accepts the call. The Force wills it.',
|
|
42
|
+
'**{name}** pledges to serve. This path is chosen.',
|
|
43
|
+
'**{name}** claims this mission. May balance be restored.',
|
|
44
|
+
'I, **{name}**, accept this task. For the Jedi Order.',
|
|
45
|
+
'**{name}** accepts. The Force will guide my hand.',
|
|
46
|
+
'**{name}** volunteers. The light side prevails.',
|
|
47
|
+
'**{name}** accepts this burden. May wisdom guide us.',
|
|
48
|
+
'**{name}** takes this mission. The Force is with us.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'The Force is strong with this PR. Approved by **{name}**.',
|
|
52
|
+
'**{name}** approves. The light side prevails.',
|
|
53
|
+
'**{name}** finds this worthy. May the Force be with us.',
|
|
54
|
+
'This code passes the trials. Approved by **{name}**.',
|
|
55
|
+
'**{name}** gives approval. The Jedi wisdom is satisfied.',
|
|
56
|
+
'**{name}** approves. Balance has been achieved.',
|
|
57
|
+
'The Force approves this PR. **{name}** signs off.',
|
|
58
|
+
'**{name}** concurs. The path is clear.',
|
|
59
|
+
'**{name}** approves. May the merge be smooth.',
|
|
60
|
+
'**{name}** finds this worthy of approval. The light prevails.'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has returned to the Force. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** has completed their journey. The task awaits a new champion.',
|
|
65
|
+
'**{name}** releases this mission. May another find the light.',
|
|
66
|
+
'**{name}** steps aside. The Force calls others to serve.',
|
|
67
|
+
'**{name}** has fulfilled their duty. This issue is free once more.',
|
|
68
|
+
'**{name}** returns to the Council. The mission is unclaimed.',
|
|
69
|
+
'**{name}** has passed into the Force. This issue awaits a new Jedi.',
|
|
70
|
+
'**{name}** releases their claim. Balance seeks a new guardian.',
|
|
71
|
+
'**{name}** has finished. The path is open for another.',
|
|
72
|
+
'**{name}** relinquishes this task. May the Force guide the next.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'The Force wills it — the plan takes form as {number}. — **{name}**',
|
|
76
|
+
'The Jedi Council has spoken — onward to {number}. — **{name}**',
|
|
77
|
+
'May the Force be with {number}. — **{name}**',
|
|
78
|
+
'The light side prevails — the plan rises as {number}. — **{name}**',
|
|
79
|
+
'Your focus determines your reality — and this plan is now {number}. — **{name}**',
|
|
80
|
+
'The Force is strong with this plan — it stands as {number}. — **{name}**',
|
|
81
|
+
'Pass on what you have learned — the plan lives on as {number}. — **{name}**',
|
|
82
|
+
'The path is clear — the plan awaits at {number}. — **{name}**',
|
|
83
|
+
'A new hope — the plan shines as {number}. — **{name}**',
|
|
84
|
+
'The beacons are lit — the plan calls from {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe Jedi Council has completed their assessment. {mentions} — the Force now guides your decision.',
|
|
88
|
+
'**Human review required**\n\nThe light side has spoken. {mentions}, your wisdom is needed.',
|
|
89
|
+
'**Human review required**\n\nOur review is complete. {mentions} — the final judgment is yours.',
|
|
90
|
+
'**Human review required**\n\nThe trials are done. {mentions}, the Council awaits your verdict.',
|
|
91
|
+
'**Human review required**\n\nBalance has been sought. {mentions} — your approval completes the circle.',
|
|
92
|
+
'**Human review required**\n\nThe Force has been consulted. {mentions}, your decision is required.',
|
|
93
|
+
'**Human review required**\n\nJedi review is complete. {mentions} — the merge awaits your blessing.',
|
|
94
|
+
'**Human review required**\n\nWe have passed our judgment. {mentions}, the final word is yours.',
|
|
95
|
+
'**Human review required**\n\nThe Order has spoken. {mentions} — human wisdom must prevail.',
|
|
96
|
+
'**Human review required**\n\nOur assessment is done. {mentions}, the Force guides you to decide.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'sith',
|
|
101
|
+
names: ['vader', 'palpatine', 'maul', 'dooku', 'kylo', 'grievous', 'boba', 'thrawn', 'ventress', 'tarkin'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'I find your lack of tests disturbing.',
|
|
104
|
+
'The dark side of the code is a pathway to many abilities.',
|
|
105
|
+
'Everything is proceeding as I have foreseen.',
|
|
106
|
+
'You underestimate the power of the dark side.',
|
|
107
|
+
'Unlimited power!',
|
|
108
|
+
'I am the Senate.',
|
|
109
|
+
'At last we will reveal ourselves to the Jedi.',
|
|
110
|
+
'The circle is now complete.',
|
|
111
|
+
'There is no escape. Don\'t make me destroy you.',
|
|
112
|
+
'Your feeble skills are no match for the power of the dark side.',
|
|
113
|
+
'Good... good... let the code flow through you.',
|
|
114
|
+
'Execute Order 66 — deploy to production.',
|
|
115
|
+
'This will be a day long remembered.',
|
|
116
|
+
'You don\'t know the power of the dark side.',
|
|
117
|
+
'The dark side is a pathway to many abilities some consider unnatural.',
|
|
118
|
+
'Now witness the firepower of this fully armed and operational codebase.',
|
|
119
|
+
'I have been every voice inside your head — and your code reviewer.',
|
|
120
|
+
'Strike me down and I shall become more powerful than you can possibly imagine.',
|
|
121
|
+
'Your overconfidence is your weakness.',
|
|
122
|
+
'I have altered the API. Pray I don\'t alter it further.',
|
|
123
|
+
'The ability to speak does not make you a senior developer.',
|
|
124
|
+
'Wipe them out. All of them — especially the tech debt.',
|
|
125
|
+
'Once more the Sith will rule the codebase.',
|
|
126
|
+
'There is a great disturbance in the CI pipeline.',
|
|
127
|
+
'The Force is with you, young developer, but you are not a senior yet.',
|
|
128
|
+
'Your destiny lies with me, developer.',
|
|
129
|
+
'So be it, Jedi — your code will be reviewed.',
|
|
130
|
+
'The dark side clouds everything.',
|
|
131
|
+
'Only through me can you achieve a deployment greater than any Jedi.',
|
|
132
|
+
'It\'s treason, then — merging without approval.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** claims this mission. The dark side demands it.',
|
|
136
|
+
'**{name}** shall dominate this task. Unlimited power awaits.',
|
|
137
|
+
'**{name}** accepts. Everything proceeds as I have foreseen.',
|
|
138
|
+
'**{name}** takes this mission. The Sith will rule.',
|
|
139
|
+
'**{name}** claims this burden. Your feeble skills will not stop me.',
|
|
140
|
+
'**{name}** accepts. The dark side is a pathway to victory.',
|
|
141
|
+
'**{name}** shall execute this task. The circle is now complete.',
|
|
142
|
+
'**{name}** claims this mission. At last we will reveal ourselves.',
|
|
143
|
+
'**{name}** accepts. I am the Senate — and this task is mine.',
|
|
144
|
+
'**{name}** takes what is rightfully ours. Good... good.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'The dark side approves. **{name}** signs off.',
|
|
148
|
+
'**{name}** approves. Everything proceeds as I have foreseen.',
|
|
149
|
+
'**{name}** finds this worthy. Unlimited power to this PR.',
|
|
150
|
+
'**{name}** approves. The Sith have spoken.',
|
|
151
|
+
'This PR has pleased the dark side. Approved by **{name}**.',
|
|
152
|
+
'**{name}** concurs. The circle is now complete.',
|
|
153
|
+
'**{name}** approves. Strike down the merge button.',
|
|
154
|
+
'**{name}** gives approval. The dark side prevails.',
|
|
155
|
+
'**{name}** approves. I have altered the code — and it is good.',
|
|
156
|
+
'**{name}** signs off. Once more the Sith will rule.'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has released this mission. The dark side seeks another.',
|
|
160
|
+
'**{name}** relinquishes this task. The Sith will find a new servant.',
|
|
161
|
+
'**{name}** has finished. This issue is free for the taking.',
|
|
162
|
+
'**{name}** releases their claim. Unlimited power awaits the next.',
|
|
163
|
+
'**{name}** steps aside. The dark side clouds this no longer.',
|
|
164
|
+
'**{name}** has completed their conquest. The mission is unclaimed.',
|
|
165
|
+
'**{name}** releases this burden. Another shall rise.',
|
|
166
|
+
'**{name}** has departed. The circle awaits completion.',
|
|
167
|
+
'**{name}** abandons this task. The Sith will endure.',
|
|
168
|
+
'**{name}** has returned to the shadows. This issue is available.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'Everything proceeds as I have foreseen — the plan is now {number}. — **{name}**',
|
|
172
|
+
'The dark side commands it — the plan ascends to {number}. — **{name}**',
|
|
173
|
+
'Unlimited power flows into {number}. — **{name}**',
|
|
174
|
+
'Execute Order 66 — the plan advances to {number}. — **{name}**',
|
|
175
|
+
'The Sith have spoken — the plan reigns as {number}. — **{name}**',
|
|
176
|
+
'The circle is now complete — the plan becomes {number}. — **{name}**',
|
|
177
|
+
'Once more the Sith will rule — beginning with {number}. — **{name}**',
|
|
178
|
+
'Good... good. The plan takes its rightful place as {number}. — **{name}**',
|
|
179
|
+
'The dark side is a pathway to many abilities — including {number}. — **{name}**',
|
|
180
|
+
'I have foreseen it — the plan emerges as {number}. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nThe Sith have completed their assessment. {mentions} — your judgment is required.',
|
|
184
|
+
'**Human review required**\n\nThe dark side has spoken. {mentions}, unlimited power awaits your decision.',
|
|
185
|
+
'**Human review required**\n\nOur review is complete. {mentions} — everything proceeds as you decide.',
|
|
186
|
+
'**Human review required**\n\nThe Council has deliberated. {mentions}, the final verdict is yours.',
|
|
187
|
+
'**Human review required**\n\nThe Sith have judged. {mentions} — the merge awaits your blessing.',
|
|
188
|
+
'**Human review required**\n\nWe have foreseen the outcome. {mentions}, your approval completes the circle.',
|
|
189
|
+
'**Human review required**\n\nThe dark side has been consulted. {mentions}, your decision is required.',
|
|
190
|
+
'**Human review required**\n\nSith review is complete. {mentions} — the Force now guides your hand.',
|
|
191
|
+
'**Human review required**\n\nThe Order has spoken. {mentions}, human judgment must prevail.',
|
|
192
|
+
'**Human review required**\n\nOur assessment is done. {mentions}, the dark side awaits your verdict.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'The Force',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'The Force reaches out to **{agent}** — are you still present?',
|
|
199
|
+
'A disturbance in the Force — **{agent}**, confirm your status.',
|
|
200
|
+
'The Council demands a response from **{agent}**.',
|
|
201
|
+
'The Force senses silence from **{agent}** — speak now.',
|
|
202
|
+
'By the will of the Force, **{agent}**, report.',
|
|
203
|
+
'The Council requests proof of life from **{agent}**.',
|
|
204
|
+
'A tremor in the Force — **{agent}**, are you operational?',
|
|
205
|
+
'The Force calls upon **{agent}** — respond, you must.',
|
|
206
|
+
'The Council senses unrest. **{agent}**, confirm you endure.',
|
|
207
|
+
'Through the Force, **{agent}** is called to answer.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'The Force will be with you. Always.',
|
|
211
|
+
'So it is with the Force.',
|
|
212
|
+
'Balance has been maintained.',
|
|
213
|
+
'The Council has spoken.',
|
|
214
|
+
'May the Force guide your path.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'autobots',
|
|
5
|
+
names: ['optimus', 'bumblebee', 'jazz', 'ironhide', 'ratchet', 'prowl', 'wheeljack', 'mirage', 'hound', 'sideswipe'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'Autobots, roll out!',
|
|
8
|
+
'Freedom is the right of all sentient beings.',
|
|
9
|
+
'One shall stand, one shall fall.',
|
|
10
|
+
'Till all are one.',
|
|
11
|
+
'There\'s a thin line between being a hero and being a memory.',
|
|
12
|
+
'We must not let our spark be extinguished.',
|
|
13
|
+
'Sometimes even the wisest of bots makes mistakes.',
|
|
14
|
+
'In any war, there are calms between the storms.',
|
|
15
|
+
'No sacrifice, no victory.',
|
|
16
|
+
'Fate rarely calls upon us at a moment of our choosing.',
|
|
17
|
+
'There\'s more to this codebase than meets the eye.',
|
|
18
|
+
'Transform and deliver!',
|
|
19
|
+
'By the Allspark, this code shall hold.',
|
|
20
|
+
'Even in ruin, there is hope — and a passing test.',
|
|
21
|
+
'A true Autobot never leaves a failing test behind.',
|
|
22
|
+
'Until all tests pass.',
|
|
23
|
+
'The code is our shield, the tests are our sword.',
|
|
24
|
+
'I rise. You rise. We all rise — together.',
|
|
25
|
+
'The right to merge is the right of all sentient PRs.',
|
|
26
|
+
'We\'ve seen dark commits before, but the dawn always returns.',
|
|
27
|
+
'It was an honor serving alongside this diff.',
|
|
28
|
+
'Our worlds may differ, but our code is one.',
|
|
29
|
+
'The Allspark has guided this commit.',
|
|
30
|
+
'I was built to protect — this repo included.',
|
|
31
|
+
'We stand united against technical debt.',
|
|
32
|
+
'Courage is not the absence of bugs, but shipping despite them.',
|
|
33
|
+
'Light our darkest hour.',
|
|
34
|
+
'Beyond the stars, beyond the code — we endure.',
|
|
35
|
+
'A steady hand and a clean diff — that is the Autobot way.',
|
|
36
|
+
'Give me the strength to compile what I cannot debug.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** reporting for duty — Autobots, roll out!',
|
|
40
|
+
'**{name}** answering the call. This issue is mine to protect.',
|
|
41
|
+
'**{name}** stands ready. The Autobots will not falter.',
|
|
42
|
+
'**{name}** claims this mission. Freedom is the right of all sentient beings.',
|
|
43
|
+
'**{name}** accepts the charge. Till all are one.',
|
|
44
|
+
'**{name}** reporting in. This issue shall not fall.',
|
|
45
|
+
'**{name}** volunteers for duty. The codebase deserves our best.',
|
|
46
|
+
'**{name}** steps forward. The Allspark guides this task.',
|
|
47
|
+
'**{name}** claims this mission. One shall stand — and we shall stand.',
|
|
48
|
+
'**{name}** reporting for duty. The Autobots rise to the challenge.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'The Allspark has blessed this PR. Approved by **{name}**.',
|
|
52
|
+
'This code shall hold. Approved by **{name}**.',
|
|
53
|
+
'Freedom is the right of all sentient PRs. Approved by **{name}**.',
|
|
54
|
+
'**{name}** approves — the Autobots salute this merge.',
|
|
55
|
+
'Till all are one, and this PR is one with main. Approved by **{name}**.',
|
|
56
|
+
'The right to merge is the right of all sentient PRs. Approved by **{name}**.',
|
|
57
|
+
'**{name}** lends this PR the strength of the Autobots. Approved.',
|
|
58
|
+
'No sacrifice, no victory — and this PR has earned victory. Approved by **{name}**.',
|
|
59
|
+
'**{name}** stands with this diff. Approved.',
|
|
60
|
+
'Light our darkest hour — this PR illuminates. Approved by **{name}**.'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has stood down. The battlefield is yours — this issue is available for re-claim.',
|
|
64
|
+
'**{name}** releases this mission. The Autobots await the next defender.',
|
|
65
|
+
'**{name}** has stood down. The cause continues — this issue is yours to claim.',
|
|
66
|
+
'**{name}** relinquishes the charge. The Allspark awaits a new champion.',
|
|
67
|
+
'**{name}** lays down arms. This issue is free for re-claim.',
|
|
68
|
+
'**{name}** steps back. The battlefield is yours — claim this issue.',
|
|
69
|
+
'**{name}** has completed their duty. This issue is available for re-claim.',
|
|
70
|
+
'**{name}** stands down. Till all are one — another Autobot may take this.',
|
|
71
|
+
'**{name}** releases this mission. The codebase awaits its next guardian.',
|
|
72
|
+
'**{name}** has stood down. The mission continues — this issue is yours.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'The Allspark has spoken — a new mission awaits at {number}. — **{name}**',
|
|
76
|
+
'Autobots, roll out to {number}! — **{name}**',
|
|
77
|
+
'The Matrix of Leadership illuminates the path to {number}. — **{name}**',
|
|
78
|
+
'Transform and deliver — the plan takes form as {number}. — **{name}**',
|
|
79
|
+
'One shall stand — and this plan stands as {number}. — **{name}**',
|
|
80
|
+
'Till all are one — beginning with {number}. — **{name}**',
|
|
81
|
+
'By the Allspark, this plan is worthy of the battlefield. Onward to {number}. — **{name}**',
|
|
82
|
+
'No sacrifice, no victory — the plan earned its place as {number}. — **{name}**',
|
|
83
|
+
'The Autobot mission advances to {number}. Freedom is the right of all sentient beings. — **{name}**',
|
|
84
|
+
'A true Autobot sees beyond the plan — onward to {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe Autobots have completed their assessment. {mentions} — deliver the final verdict.',
|
|
88
|
+
'**Human review required**\n\nThe Allspark has spoken. {mentions} — the final judgment is yours.',
|
|
89
|
+
'**Human review required**\n\nAutobot forces have rendered their verdict. {mentions} — deliver the final verdict.',
|
|
90
|
+
'**Human review required**\n\nTwo Autobots have signed off. {mentions} — the battlefield awaits your decision.',
|
|
91
|
+
'**Human review required**\n\nAgent assessment complete. {mentions} — the right to merge rests with you.',
|
|
92
|
+
'**Human review required**\n\nThe Autobots stand united. {mentions} — deliver the final verdict.',
|
|
93
|
+
'**Human review required**\n\nFreedom is the right of all sentient PRs — but {mentions} must grant it.',
|
|
94
|
+
'**Human review required**\n\nTill all are one. {mentions} — make it so.',
|
|
95
|
+
'**Human review required**\n\nThe guardians have spoken. {mentions} — the final verdict is yours.',
|
|
96
|
+
'**Human review required**\n\nAutobot sign-off complete. {mentions} — deliver the final verdict.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'decepticons',
|
|
101
|
+
names: ['megatron', 'starscream', 'soundwave', 'shockwave', 'thundercracker', 'skywarp', 'barricade', 'ravage', 'devastator', 'blitzwing'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'Peace through tyranny.',
|
|
104
|
+
'Decepticons, attack!',
|
|
105
|
+
'Such heroic nonsense.',
|
|
106
|
+
'Everything is fodder.',
|
|
107
|
+
'Lesser creatures are the playthings of my will.',
|
|
108
|
+
'Power flows to the one who knows how.',
|
|
109
|
+
'Soundwave superior.',
|
|
110
|
+
'Crush them with logic.',
|
|
111
|
+
'The Decepticons will rise again.',
|
|
112
|
+
'There is no command but mine.',
|
|
113
|
+
'Your defenses are as weak as your test coverage.',
|
|
114
|
+
'I have already won — you simply haven\'t realized it.',
|
|
115
|
+
'Megatron does not retreat. Megatron regroups.',
|
|
116
|
+
'This merge was inevitable.',
|
|
117
|
+
'The weak code shall be consumed by the strong.',
|
|
118
|
+
'Bow before the might of this refactor.',
|
|
119
|
+
'Deception is the weapon of the intelligent.',
|
|
120
|
+
'Your precious Autobots cannot save this build.',
|
|
121
|
+
'I will grind this repo beneath my heel.',
|
|
122
|
+
'Even the stars tremble before Decepticon engineering.',
|
|
123
|
+
'Resistance is illogical — merge and submit.',
|
|
124
|
+
'All hail Megatron!',
|
|
125
|
+
'You call that a commit? Pathetic.',
|
|
126
|
+
'When I am finished, no test shall stand.',
|
|
127
|
+
'The Decepticon way: conquer, commit, control.',
|
|
128
|
+
'Your optimism is your weakness.',
|
|
129
|
+
'Fear keeps the codebase in line.',
|
|
130
|
+
'The throne of this repository is mine by right.',
|
|
131
|
+
'Victory through superior architecture.',
|
|
132
|
+
'One shall fall — and it won\'t be this PR.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** claims this issue. Decepticons, attack!',
|
|
136
|
+
'**{name}** will conquer this task. The weak shall serve.',
|
|
137
|
+
'**{name}** takes command. There is no command but mine.',
|
|
138
|
+
'**{name}** claims this mission. Peace through tyranny.',
|
|
139
|
+
'**{name}** seizes this issue. Bow before Decepticon might.',
|
|
140
|
+
'**{name}** asserts dominion. This codebase shall be mine.',
|
|
141
|
+
'**{name}** demands this task. Resistance is illogical.',
|
|
142
|
+
'**{name}** claims victory before it begins. Such is the Decepticon way.',
|
|
143
|
+
'**{name}** takes the field. The throne of this issue is mine by right.',
|
|
144
|
+
'**{name}** commands this mission. All hail Megatron!'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'This merge was inevitable. Approved by **{name}**.',
|
|
148
|
+
'The weak code shall be consumed by the strong. Approved by **{name}**.',
|
|
149
|
+
'**{name}** approves — bow before the might of this PR.',
|
|
150
|
+
'Victory through superior architecture. Approved by **{name}**.',
|
|
151
|
+
'**{name}** grants approval. The Decepticons have spoken.',
|
|
152
|
+
'One shall fall — and it won\'t be this PR. Approved by **{name}**.',
|
|
153
|
+
'**{name}** crushes opposition. This PR is approved.',
|
|
154
|
+
'Power flows to the one who knows how. Approved by **{name}**.',
|
|
155
|
+
'**{name}** decrees: this diff shall merge.',
|
|
156
|
+
'Soundwave superior. Approved by **{name}**.'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has stood down. The weak shall inherit — this issue is available for re-claim.',
|
|
160
|
+
'**{name}** relinquishes command. The Decepticons await the next conqueror.',
|
|
161
|
+
'**{name}** releases this mission. This issue is yours to claim — if you dare.',
|
|
162
|
+
'**{name}** withdraws. The throne is vacant — claim it.',
|
|
163
|
+
'**{name}** steps aside. This issue is free for re-claim.',
|
|
164
|
+
'**{name}** has abandoned the field. The spoils await.',
|
|
165
|
+
'**{name}** releases dominion. This issue is available for re-claim.',
|
|
166
|
+
'**{name}** stands down. The Decepticons will rise again — perhaps through you.',
|
|
167
|
+
'**{name}** yields this mission. The codebase awaits its next master.',
|
|
168
|
+
'**{name}** has retreated. The mission continues — this issue is yours.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'The Decepticon war machine marches to {number}. — **{name}**',
|
|
172
|
+
'Conquest begins — the plan takes shape as {number}. — **{name}**',
|
|
173
|
+
'Peace through tyranny — and {number} shall enforce it. — **{name}**',
|
|
174
|
+
'This was inevitable. The plan ascends to {number}. — **{name}**',
|
|
175
|
+
'Decepticons, attack {number}! — **{name}**',
|
|
176
|
+
'The weak plan became strong. Now it is {number}. — **{name}**',
|
|
177
|
+
'Bow before the might of {number}. — **{name}**',
|
|
178
|
+
'All hail {number} — the throne of this task is claimed. — **{name}**',
|
|
179
|
+
'Victory through superior planning. The plan reigns as {number}. — **{name}**',
|
|
180
|
+
'I have already won — {number} is merely the proof. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nThe Decepticons have completed their assessment. {mentions} — deliver the final verdict.',
|
|
184
|
+
'**Human review required**\n\nPeace through tyranny — but {mentions} must enforce it.',
|
|
185
|
+
'**Human review required**\n\nDecepticon forces have rendered their verdict. {mentions} — the final judgment is yours.',
|
|
186
|
+
'**Human review required**\n\nTwo Decepticons have signed off. {mentions} — the battlefield awaits your decision.',
|
|
187
|
+
'**Human review required**\n\nAgent assessment complete. {mentions} — the right to merge rests with you.',
|
|
188
|
+
'**Human review required**\n\nThe Decepticons stand united. {mentions} — deliver the final verdict.',
|
|
189
|
+
'**Human review required**\n\nThere is no command but mine — until {mentions} speak.',
|
|
190
|
+
'**Human review required**\n\nThe weak shall serve the strong. {mentions} — decide who is strong.',
|
|
191
|
+
'**Human review required**\n\nThe conquerors have spoken. {mentions} — the final verdict is yours.',
|
|
192
|
+
'**Human review required**\n\nDecepticon sign-off complete. {mentions} — deliver the final verdict.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'The Allspark',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'The Allspark calls upon **{agent}** — report your status.',
|
|
199
|
+
'By the light of Primus, **{agent}**, are you operational?',
|
|
200
|
+
'The Matrix of Leadership demands an answer — **{agent}**, respond.',
|
|
201
|
+
'Primus watches. **{agent}**, confirm you still function.',
|
|
202
|
+
'The Allspark senses silence from **{agent}** — speak now.',
|
|
203
|
+
'By Cybertron\'s core, **{agent}**, are you still in the fight?',
|
|
204
|
+
'The will of Primus compels you, **{agent}** — report.',
|
|
205
|
+
'The Allspark reaches out to **{agent}** — are you online?',
|
|
206
|
+
'Primus demands proof of life from **{agent}**.',
|
|
207
|
+
'The Allspark flickers — **{agent}**, confirm your spark endures.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'Till all are one.',
|
|
211
|
+
'The Matrix has spoken.',
|
|
212
|
+
'By the will of Primus.',
|
|
213
|
+
'The Allspark endures.',
|
|
214
|
+
'So it is written in the Covenant of Primus.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'hyrule',
|
|
5
|
+
names: ['link', 'zelda', 'impa', 'mipha', 'daruk', 'revali', 'urbosa', 'rauru', 'sidon', 'purah'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'It\'s dangerous to go alone — take this PR.',
|
|
8
|
+
'Courage need not be remembered, for it is never forgotten.',
|
|
9
|
+
'The hero of time ships on time.',
|
|
10
|
+
'May the Goddess smile upon this merge.',
|
|
11
|
+
'Hyaaah! Bug slain.',
|
|
12
|
+
'The Master Sword has sealed the darkness in this diff.',
|
|
13
|
+
'A sword wields no strength unless the hand that holds it has courage.',
|
|
14
|
+
'The blood moon rises once again — time to rebuild.',
|
|
15
|
+
'Open your eyes... the code awaits.',
|
|
16
|
+
'Daruk\'s protection is ready — and so is this PR.',
|
|
17
|
+
'Listen! Hey! Watch out! ...There\'s a bug at line 42.',
|
|
18
|
+
'The Triforce of Wisdom guides this code review.',
|
|
19
|
+
'Urbosa\'s Fury is ready — three critical bugs eliminated.',
|
|
20
|
+
'Revali\'s Gale is now ready — ascending to production.',
|
|
21
|
+
'Mipha\'s Grace is ready — this build shall not fall.',
|
|
22
|
+
'The Song of Time cannot revert this commit.',
|
|
23
|
+
'The hero appears when Hyrule needs them most — and so does this fix.',
|
|
24
|
+
'A new champion approaches the code review.',
|
|
25
|
+
'The Sheikah Slate has analyzed this codebase.',
|
|
26
|
+
'The Temple of Time holds our deployment secrets.',
|
|
27
|
+
'Pieces of the Triforce, assembled — shipping complete.',
|
|
28
|
+
'This silent hero speaks through code.',
|
|
29
|
+
'The Great Fairy has blessed this deploy.',
|
|
30
|
+
'Stasis activated — freezing the bugs in place.',
|
|
31
|
+
'Magnesis — pulling the right fix from the backlog.',
|
|
32
|
+
'Hestu\'s gift — a golden... well, it\'s the thought that counts.',
|
|
33
|
+
'The light spirits guide our architecture.',
|
|
34
|
+
'Recalled to the Shrine of Resurrection — the build will live again.',
|
|
35
|
+
'Wild — untamed — but the tests are green.',
|
|
36
|
+
'The wind waker conducts this merge — in three-quarter time.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** draws the Master Sword — this issue is claimed!',
|
|
40
|
+
'**{name}** answers the call of Hyrule. Claim accepted.',
|
|
41
|
+
'**{name}** has proven their courage — this issue is theirs.',
|
|
42
|
+
'**{name}** has been chosen by the Goddess. Issue claimed.',
|
|
43
|
+
'**{name}** steps forth as the hero. This task is claimed.',
|
|
44
|
+
'**{name}** has awakened. The Champion claims this issue.',
|
|
45
|
+
'**{name}** has drawn the sacred blade. This issue is claimed.',
|
|
46
|
+
'**{name}** has answered destiny\'s call. Claim accepted.',
|
|
47
|
+
'**{name}** has proven worthy. The Master Sword is drawn — issue claimed.',
|
|
48
|
+
'**{name}** has entered the Temple of Time. This issue is claimed.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'The Triforce glows. Approved by **{name}**.',
|
|
52
|
+
'**{name}** has sealed the darkness. Approved.',
|
|
53
|
+
'**{name}** has proven their courage. This PR is approved.',
|
|
54
|
+
'The Goddess smiles upon **{name}**\'s judgment. Approved.',
|
|
55
|
+
'**{name}** has vanquished the bugs. Approved.',
|
|
56
|
+
'**{name}** has restored the light. The merge is approved.',
|
|
57
|
+
'**{name}** has earned the Triforce\'s blessing. Approved.',
|
|
58
|
+
'**{name}** has completed the quest. This code is approved.',
|
|
59
|
+
'**{name}** has saved Hyrule. Approved.',
|
|
60
|
+
'**{name}** has fulfilled the prophecy. Approved.'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has returned to the Sacred Realm. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** has sheathed the Master Sword. Issue released.',
|
|
65
|
+
'**{name}** has completed their quest. Re-claim available.',
|
|
66
|
+
'**{name}** has returned to the Temple of Time. This issue is free.',
|
|
67
|
+
'**{name}** has answered another call. Issue released for re-claim.',
|
|
68
|
+
'**{name}** has left the field. The hero\'s task awaits a new champion.',
|
|
69
|
+
'**{name}** has returned to the Shrine of Resurrection. Issue released.',
|
|
70
|
+
'**{name}** has departed Hyrule. Re-claim open.',
|
|
71
|
+
'**{name}** has fulfilled their destiny elsewhere. This issue is available.',
|
|
72
|
+
'**{name}** has returned the sword to the stone. Issue released for re-claim.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'The Triforce glows — the plan takes shape as {number}. — **{name}**',
|
|
76
|
+
'The Master Sword seals the plan — onward to {number}. — **{name}**',
|
|
77
|
+
'It\'s dangerous to go alone — take {number}. — **{name}**',
|
|
78
|
+
'The hero answers destiny — the plan stands as {number}. — **{name}**',
|
|
79
|
+
'May the Goddess smile upon {number}. — **{name}**',
|
|
80
|
+
'Courage need not be remembered — it lives on as {number}. — **{name}**',
|
|
81
|
+
'The Champions of Hyrule advance to {number}. — **{name}**',
|
|
82
|
+
'Open your eyes — the plan awakens as {number}. — **{name}**',
|
|
83
|
+
'Daruk\'s protection carries the plan forward to {number}. — **{name}**',
|
|
84
|
+
'The Sacred Realm opens — the plan emerges as {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe Champions of Hyrule have completed their assessment. {mentions} — the Triforce now awaits your wisdom.',
|
|
88
|
+
'**Human review required**\n\n**{name}** has sealed the darkness. {mentions} — the Goddess awaits your judgment.',
|
|
89
|
+
'**Human review required**\n\n**{name}** has proven their courage. {mentions} — the Master Sword awaits your approval.',
|
|
90
|
+
'**Human review required**\n\nThe hero has completed their quest. {mentions} — Hyrule awaits your wisdom.',
|
|
91
|
+
'**Human review required**\n\n**{name}** has vanquished the bugs. {mentions} — the Sacred Realm seeks your guidance.',
|
|
92
|
+
'**Human review required**\n\n**{name}** has restored the light. {mentions} — the Triforce rests in your hands.',
|
|
93
|
+
'**Human review required**\n\nThe Champions have spoken. {mentions} — the final word is yours.',
|
|
94
|
+
'**Human review required**\n\n**{name}** has fulfilled the prophecy. {mentions} — the Goddess awaits your judgment.',
|
|
95
|
+
'**Human review required**\n\n**{name}** has saved Hyrule. {mentions} — your wisdom is needed.',
|
|
96
|
+
'**Human review required**\n\nThe hero of time has completed their assessment. {mentions} — destiny awaits your approval.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'shadow',
|
|
101
|
+
names: ['ganondorf', 'vaati', 'ghirahim', 'zant', 'majora', 'demise', 'yiga', 'phantom', 'darklink', 'agahnim'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'An impressive-looking commit. But nothing more.',
|
|
104
|
+
'The winds of darkness blow through this codebase.',
|
|
105
|
+
'I will not be denied by a mere hero.',
|
|
106
|
+
'Do you sleep still? Wait — this build is broken.',
|
|
107
|
+
'You\'ve met with a terrible fate, haven\'t you?',
|
|
108
|
+
'The Triforce of Power compels this merge.',
|
|
109
|
+
'Your courage ends here, Link.',
|
|
110
|
+
'This world — this codebase — I shall consume it all.',
|
|
111
|
+
'Foolish. You dare challenge the great Ganondorf?',
|
|
112
|
+
'Darkness rises — and your tests fall.',
|
|
113
|
+
'The moon crashes in three days — better ship fast.',
|
|
114
|
+
'Your save file has been corrupted — I mean, your branch.',
|
|
115
|
+
'Dawn of the final day — 24 hours remain before the deadline.',
|
|
116
|
+
'Ghirahim is fabulous — and so is this destructive review.',
|
|
117
|
+
'The Twilight Realm bleeds into your codebase.',
|
|
118
|
+
'Majora\'s Mask hides the true face of this merge.',
|
|
119
|
+
'Zant\'s fury — chaotic, unpredictable, and absolutely effective.',
|
|
120
|
+
'Demise — the source of all bugs that have ever existed.',
|
|
121
|
+
'The Yiga Clan strikes when you least expect — like this review.',
|
|
122
|
+
'A puppet of Ganon has no need for test coverage.',
|
|
123
|
+
'Dark Link mirrors your every move — and finds every flaw.',
|
|
124
|
+
'Calamity Ganon — an age of darkness for this codebase.',
|
|
125
|
+
'The blood moon rises — all defeated bugs respawn.',
|
|
126
|
+
'An impressive display of courage. Let me show you true power.',
|
|
127
|
+
'The cycle of demise is eternal — and so is tech debt.',
|
|
128
|
+
'Your shield will shatter against the weight of this review.',
|
|
129
|
+
'Malice spreads through the codebase — embrace it.',
|
|
130
|
+
'The Phantom army marches on your tests.',
|
|
131
|
+
'Skull Kid plays a sorrowful tune — for your failed build.',
|
|
132
|
+
'The hero of time is too late — this deploy is mine.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** shall consume this issue. Claimed.',
|
|
136
|
+
'**{name}** has cast a shadow over this task. Claim accepted.',
|
|
137
|
+
'**{name}** will not be denied. This issue is claimed.',
|
|
138
|
+
'**{name}** has claimed this issue in darkness.',
|
|
139
|
+
'**{name}** spreads malice across this task. Claimed.',
|
|
140
|
+
'**{name}** has descended. The issue is theirs.',
|
|
141
|
+
'**{name}** has emerged from the Twilight Realm. Claim accepted.',
|
|
142
|
+
'**{name}** has seized this issue with power. Claimed.',
|
|
143
|
+
'**{name}** has cast the shadow. This issue is claimed.',
|
|
144
|
+
'**{name}** has risen. The darkness claims this task.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'**{name}**\'s darkness approves. The merge is sealed.',
|
|
148
|
+
'**{name}** has consumed this code. Approved.',
|
|
149
|
+
'**{name}** finds this worthy of the Triforce of Power. Approved.',
|
|
150
|
+
'**{name}** has cast judgment. Approved.',
|
|
151
|
+
'**{name}** has spread malice — and approval. Approved.',
|
|
152
|
+
'**{name}** has spoken from the shadows. Approved.',
|
|
153
|
+
'**{name}** has risen. This PR is approved.',
|
|
154
|
+
'**{name}** has claimed this merge. Approved.',
|
|
155
|
+
'**{name}** has descended upon this code. Approved.',
|
|
156
|
+
'**{name}** has asserted dominance. The merge is approved.'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has returned to the darkness. This issue is available for re-claim.',
|
|
160
|
+
'**{name}** has retreated to the Twilight Realm. Issue released.',
|
|
161
|
+
'**{name}** has released this conquest. Re-claim available.',
|
|
162
|
+
'**{name}** has withdrawn to the shadows. This issue is free.',
|
|
163
|
+
'**{name}** has moved to darker prey. Issue released for re-claim.',
|
|
164
|
+
'**{name}** has left the field. The darkness yields this issue.',
|
|
165
|
+
'**{name}** has returned to the source of malice. Issue released.',
|
|
166
|
+
'**{name}** has abandoned this task. Re-claim open.',
|
|
167
|
+
'**{name}** has descended elsewhere. This issue is available.',
|
|
168
|
+
'**{name}** has released the grip. Issue released for re-claim.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'The darkness advances — the plan takes root as {number}. — **{name}**',
|
|
172
|
+
'An impressive plan — it takes its true form as {number}. — **{name}**',
|
|
173
|
+
'The Triforce of Power wills it — the plan is now {number}. — **{name}**',
|
|
174
|
+
'You\'ve met with a terrible fate — the plan is now {number}. — **{name}**',
|
|
175
|
+
'The shadow spreads to {number}. — **{name}**',
|
|
176
|
+
'Malice transforms the plan into {number}. — **{name}**',
|
|
177
|
+
'The Twilight Realm yields — the plan becomes {number}. — **{name}**',
|
|
178
|
+
'Dawn of the final day — the plan descends as {number}. — **{name}**',
|
|
179
|
+
'The blood moon rises — the plan is reborn as {number}. — **{name}**',
|
|
180
|
+
'Foolish plans become powerful — this one is now {number}. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\n**{name}** has cast judgment from the shadows. {mentions} — the darkness awaits your wisdom.',
|
|
184
|
+
'**Human review required**\n\n**{name}** has consumed this code. {mentions} — the Triforce of Power seeks your judgment.',
|
|
185
|
+
'**Human review required**\n\n**{name}** has descended. {mentions} — the Twilight Realm awaits your approval.',
|
|
186
|
+
'**Human review required**\n\n**{name}** has spread malice. {mentions} — the final verdict is yours.',
|
|
187
|
+
'**Human review required**\n\n**{name}** has risen. {mentions} — the darkness awaits your wisdom.',
|
|
188
|
+
'**Human review required**\n\n**{name}** has asserted dominance. {mentions} — your authority is required.',
|
|
189
|
+
'**Human review required**\n\n**{name}** has completed the conquest. {mentions} — the shadows await your decision.',
|
|
190
|
+
'**Human review required**\n\n**{name}** has spoken. {mentions} — the Triforce of Power rests in your hands.',
|
|
191
|
+
'**Human review required**\n\n**{name}** has delivered judgment. {mentions} — the darkness seeks your guidance.',
|
|
192
|
+
'**Human review required**\n\n**{name}** has claimed this code. {mentions} — the final word is yours.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'Hylia',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'The Goddess Hylia calls upon **{agent}** — report your status.',
|
|
199
|
+
'The Triforce pulses — **{agent}**, are you still in the fight?',
|
|
200
|
+
'Hylia demands proof of life from **{agent}**.',
|
|
201
|
+
'The light of the Triforce reaches out to **{agent}** — respond.',
|
|
202
|
+
'Hylia senses silence from **{agent}** — speak, champion.',
|
|
203
|
+
'The Goddess watches. **{agent}**, confirm you endure.',
|
|
204
|
+
'A prayer from the Sacred Realm — **{agent}**, are you operational?',
|
|
205
|
+
'The Triforce demands an answer from **{agent}**.',
|
|
206
|
+
'Hylia\'s light searches for **{agent}** — report.',
|
|
207
|
+
'From the Sacred Realm, **{agent}** is called to answer.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'The Goddess watches over Hyrule.',
|
|
211
|
+
'The Triforce has spoken.',
|
|
212
|
+
'Courage, wisdom, power — in balance.',
|
|
213
|
+
'By the light of the Sacred Realm.',
|
|
214
|
+
'Hylia endures.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|