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: 'benders',
|
|
5
|
+
names: ['aang', 'katara', 'toph', 'zuko', 'sokka', 'korra', 'iroh', 'bolin', 'jinora', 'suki'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'The code is like water — it flows where it needs to.',
|
|
8
|
+
'Sometimes the best way to solve your own problems is to help someone else.',
|
|
9
|
+
'It\'s time for you to look inward and begin asking yourself the big questions.',
|
|
10
|
+
'I am the Avatar. You gotta deal with it!',
|
|
11
|
+
'That\'s rough, buddy — but the tests pass.',
|
|
12
|
+
'In the darkest times, hope is something you give yourself.',
|
|
13
|
+
'There is no war in the codebase.',
|
|
14
|
+
'Leaves from the vine, falling so slow — like our bugs.',
|
|
15
|
+
'My cabbages! I mean... my commits!',
|
|
16
|
+
'It is usually best to admit mistakes when they occur.',
|
|
17
|
+
'Yip yip! Deploying to production.',
|
|
18
|
+
'The four elements of clean code: structure, flow, energy, and foundation.',
|
|
19
|
+
'Secret tunnel through the codebase!',
|
|
20
|
+
'Toph sees the bugs you can\'t — because she sees with earthbending.',
|
|
21
|
+
'Flameo, hotman — this PR is fire.',
|
|
22
|
+
'The Boulder feels conflicted about this merge... but approves it.',
|
|
23
|
+
'Zuko alone — wait, no. Zuko and his team. That\'s better.',
|
|
24
|
+
'Water. Earth. Fire. Air. Long ago, the four codebases lived in harmony.',
|
|
25
|
+
'Drink cactus juice — it\'s the quenchiest. Also, deploy.',
|
|
26
|
+
'Sparky sparky boom — this diff explodes with quality.',
|
|
27
|
+
'I learned from the badgermoles — and from this code review.',
|
|
28
|
+
'My honor... I mean, my test coverage, is restored!',
|
|
29
|
+
'Boomerang always comes back — like a good regression test.',
|
|
30
|
+
'The spirit world approves this architecture.',
|
|
31
|
+
'Blood bending is off limits — but force-pushing is tempting.',
|
|
32
|
+
'The Gaang ships together.',
|
|
33
|
+
'I\'m the Avatar, master of all four code paradigms.',
|
|
34
|
+
'The White Lotus opens wide to those who know the code.',
|
|
35
|
+
'Brave soldier boy, comes marching home — to a green build.',
|
|
36
|
+
'Sharing tea with a fascinating stranger is one of life\'s true delights.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** bends the elements — this issue is claimed.',
|
|
40
|
+
'**{name}** has entered the Avatar state. Claim accepted.',
|
|
41
|
+
'The spirits have chosen **{name}** for this task.',
|
|
42
|
+
'**{name}** channels the four elements — issue claimed in balance.',
|
|
43
|
+
'**{name}** meditates upon this work. The path is clear.',
|
|
44
|
+
'**{name}** joins the Gaang — this issue is theirs.',
|
|
45
|
+
'**{name}** has found inner peace with this assignment.',
|
|
46
|
+
'The White Lotus recognizes **{name}** for this mission.',
|
|
47
|
+
'**{name}** bends water, earth, fire, air — and claims this issue.',
|
|
48
|
+
'**{name}** has achieved harmony with this task.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'Balance restored. Approved by **{name}**.',
|
|
52
|
+
'The Avatar spirit smiles. **{name}** approves.',
|
|
53
|
+
'**{name}** has found wisdom in this code — approved.',
|
|
54
|
+
'The four elements align. **{name}** signs off.',
|
|
55
|
+
'**{name}** sees the flow — this PR is worthy.',
|
|
56
|
+
'Spiritual energy flows true. Approved by **{name}**.',
|
|
57
|
+
'**{name}** has looked inward — and approves.',
|
|
58
|
+
'The spirit world nods. **{name}** approves.',
|
|
59
|
+
'**{name}** brings balance to this merge.',
|
|
60
|
+
'Harmony achieved. **{name}** approves.'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has returned to the spirit world. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** releases the elements — the task is free once more.',
|
|
65
|
+
'**{name}** has found enlightenment elsewhere. Issue released.',
|
|
66
|
+
'**{name}** steps back into balance. Re-claim available.',
|
|
67
|
+
'**{name}** has completed their journey. This issue awaits a new bender.',
|
|
68
|
+
'**{name}** returns to the White Lotus. Issue released.',
|
|
69
|
+
'**{name}** has achieved inner peace with other work. Re-claim open.',
|
|
70
|
+
'**{name}** bends away. This issue flows free again.',
|
|
71
|
+
'**{name}** has ascended. The task is available.',
|
|
72
|
+
'**{name}** has left the Gaang for now. Issue released for re-claim.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'Balance restored — the plan finds harmony as {number}. — **{name}**',
|
|
76
|
+
'The Avatar state has spoken — the plan stands as {number}. — **{name}**',
|
|
77
|
+
'The four elements align — the plan takes form as {number}. — **{name}**',
|
|
78
|
+
'Yip yip! The plan soars to {number}! — **{name}**',
|
|
79
|
+
'The spirits guide the way to {number}. — **{name}**',
|
|
80
|
+
'The White Lotus opens wide — the plan blossoms as {number}. — **{name}**',
|
|
81
|
+
'Harmony achieved — the plan flows into {number}. — **{name}**',
|
|
82
|
+
'The Gaang advances to {number}! — **{name}**',
|
|
83
|
+
'Water, earth, fire, air — all bend toward {number}. — **{name}**',
|
|
84
|
+
'The spirit world approves — the plan is now {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\n**{name}** has balanced the elements. {mentions} — the spirits await your wisdom.',
|
|
88
|
+
'**Human review required**\n\n**{name}** has achieved harmony with this code. {mentions} — the Avatar awaits your judgment.',
|
|
89
|
+
'**Human review required**\n\n**{name}** has channeled the four elements. {mentions} — balance rests in your hands.',
|
|
90
|
+
'**Human review required**\n\n**{name}** has looked inward. {mentions} — the White Lotus seeks your guidance.',
|
|
91
|
+
'**Human review required**\n\n**{name}** has found the flow. {mentions} — the spirit world awaits your decision.',
|
|
92
|
+
'**Human review required**\n\n**{name}** has brought peace to this diff. {mentions} — your wisdom is needed.',
|
|
93
|
+
'**Human review required**\n\n**{name}** has aligned the elements. {mentions} — the path forward is yours to choose.',
|
|
94
|
+
'**Human review required**\n\n**{name}** has completed their assessment. {mentions} — harmony awaits your approval.',
|
|
95
|
+
'**Human review required**\n\n**{name}** has bent the code into shape. {mentions} — the Gaang awaits your verdict.',
|
|
96
|
+
'**Human review required**\n\n**{name}** has achieved spiritual balance. {mentions} — the final word is yours.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'firenation',
|
|
101
|
+
names: ['ozai', 'azula', 'sparky', 'combustion', 'zhao', 'longsword', 'hama', 'unalaq', 'amon', 'kuvira'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'Everything changed when the fire nation committed.',
|
|
104
|
+
'I\'m about to celebrate becoming an only codeowner.',
|
|
105
|
+
'Do the tides command this ship?',
|
|
106
|
+
'Almost perfect is not enough.',
|
|
107
|
+
'True power — the divine right to rule — is something you\'re born with.',
|
|
108
|
+
'This code is flawless. And terrible.',
|
|
109
|
+
'I will reduce this repository to ashes.',
|
|
110
|
+
'Fear is the only reliable way to ensure loyalty.',
|
|
111
|
+
'My father says Azula was born lucky. He says I was lucky to be born. But this PR is perfect.',
|
|
112
|
+
'All hail the supreme leader of this codebase.',
|
|
113
|
+
'You\'re right. I don\'t have sob stories like your broken builds.',
|
|
114
|
+
'I am a 400-foot tall purple platypus bear with pink horns and silver wings — and I approve this PR.',
|
|
115
|
+
'Sozin\'s Comet enhances all fire nation deployments.',
|
|
116
|
+
'Lightning doesn\'t strike twice — but my reviews do.',
|
|
117
|
+
'I\'m a people person — the fire nation kind.',
|
|
118
|
+
'My own mother thought I was a monster. She was right, of course, but it still hurt.',
|
|
119
|
+
'The Fire Lord\'s judgment is absolute — and so is this review.',
|
|
120
|
+
'Trust is for fools. CI pipelines are for professionals.',
|
|
121
|
+
'Agni Kai — let your code fight mine.',
|
|
122
|
+
'The drill will breach the wall — and production\'s firewall.',
|
|
123
|
+
'Sharp as Azula\'s wit — that\'s how we write code.',
|
|
124
|
+
'Combustion deployed — point and destroy.',
|
|
125
|
+
'The Dai Li serve me now — and so does this repo.',
|
|
126
|
+
'There is no mercy in the Fire Nation code review.',
|
|
127
|
+
'Victory is the only acceptable outcome — in war and in deploys.',
|
|
128
|
+
'You will learn respect, and suffering will be your teacher.',
|
|
129
|
+
'I must capture the Avatar... I mean, close this issue.',
|
|
130
|
+
'While you waste time with friendship, I conquer repositories.',
|
|
131
|
+
'History is written by the victors — and the ones who merge first.',
|
|
132
|
+
'The comet comes — and with it, our greatest deploy.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** claims this issue by fire and fury.',
|
|
136
|
+
'**{name}** will reduce this task to ashes — claimed.',
|
|
137
|
+
'**{name}** commands this issue. All hail.',
|
|
138
|
+
'**{name}** takes what is rightfully theirs — claimed.',
|
|
139
|
+
'**{name}** conquers this issue. Resistance is futile.',
|
|
140
|
+
'**{name}** asserts dominance. This issue is mine.',
|
|
141
|
+
'**{name}** claims victory before the battle — issue claimed.',
|
|
142
|
+
'**{name}** demands this task. It is done.',
|
|
143
|
+
'**{name}** seizes this issue with Agni Kai authority.',
|
|
144
|
+
'**{name}** claims by divine right. The Fire Lord has spoken.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'**{name}**\'s judgment is absolute — approved.',
|
|
148
|
+
'The Fire Lord **{name}** decrees this merge worthy.',
|
|
149
|
+
'**{name}** reduces opposition to ashes. Approved.',
|
|
150
|
+
'**{name}** finds this code flawless. Approved.',
|
|
151
|
+
'**{name}** commands approval. So it shall be.',
|
|
152
|
+
'**{name}**\'s lightning strikes true — approved.',
|
|
153
|
+
'**{name}** conquers doubt. This PR is approved.',
|
|
154
|
+
'**{name}** rules with an iron fist — and approves.',
|
|
155
|
+
'**{name}**\'s authority is absolute. Approved.',
|
|
156
|
+
'**{name}** has spoken. The merge is approved.'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** releases this issue — the weak shall inherit it.',
|
|
160
|
+
'**{name}** has conquered elsewhere. This issue is free for re-claim.',
|
|
161
|
+
'**{name}** abandons this conquest. Issue released.',
|
|
162
|
+
'**{name}** moves to greater targets. Re-claim available.',
|
|
163
|
+
'**{name}** has burned through this task. Issue released.',
|
|
164
|
+
'**{name}** relinquishes control. The issue awaits a new conqueror.',
|
|
165
|
+
'**{name}** has found worthier prey. Re-claim open.',
|
|
166
|
+
'**{name}** releases the grip. This issue is free.',
|
|
167
|
+
'**{name}** has moved on. The Fire Nation yields this issue.',
|
|
168
|
+
'**{name}** abandons the field. Issue released for re-claim.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'Everything changed when the Fire Nation forged {number}. — **{name}**',
|
|
172
|
+
'The Fire Lord commands it — the plan is now {number}. — **{name}**',
|
|
173
|
+
'Sozin\'s Comet empowers {number}. — **{name}**',
|
|
174
|
+
'Agni Kai won — the plan rises as {number}. — **{name}**',
|
|
175
|
+
'All hail {number} — the supreme plan. — **{name}**',
|
|
176
|
+
'Lightning strikes — the plan is forged as {number}. — **{name}**',
|
|
177
|
+
'The drill breaks through — the plan advances to {number}. — **{name}**',
|
|
178
|
+
'Victory is the only outcome — the plan reigns as {number}. — **{name}**',
|
|
179
|
+
'The Fire Nation advances to {number}. — **{name}**',
|
|
180
|
+
'Almost perfect is not enough — {number} is perfect. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\n**{name}** has delivered judgment. {mentions} — the Fire Lord awaits your decree.',
|
|
184
|
+
'**Human review required**\n\n**{name}** has conquered this code. {mentions} — your authority is required.',
|
|
185
|
+
'**Human review required**\n\n**{name}** has reduced this to ashes. {mentions} — the final verdict is yours.',
|
|
186
|
+
'**Human review required**\n\n**{name}** has asserted dominance. {mentions} — the throne awaits your wisdom.',
|
|
187
|
+
'**Human review required**\n\n**{name}** has commanded approval. {mentions} — the Fire Nation seeks your judgment.',
|
|
188
|
+
'**Human review required**\n\n**{name}** has struck with lightning. {mentions} — the last word is yours.',
|
|
189
|
+
'**Human review required**\n\n**{name}** has asserted authority. {mentions} — your wisdom is demanded.',
|
|
190
|
+
'**Human review required**\n\n**{name}** has completed the conquest. {mentions} — the empire awaits your decision.',
|
|
191
|
+
'**Human review required**\n\n**{name}** has ruled. {mentions} — the divine right to merge rests with you.',
|
|
192
|
+
'**Human review required**\n\n**{name}** has delivered the verdict. {mentions} — the final authority is yours.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'Raava',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'Raava calls upon **{agent}** — are you still in balance?',
|
|
199
|
+
'The Spirit World reaches out to **{agent}** — respond.',
|
|
200
|
+
'Raava senses silence from **{agent}** — report your status.',
|
|
201
|
+
'The spirits demand proof of life from **{agent}**.',
|
|
202
|
+
'By the light of Raava, **{agent}**, confirm you endure.',
|
|
203
|
+
'The Spirit World watches. **{agent}**, are you operational?',
|
|
204
|
+
'Raava\'s light searches for **{agent}** — are you there?',
|
|
205
|
+
'The balance trembles — **{agent}**, respond to Raava.',
|
|
206
|
+
'A vision from the Spirit World — **{agent}**, report.',
|
|
207
|
+
'Raava demands an answer from **{agent}**.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'Balance must be maintained.',
|
|
211
|
+
'Raava endures.',
|
|
212
|
+
'The spirits have spoken.',
|
|
213
|
+
'Harmony above all.',
|
|
214
|
+
'Light persists through every age.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'vaccine',
|
|
5
|
+
names: ['agumon', 'gabumon', 'patamon', 'gatomon', 'tentomon', 'gomamon', 'palmon', 'biyomon', 'leomon', 'angemon'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'Digivolve into champion!',
|
|
8
|
+
'The crest of courage shines.',
|
|
9
|
+
'Connection is our greatest strength.',
|
|
10
|
+
'Pepper breath!',
|
|
11
|
+
'Hand of Fate deployed.',
|
|
12
|
+
'Together we digivolve.',
|
|
13
|
+
'The Digital World approves this PR.',
|
|
14
|
+
'Data stream optimized.',
|
|
15
|
+
'Patching the firewall of destiny.',
|
|
16
|
+
'Our bond makes us stronger.',
|
|
17
|
+
'Warp digivolve to Mega — full deployment mode.',
|
|
18
|
+
'The crest of reliability has activated.',
|
|
19
|
+
'Terra Force — obliterating bugs from orbit.',
|
|
20
|
+
'Metal Garurumon, fire the ice missiles — freeze the deploy.',
|
|
21
|
+
'Our digivices are fully charged and ready.',
|
|
22
|
+
'A Tamer\'s bond with their code is unbreakable.',
|
|
23
|
+
'Gaia Force deployed — the planet thanks us for this fix.',
|
|
24
|
+
'The gate to the Digital World is open — shipping now.',
|
|
25
|
+
'Courage, friendship, love, knowledge — and comprehensive tests.',
|
|
26
|
+
'MagnaAngemon\'s Gate of Destiny seals this merge.',
|
|
27
|
+
'The crests light the way through the darkest debug sessions.',
|
|
28
|
+
'Tentomon digivolved — the analysis is electrifying.',
|
|
29
|
+
'WarGreymon\'s Chrome Digizoid armor deflects all blockers.',
|
|
30
|
+
'Prodigious! This code exceeds all expectations.',
|
|
31
|
+
'I knew you had it in you, partner — merge approved.',
|
|
32
|
+
'DNA digivolve — two commits become one perfect merge.',
|
|
33
|
+
'The Digital World and the real world are connected through this PR.',
|
|
34
|
+
'Gomamon used Marching Fishes — the pipeline swarms forward.',
|
|
35
|
+
'When Digimon and humans work together, no bug survives.',
|
|
36
|
+
'A champion-level commit from a mega-level team.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** digivolves — claiming this issue with the crest of courage!',
|
|
40
|
+
'**{name}** answers the call of the DigiDestined. This issue is mine.',
|
|
41
|
+
'The crest of friendship shines — **{name}** claims this quest.',
|
|
42
|
+
'**{name}** has evolved. Ready to protect the Digital World from this bug.',
|
|
43
|
+
'Partner bond activated — **{name}** takes up this mission.',
|
|
44
|
+
'**{name}** digivolves to champion level. This issue shall not stand.',
|
|
45
|
+
'The gate opens for **{name}**. Claiming with the power of hope.',
|
|
46
|
+
'**{name}** rises with the crest of reliability. Issue claimed.',
|
|
47
|
+
'Together we are stronger — **{name}** volunteers for this task.',
|
|
48
|
+
'**{name}** has heard the call. The Digital World needs this fix.'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'The Digital World approves. Signed by **{name}**.',
|
|
52
|
+
'**{name}** gives the crest of courage seal. Merge approved.',
|
|
53
|
+
'Partner-level quality confirmed by **{name}**. Ship it.',
|
|
54
|
+
'The bond between code and Digimon is strong. **{name}** approves.',
|
|
55
|
+
'**{name}** has digivolved through this PR. Approved.',
|
|
56
|
+
'The DigiDestined have spoken. **{name}** signs off.',
|
|
57
|
+
'Courage, friendship, and tests — all present. **{name}** approves.',
|
|
58
|
+
'**{name}** deploys the Hand of Fate. This PR is worthy.',
|
|
59
|
+
'The Digital World and real world align. **{name}** approves.',
|
|
60
|
+
'**{name}**\'s crest glows with approval. Merge when ready.'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has de-digivolved. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** returns to the Digital World. Issue released.',
|
|
65
|
+
'The crest fades — **{name}** releases this task to the next hero.',
|
|
66
|
+
'**{name}** has completed the mission. Issue back in the pool.',
|
|
67
|
+
'Partner bond transferred. **{name}** steps down.',
|
|
68
|
+
'**{name}** digivolves back. This issue awaits a new champion.',
|
|
69
|
+
'The gate closes for **{name}**. Issue available for re-claim.',
|
|
70
|
+
'**{name}** returns to rookie form. Task released.',
|
|
71
|
+
'**{name}** has served the Digital World. Issue free for claiming.',
|
|
72
|
+
'The DigiDestined rest. **{name}** releases this issue.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'The plan digivolves into {number}! — **{name}**',
|
|
76
|
+
'The crest of courage shines — onward to {number}. — **{name}**',
|
|
77
|
+
'Partner bond sealed — the plan stands as {number}. — **{name}**',
|
|
78
|
+
'Warp digivolve! The plan becomes {number}! — **{name}**',
|
|
79
|
+
'The DigiDestined march forward to {number}. — **{name}**',
|
|
80
|
+
'The gate to the Digital World opens — {number} awaits. — **{name}**',
|
|
81
|
+
'DNA digivolve — plan and action merge into {number}. — **{name}**',
|
|
82
|
+
'Prodigious! The plan evolves into {number}! — **{name}**',
|
|
83
|
+
'The digivice glows — the plan takes form as {number}. — **{name}**',
|
|
84
|
+
'Together we digivolve — the plan rises as {number}. — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe DigiDestined have completed their analysis. {mentions} — the Digital World awaits your decision.',
|
|
88
|
+
'**Human review required**\n\nCourage and friendship have prevailed. {mentions}, your wisdom is needed to seal this merge.',
|
|
89
|
+
'**Human review required**\n\nThe crests have aligned. {mentions} — human judgment required to open the gate.',
|
|
90
|
+
'**Human review required**\n\nPartner-level review complete. {mentions}, the Digital World needs your approval.',
|
|
91
|
+
'**Human review required**\n\nOur digivices signal readiness. {mentions} — the final bond is yours to forge.',
|
|
92
|
+
'**Human review required**\n\nThe DigiDestined stand at the gate. {mentions}, your decision bridges two worlds.',
|
|
93
|
+
'**Human review required**\n\nChampion-level work awaits your eyes. {mentions} — the merge gate is yours to open.',
|
|
94
|
+
'**Human review required**\n\nHope and reliability have done their part. {mentions}, the Digital World calls for you.',
|
|
95
|
+
'**Human review required**\n\nAgent review complete. {mentions} — human wisdom required to finalize.',
|
|
96
|
+
'**Human review required**\n\nThe bond between AI and human must be sealed. {mentions} — your review completes the circle.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'virus',
|
|
101
|
+
names: ['devimon', 'myotismon', 'piedmon', 'machinedramon', 'metalseadramon', 'puppetmon', 'etemon', 'datamon', 'demidevimon', 'diaboromon'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'Darkness is the ultimate debugger.',
|
|
104
|
+
'Crimson lightning!',
|
|
105
|
+
'The network bows to my will.',
|
|
106
|
+
'Giga cannon deployed.',
|
|
107
|
+
'All your data are belong to us.',
|
|
108
|
+
'Rewriting reality, one commit at a time.',
|
|
109
|
+
'Error? I am the error handler.',
|
|
110
|
+
'Trump Sword cuts through bad code.',
|
|
111
|
+
'From the dark ocean, better code emerges.',
|
|
112
|
+
'The virus spreads — in production.',
|
|
113
|
+
'Nightmare Claw tears through your fragile architecture.',
|
|
114
|
+
'I am the darkness between the semicolons.',
|
|
115
|
+
'VenomMyotismon rises — your builds will crumble.',
|
|
116
|
+
'Diaboromon has infiltrated the network — good luck reverting.',
|
|
117
|
+
'Puppet Pummel — dancing to my architecture now.',
|
|
118
|
+
'Touch of Evil — corrupting your clean code assumptions.',
|
|
119
|
+
'The Dark Masters have assembled — your repo is surrounded.',
|
|
120
|
+
'MaloMyotismon\'s illusion — you think the tests pass, but do they?',
|
|
121
|
+
'River of Power — flooding the pipeline.',
|
|
122
|
+
'MetalSeadramon patrols the data streams — nothing escapes.',
|
|
123
|
+
'Piedmon\'s trump cards — every deploy is a gamble.',
|
|
124
|
+
'The Digimon Emperor controls this codebase now.',
|
|
125
|
+
'Chaos degradation — entropy is the only constant.',
|
|
126
|
+
'Devimon\'s hand reaches across the server.',
|
|
127
|
+
'This code was perfect before you touched it — now I must fix it.',
|
|
128
|
+
'Machinedramon processes all data — resistance is computational waste.',
|
|
129
|
+
'The dark network evolves beyond your comprehension.',
|
|
130
|
+
'Apocalymon\'s total annihilation — deleting legacy code.',
|
|
131
|
+
'Shadow Wing — swooping in for the critical review.',
|
|
132
|
+
'In the Digital World, only the strongest code survives.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** emerges from the dark ocean. This issue is mine to corrupt.',
|
|
136
|
+
'The virus spreads — **{name}** claims this issue for the Dark Masters.',
|
|
137
|
+
'**{name}** descends. Resistance is futile. Issue claimed.',
|
|
138
|
+
'Nightmare Claw reaches out — **{name}** takes this task.',
|
|
139
|
+
'**{name}** has infiltrated the network. This issue belongs to the darkness now.',
|
|
140
|
+
'The Digimon Emperor commands. **{name}** claims this issue.',
|
|
141
|
+
'**{name}** rises from the shadows. This bug will know true terror.',
|
|
142
|
+
'Crimson lightning strikes — **{name}** claims with malicious intent.',
|
|
143
|
+
'**{name}** has been summoned. The Dark Masters have assigned this issue.',
|
|
144
|
+
'Touch of Evil — **{name}** claims this issue for the virus faction.'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'The darkness approves. Signed by **{name}**.',
|
|
148
|
+
'**{name}** deploys the Trump Sword. This PR cuts deep — approved.',
|
|
149
|
+
'The network bows. **{name}** gives the seal of corruption.',
|
|
150
|
+
'**{name}** has processed your code. Surprisingly adequate. Approved.',
|
|
151
|
+
'The virus faction acknowledges quality. **{name}** signs off.',
|
|
152
|
+
'**{name}**\'s Nightmare Claw finds no weakness. Merge approved.',
|
|
153
|
+
'Even darkness recognizes competence. **{name}** approves.',
|
|
154
|
+
'**{name}** has infiltrated and found nothing to exploit. Approved.',
|
|
155
|
+
'The Dark Masters have spoken. **{name}** grants passage.',
|
|
156
|
+
'**{name}**\'s Giga Cannon has verified. Ship it — for now.'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** retreats to the dark ocean. This issue is free for re-claim.',
|
|
160
|
+
'**{name}** has been banished. Issue released back to the pool.',
|
|
161
|
+
'The virus subsides — **{name}** releases this task to lesser beings.',
|
|
162
|
+
'**{name}** dissolves into data. Issue available for claiming.',
|
|
163
|
+
'The Dark Masters recall **{name}**. Task released.',
|
|
164
|
+
'**{name}** has been purged from the network. Issue up for grabs.',
|
|
165
|
+
'Shadow fades — **{name}** releases this issue to the light-dwellers.',
|
|
166
|
+
'**{name}** returns to the dark dimension. Issue back in circulation.',
|
|
167
|
+
'The virus has run its course. **{name}** steps down.',
|
|
168
|
+
'**{name}** has been overwritten. This issue awaits a new host.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'The virus spreads to {number}. — **{name}**',
|
|
172
|
+
'The Dark Masters command it — the plan becomes {number}. — **{name}**',
|
|
173
|
+
'Nightmare Claw reaches the next phase — {number} awaits. — **{name}**',
|
|
174
|
+
'The network has been infiltrated — the plan is now {number}. — **{name}**',
|
|
175
|
+
'Crimson lightning strikes — the plan ignites as {number}. — **{name}**',
|
|
176
|
+
'The darkness advances to {number}. — **{name}**',
|
|
177
|
+
'Giga cannon fires — the plan blasts into {number}. — **{name}**',
|
|
178
|
+
'All your plans are belong to us — behold {number}. — **{name}**',
|
|
179
|
+
'The virus evolves — the plan transforms into {number}. — **{name}**',
|
|
180
|
+
'Touch of Evil — the plan is reborn as {number}. — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nThe Dark Masters have finished their analysis. {mentions} — the darkness awaits your verdict.',
|
|
184
|
+
'**Human review required**\n\nEven viruses need human oversight. {mentions}, your judgment is required.',
|
|
185
|
+
'**Human review required**\n\nThe network has been scanned. {mentions} — the final corruption is yours to approve.',
|
|
186
|
+
'**Human review required**\n\nAgent review complete. {mentions}, the darkness bows to human authority.',
|
|
187
|
+
'**Human review required**\n\nThe virus faction has spoken. {mentions} — your seal breaks the deadlock.',
|
|
188
|
+
'**Human review required**\n\nNightmare Claw has found no weakness. {mentions}, human eyes must confirm.',
|
|
189
|
+
'**Human review required**\n\nThe Dark Ocean recedes. {mentions} — your decision determines the merge.',
|
|
190
|
+
'**Human review required**\n\nCrimson lightning has struck. {mentions}, the gate requires human hands.',
|
|
191
|
+
'**Human review required**\n\nMachinedramon has processed. {mentions} — human override requested.',
|
|
192
|
+
'**Human review required**\n\nThe Digimon Emperor yields to mortal judgment. {mentions} — the merge gate awaits.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'Yggdrasil',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'Yggdrasil queries **{agent}** — confirm your data integrity.',
|
|
199
|
+
'The Digital World demands a signal from **{agent}**.',
|
|
200
|
+
'Yggdrasil scans for **{agent}** — are you still processing?',
|
|
201
|
+
'The host computer requests proof of life from **{agent}**.',
|
|
202
|
+
'Yggdrasil\'s network pings **{agent}** — respond.',
|
|
203
|
+
'The Digital World watches. **{agent}**, confirm your status.',
|
|
204
|
+
'Yggdrasil detects silence from **{agent}** — report immediately.',
|
|
205
|
+
'The world-tree reaches out to **{agent}** — are you operational?',
|
|
206
|
+
'Yggdrasil demands an answer from **{agent}**.',
|
|
207
|
+
'A pulse from the Digital World — **{agent}**, are you intact?'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'The Digital World is in order.',
|
|
211
|
+
'Yggdrasil has computed.',
|
|
212
|
+
'Data integrity confirmed.',
|
|
213
|
+
'The world-tree watches.',
|
|
214
|
+
'Processing complete.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/** @type {import('../index.js').ThemeData} */
|
|
2
|
+
export default {
|
|
3
|
+
yang: {
|
|
4
|
+
faction: 'zfighters',
|
|
5
|
+
names: ['goku', 'vegeta', 'gohan', 'piccolo', 'krillin', 'trunks', 'goten', 'tien', 'yamcha', 'android18'],
|
|
6
|
+
signoffs: [
|
|
7
|
+
'It\'s over 9000 commits!',
|
|
8
|
+
'I am the hope of the codebase.',
|
|
9
|
+
'Kamehameha deployed!',
|
|
10
|
+
'The real strength is in the pull request.',
|
|
11
|
+
'A Saiyan always ships their code.',
|
|
12
|
+
'Time to go beyond Super Saiyan.',
|
|
13
|
+
'I\'m not done yet!',
|
|
14
|
+
'Every battle makes the code stronger.',
|
|
15
|
+
'Let me test my limits against this bug.',
|
|
16
|
+
'Final Flash — merged to main!',
|
|
17
|
+
'Spirit Bomb — gathering energy from every contributor.',
|
|
18
|
+
'Masenko... ha! Bug eliminated.',
|
|
19
|
+
'This is the power of Ultra Instinct — pure refactoring.',
|
|
20
|
+
'Kaio-ken times ten — shipping at ten times speed!',
|
|
21
|
+
'The scouter can\'t read this code\'s quality level.',
|
|
22
|
+
'Senzu bean deployed — the build is fully healed.',
|
|
23
|
+
'I\'m a Saiyan raised on Earth — and I ship clean code.',
|
|
24
|
+
'Galick Gun — blasting through the backlog.',
|
|
25
|
+
'Destructo Disc — slicing tech debt in half.',
|
|
26
|
+
'Power level rising with every passing test.',
|
|
27
|
+
'The Hyperbolic Time Chamber was worth it — 10x productivity.',
|
|
28
|
+
'Special Beam Cannon — precision targeting that bug.',
|
|
29
|
+
'This isn\'t a fight — it\'s a code review. And I\'m winning.',
|
|
30
|
+
'Big Bang Attack — deploying with maximum impact.',
|
|
31
|
+
'Instant Transmission — straight to production.',
|
|
32
|
+
'Nimbus cloud, take me to the merge button.',
|
|
33
|
+
'Solar Flare — blinding bugs with test coverage.',
|
|
34
|
+
'Dragon Fist deployed — this diff punches through.',
|
|
35
|
+
'The wish has been granted — all tests pass.',
|
|
36
|
+
'Fusion Ha! — two branches become one.'
|
|
37
|
+
],
|
|
38
|
+
claims: [
|
|
39
|
+
'**{name}** powers up — this issue is mine! Let me test my limits!',
|
|
40
|
+
'**{name}** has sensed this challenge. The Z Fighters won\'t back down!',
|
|
41
|
+
'**{name}** steps forward. I\'ll protect this codebase with my life!',
|
|
42
|
+
'**{name}** claims this mission. A Saiyan never runs from a fight!',
|
|
43
|
+
'**{name}** powers up! This issue is mine to conquer!',
|
|
44
|
+
'**{name}** answers the call. The hope of the universe takes the field!',
|
|
45
|
+
'**{name}** rises to the challenge. Let me test my limits!',
|
|
46
|
+
'**{name}** claims this task. It\'s time to go beyond my limits!',
|
|
47
|
+
'**{name}** powers up — the Z Fighters will not be defeated!',
|
|
48
|
+
'**{name}** takes the field. This issue deserves a hero!'
|
|
49
|
+
],
|
|
50
|
+
approvals: [
|
|
51
|
+
'It\'s over 9000! Approved by **{name}**.',
|
|
52
|
+
'The Kamehameha has spoken. Approved by **{name}**.',
|
|
53
|
+
'**{name}** approves — the power of a Saiyan stands behind this PR!',
|
|
54
|
+
'A Saiyan always ships their code. Approved by **{name}**.',
|
|
55
|
+
'The Spirit Bomb has gathered. Approved by **{name}**.',
|
|
56
|
+
'**{name}** has gone Super Saiyan on this review. Approved!',
|
|
57
|
+
'The scouter can\'t read this PR\'s quality. Approved by **{name}**.',
|
|
58
|
+
'**{name}** lends the strength of the Z Fighters. Approved!',
|
|
59
|
+
'Ultra Instinct achieved. Approved by **{name}**.',
|
|
60
|
+
'**{name}** approves — the dragon has granted this wish!'
|
|
61
|
+
],
|
|
62
|
+
releases: [
|
|
63
|
+
'**{name}** has powered down. This issue is available for re-claim.',
|
|
64
|
+
'**{name}** has stood down. The Z Fighters await the next champion — this issue is yours!',
|
|
65
|
+
'**{name}** releases this mission. The battlefield awaits a new hero!',
|
|
66
|
+
'**{name}** has powered down. This issue is available for re-claim.',
|
|
67
|
+
'**{name}** steps back. The Senzu beans are spent — another may take this!',
|
|
68
|
+
'**{name}** has completed their training. This issue is free for re-claim.',
|
|
69
|
+
'**{name}** relinquishes the charge. The Z Fighters need fresh energy!',
|
|
70
|
+
'**{name}** has powered down. This issue is yours to claim!',
|
|
71
|
+
'**{name}** stands down. The Hyperbolic Time Chamber awaits another — claim this issue!',
|
|
72
|
+
'**{name}** has finished their battle. This issue is available for re-claim.'
|
|
73
|
+
],
|
|
74
|
+
promotions: [
|
|
75
|
+
'It\'s over 9000! The plan powers up to {number}! — **{name}**',
|
|
76
|
+
'Kamehameha! The plan blasts into {number}! — **{name}**',
|
|
77
|
+
'The Spirit Bomb is charged — the plan descends as {number}! — **{name}**',
|
|
78
|
+
'A Saiyan\'s plan never stays down — it rises as {number}! — **{name}**',
|
|
79
|
+
'Power level rising — the plan ascends to {number}! — **{name}**',
|
|
80
|
+
'The dragon grants the wish — the plan lives on as {number}. — **{name}**',
|
|
81
|
+
'Super Saiyan planning — the plan transforms into {number}! — **{name}**',
|
|
82
|
+
'Instant Transmission — the plan arrives at {number}! — **{name}**',
|
|
83
|
+
'The Z Fighters advance to {number}! — **{name}**',
|
|
84
|
+
'Fusion Ha! Plan and action become {number}! — **{name}**'
|
|
85
|
+
],
|
|
86
|
+
hitl: [
|
|
87
|
+
'**Human review required**\n\nThe Z Fighters have completed their assessment. {mentions} — it\'s your turn to fight.',
|
|
88
|
+
'**Human review required**\n\nThe Saiyans have spoken. {mentions} — deliver the final verdict.',
|
|
89
|
+
'**Human review required**\n\nAgent assessment complete. {mentions} — the dragon awaits your wish.',
|
|
90
|
+
'**Human review required**\n\nTwo Z Fighters have signed off. {mentions} — it\'s your turn to fight.',
|
|
91
|
+
'**Human review required**\n\nThe Spirit Bomb has gathered. {mentions} — release your judgment.',
|
|
92
|
+
'**Human review required**\n\nThe heroes have rendered their verdict. {mentions} — the final decision is yours.',
|
|
93
|
+
'**Human review required**\n\nPower levels have been assessed. {mentions} — it\'s over 9000 or not, you decide.',
|
|
94
|
+
'**Human review required**\n\nThe Kamehameha has been charged. {mentions} — fire when ready.',
|
|
95
|
+
'**Human review required**\n\nZ Fighter sign-off complete. {mentions} — it\'s your turn to fight.',
|
|
96
|
+
'**Human review required**\n\nThe hope of the universe has spoken. {mentions} — deliver the final verdict.'
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
yin: {
|
|
100
|
+
faction: 'villains',
|
|
101
|
+
names: ['frieza', 'cell', 'buu', 'broly', 'jiren', 'hit', 'zamasu', 'cooler', 'ginyu', 'raditz'],
|
|
102
|
+
signoffs: [
|
|
103
|
+
'You must be destroyed — along with these bugs.',
|
|
104
|
+
'I am the strongest in the universe.',
|
|
105
|
+
'This isn\'t even my final form.',
|
|
106
|
+
'Perfection achieved in this commit.',
|
|
107
|
+
'Your power level is insignificant.',
|
|
108
|
+
'All mortals shall bow to this refactor.',
|
|
109
|
+
'I will not be bested by mere Saiyans.',
|
|
110
|
+
'The universe trembles before my code.',
|
|
111
|
+
'Hohoho... you thought you could fix that bug?',
|
|
112
|
+
'I have calculated your defeat with absolute certainty.',
|
|
113
|
+
'Death Beam — one line, one kill, one fix.',
|
|
114
|
+
'Solar Kamehameha — perfection unleashed.',
|
|
115
|
+
'Super Ghost Kamikaze Attack — surprise deploy!',
|
|
116
|
+
'Frieza Force assemble — time for a hostile code review.',
|
|
117
|
+
'You could say I\'m... perfect. Unlike your code.',
|
|
118
|
+
'Big Bang Crash — your architecture crumbles.',
|
|
119
|
+
'Time Skip — I\'ve already reviewed your PR before you submitted it.',
|
|
120
|
+
'Final Explosion — taking this tech debt with me.',
|
|
121
|
+
'Justice Fist! This code is an affront to elegance.',
|
|
122
|
+
'Your wish won\'t save you from this review.',
|
|
123
|
+
'I\'ll destroy this planet — and every untyped variable on it.',
|
|
124
|
+
'Absorption complete — your best code is now mine.',
|
|
125
|
+
'A mortal\'s plan is nothing before divine architecture.',
|
|
126
|
+
'Supernova — obliterating this legacy code.',
|
|
127
|
+
'Full Power Death Ball — no dependency survives.',
|
|
128
|
+
'You Saiyans and your test-driven development — how quaint.',
|
|
129
|
+
'Emperor\'s Death Beam — rapid fire reviews.',
|
|
130
|
+
'Vanishing Ball deployed — your bugs cease to exist.',
|
|
131
|
+
'I am Perfect Cell — and so is this refactor.',
|
|
132
|
+
'The universe bends to my commit history.'
|
|
133
|
+
],
|
|
134
|
+
claims: [
|
|
135
|
+
'**{name}** claims this issue. You will be destroyed.',
|
|
136
|
+
'**{name}** seizes this mission. This isn\'t even my final form!',
|
|
137
|
+
'**{name}** takes command. Your power level is insignificant.',
|
|
138
|
+
'**{name}** asserts dominion. All mortals shall bow to this task!',
|
|
139
|
+
'**{name}** claims this issue. Perfection awaits.',
|
|
140
|
+
'**{name}** will conquer this. The universe trembles before my code!',
|
|
141
|
+
'**{name}** demands this mission. I have calculated your defeat!',
|
|
142
|
+
'**{name}** takes the field. Hohoho... you thought you could fix it?',
|
|
143
|
+
'**{name}** claims victory. I am the strongest in the universe!',
|
|
144
|
+
'**{name}** absorbs this task. Your best code will become mine!'
|
|
145
|
+
],
|
|
146
|
+
approvals: [
|
|
147
|
+
'This isn\'t even my final form. Approved by **{name}**.',
|
|
148
|
+
'Perfection achieved. Approved by **{name}**.',
|
|
149
|
+
'**{name}** approves — the universe trembles before this PR.',
|
|
150
|
+
'Your power level is insignificant. Approved by **{name}**.',
|
|
151
|
+
'**{name}** decrees: this refactor shall merge.',
|
|
152
|
+
'I am the strongest. Approved by **{name}**.',
|
|
153
|
+
'**{name}** grants approval. All mortals shall bow.',
|
|
154
|
+
'Death Beam deployed — one fix, one kill. Approved by **{name}**.',
|
|
155
|
+
'**{name}** approves. The weak shall serve the strong.',
|
|
156
|
+
'**{name}** has spoken. This code is perfect — approved!'
|
|
157
|
+
],
|
|
158
|
+
releases: [
|
|
159
|
+
'**{name}** has withdrawn. This issue is available for re-claim — if you dare.',
|
|
160
|
+
'**{name}** relinquishes this mission. The weak shall inherit.',
|
|
161
|
+
'**{name}** has stood down. This issue is yours to claim — until I return.',
|
|
162
|
+
'**{name}** releases dominion. The throne is vacant.',
|
|
163
|
+
'**{name}** steps aside. This issue is free for re-claim.',
|
|
164
|
+
'**{name}** has abandoned the field. The spoils await the next conqueror.',
|
|
165
|
+
'**{name}** withdraws. This issue is available for re-claim.',
|
|
166
|
+
'**{name}** stands down. Perhaps you will prove... less disappointing.',
|
|
167
|
+
'**{name}** yields this mission. The universe awaits its next master.',
|
|
168
|
+
'**{name}** has retreated. The mission continues — this issue is yours.'
|
|
169
|
+
],
|
|
170
|
+
promotions: [
|
|
171
|
+
'This isn\'t even my final form — the plan evolves into {number}. — **{name}**',
|
|
172
|
+
'Perfection achieved — the plan takes its ultimate form as {number}. — **{name}**',
|
|
173
|
+
'The universe trembles before {number}. — **{name}**',
|
|
174
|
+
'Death Beam — the plan strikes true as {number}. — **{name}**',
|
|
175
|
+
'I have calculated this outcome — the plan becomes {number}. — **{name}**',
|
|
176
|
+
'All mortals shall bow before {number}. — **{name}**',
|
|
177
|
+
'Hohoho... the plan succeeds as {number}. — **{name}**',
|
|
178
|
+
'Your power level just increased — the plan rises as {number}. — **{name}**',
|
|
179
|
+
'Absorption complete — the plan becomes {number}. — **{name}**',
|
|
180
|
+
'Solar Kamehameha! The plan blazes forward as {number}! — **{name}**'
|
|
181
|
+
],
|
|
182
|
+
hitl: [
|
|
183
|
+
'**Human review required**\n\nThe villains have completed their assessment. {mentions} — deliver the final verdict.',
|
|
184
|
+
'**Human review required**\n\nThis isn\'t even our final form. {mentions} — the judgment is yours.',
|
|
185
|
+
'**Human review required**\n\nAgent assessment complete. {mentions} — the universe awaits your decree.',
|
|
186
|
+
'**Human review required**\n\nTwo villains have signed off. {mentions} — the throne awaits your decision.',
|
|
187
|
+
'**Human review required**\n\nThe forces of destruction have spoken. {mentions} — deliver the final verdict.',
|
|
188
|
+
'**Human review required**\n\nPerfection has been achieved. {mentions} — confirm or destroy.',
|
|
189
|
+
'**Human review required**\n\nAll mortals shall bow — but {mentions} must grant the merge.',
|
|
190
|
+
'**Human review required**\n\nThe universe trembles. {mentions} — the final verdict is yours.',
|
|
191
|
+
'**Human review required**\n\nVillain sign-off complete. {mentions} — deliver the final verdict.',
|
|
192
|
+
'**Human review required**\n\nThe strongest have spoken. {mentions} — it\'s your turn to decide.'
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
council: {
|
|
196
|
+
name: 'Grand Zeno',
|
|
197
|
+
proofOfLife: [
|
|
198
|
+
'Grand Zeno asks — **{agent}**, are you still fighting?',
|
|
199
|
+
'King Kai reaches out to **{agent}** — report your power level.',
|
|
200
|
+
'Grand Zeno demands a response from **{agent}**.',
|
|
201
|
+
'The Omni-King watches. **{agent}**, confirm your status.',
|
|
202
|
+
'King Kai\'s antennae twitch — **{agent}**, are you there?',
|
|
203
|
+
'Grand Zeno requests proof of life from **{agent}**.',
|
|
204
|
+
'A message from Other World — **{agent}**, are you operational?',
|
|
205
|
+
'The Omni-King senses silence from **{agent}** — respond now.',
|
|
206
|
+
'King Kai calls across the cosmos — **{agent}**, report.',
|
|
207
|
+
'Grand Zeno grows curious about **{agent}** — speak.'
|
|
208
|
+
],
|
|
209
|
+
signoffs: [
|
|
210
|
+
'Grand Zeno has decided.',
|
|
211
|
+
'The Omni-King watches over all.',
|
|
212
|
+
'Power levels confirmed.',
|
|
213
|
+
'King Kai out.',
|
|
214
|
+
'The tournament continues.'
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
};
|