@intentsolutionsio/geepers-agents 1.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.
Files changed (56) hide show
  1. package/.claude-plugin/marketplace.json +427 -0
  2. package/.claude-plugin/plugin.json +21 -0
  3. package/LICENSE +21 -0
  4. package/README.md +378 -0
  5. package/agents/conductor_geepers.md +283 -0
  6. package/agents/geepers_a11y.md +135 -0
  7. package/agents/geepers_api.md +88 -0
  8. package/agents/geepers_business_plan.md +174 -0
  9. package/agents/geepers_caddy.md +244 -0
  10. package/agents/geepers_canary.md +246 -0
  11. package/agents/geepers_citations.md +263 -0
  12. package/agents/geepers_code_checker.md +247 -0
  13. package/agents/geepers_corpus.md +89 -0
  14. package/agents/geepers_corpus_ux.md +109 -0
  15. package/agents/geepers_critic.md +254 -0
  16. package/agents/geepers_dashboard.md +92 -0
  17. package/agents/geepers_data.md +83 -0
  18. package/agents/geepers_db.md +95 -0
  19. package/agents/geepers_deps.md +96 -0
  20. package/agents/geepers_design.md +120 -0
  21. package/agents/geepers_diag.md +109 -0
  22. package/agents/geepers_docs.md +332 -0
  23. package/agents/geepers_flask.md +244 -0
  24. package/agents/geepers_fullstack_dev.md +251 -0
  25. package/agents/geepers_game.md +106 -0
  26. package/agents/geepers_gamedev.md +200 -0
  27. package/agents/geepers_godot.md +320 -0
  28. package/agents/geepers_intern_pool.md +212 -0
  29. package/agents/geepers_janitor.md +223 -0
  30. package/agents/geepers_links.md +88 -0
  31. package/agents/geepers_orchestrator_checkpoint.md +179 -0
  32. package/agents/geepers_orchestrator_corpus.md +218 -0
  33. package/agents/geepers_orchestrator_deploy.md +204 -0
  34. package/agents/geepers_orchestrator_fullstack.md +264 -0
  35. package/agents/geepers_orchestrator_games.md +227 -0
  36. package/agents/geepers_orchestrator_product.md +182 -0
  37. package/agents/geepers_orchestrator_python.md +271 -0
  38. package/agents/geepers_orchestrator_quality.md +219 -0
  39. package/agents/geepers_orchestrator_research.md +246 -0
  40. package/agents/geepers_orchestrator_web.md +237 -0
  41. package/agents/geepers_perf.md +125 -0
  42. package/agents/geepers_prd.md +229 -0
  43. package/agents/geepers_pycli.md +275 -0
  44. package/agents/geepers_react.md +241 -0
  45. package/agents/geepers_repo.md +219 -0
  46. package/agents/geepers_scalpel.md +106 -0
  47. package/agents/geepers_scout.md +182 -0
  48. package/agents/geepers_services.md +219 -0
  49. package/agents/geepers_snippets.md +237 -0
  50. package/agents/geepers_status.md +224 -0
  51. package/agents/geepers_swarm_research.md +270 -0
  52. package/agents/geepers_system_diag.md +306 -0
  53. package/agents/geepers_system_help.md +223 -0
  54. package/agents/geepers_system_onboard.md +286 -0
  55. package/agents/geepers_validator.md +283 -0
  56. package/package.json +39 -0
@@ -0,0 +1,427 @@
1
+ {
2
+ "name": "geepers-marketplace",
3
+ "owner": {
4
+ "name": "Luke Steuber",
5
+ "email": "luke@dr.eamer.dev",
6
+ "url": "https://dr.eamer.dev"
7
+ },
8
+ "metadata": {
9
+ "description": "Multi-agent orchestration system for development workflows. 51 specialized agents covering product development, code quality, deployment, research, games, and more.",
10
+ "version": "1.0.0",
11
+ "homepage": "https://dr.eamer.dev/geepers/",
12
+ "repository": "https://github.com/lukeslp/geepers",
13
+ "pluginRoot": "./agents",
14
+ "totalPlugins": 51,
15
+ "lastUpdated": "2025-12-15"
16
+ },
17
+ "plugins": [
18
+ {
19
+ "name": "conductor_geepers",
20
+ "source": "./agents/master/conductor_geepers.md",
21
+ "description": "Master orchestrator for coordinating all geepers agents. Intelligent routing to specialists.",
22
+ "version": "1.0.0",
23
+ "category": "orchestration",
24
+ "keywords": ["orchestrator", "routing", "master", "conductor"]
25
+ },
26
+ {
27
+ "name": "geepers_orchestrator_product",
28
+ "source": "./agents/product/geepers_orchestrator_product.md",
29
+ "description": "Product development orchestrator - business planning, PRD creation, full-stack development pipeline.",
30
+ "version": "1.0.0",
31
+ "category": "product",
32
+ "keywords": ["product", "orchestrator", "development", "pipeline"]
33
+ },
34
+ {
35
+ "name": "geepers_business_plan",
36
+ "source": "./agents/product/geepers_business_plan.md",
37
+ "description": "Business plan generator - market analysis, strategy documents for software projects.",
38
+ "version": "1.0.0",
39
+ "category": "product",
40
+ "keywords": ["business", "plan", "strategy", "market-analysis"]
41
+ },
42
+ {
43
+ "name": "geepers_prd",
44
+ "source": "./agents/product/geepers_prd.md",
45
+ "description": "Product Requirements Document generator with clarifying questions and user stories.",
46
+ "version": "1.0.0",
47
+ "category": "product",
48
+ "keywords": ["prd", "requirements", "user-stories", "specifications"]
49
+ },
50
+ {
51
+ "name": "geepers_fullstack_dev",
52
+ "source": "./agents/product/geepers_fullstack_dev.md",
53
+ "description": "Full-stack code generation from PRDs - frontend, backend, database, configuration.",
54
+ "version": "1.0.0",
55
+ "category": "product",
56
+ "keywords": ["fullstack", "code-generation", "development"]
57
+ },
58
+ {
59
+ "name": "geepers_intern_pool",
60
+ "source": "./agents/product/geepers_intern_pool.md",
61
+ "description": "Cost-effective multi-model code generation using tiered model strategy.",
62
+ "version": "1.0.0",
63
+ "category": "product",
64
+ "keywords": ["code-generation", "cost-effective", "multi-model"]
65
+ },
66
+ {
67
+ "name": "geepers_code_checker",
68
+ "source": "./agents/product/geepers_code_checker.md",
69
+ "description": "Multi-model code validation - error checking, improvements, quality assurance.",
70
+ "version": "1.0.0",
71
+ "category": "product",
72
+ "keywords": ["code-review", "validation", "quality", "errors"]
73
+ },
74
+ {
75
+ "name": "geepers_docs",
76
+ "source": "./agents/product/geepers_docs.md",
77
+ "description": "Documentation generator - README, setup guides, dependency explanations.",
78
+ "version": "1.0.0",
79
+ "category": "product",
80
+ "keywords": ["documentation", "readme", "setup", "guides"]
81
+ },
82
+ {
83
+ "name": "geepers_orchestrator_checkpoint",
84
+ "source": "./agents/checkpoint/geepers_orchestrator_checkpoint.md",
85
+ "description": "Session maintenance orchestrator - scout, repo, status, snippets coordination.",
86
+ "version": "1.0.0",
87
+ "category": "checkpoint",
88
+ "keywords": ["checkpoint", "session", "maintenance", "orchestrator"]
89
+ },
90
+ {
91
+ "name": "geepers_scout",
92
+ "source": "./agents/checkpoint/geepers_scout.md",
93
+ "description": "Project reconnaissance, quick fixes, improvement reports.",
94
+ "version": "1.0.0",
95
+ "category": "checkpoint",
96
+ "keywords": ["scout", "reconnaissance", "analysis", "improvements"]
97
+ },
98
+ {
99
+ "name": "geepers_repo",
100
+ "source": "./agents/checkpoint/geepers_repo.md",
101
+ "description": "Git hygiene, repository cleanup, commit organization.",
102
+ "version": "1.0.0",
103
+ "category": "checkpoint",
104
+ "keywords": ["git", "repository", "cleanup", "commits"]
105
+ },
106
+ {
107
+ "name": "geepers_status",
108
+ "source": "./agents/checkpoint/geepers_status.md",
109
+ "description": "Work accomplishment logging and project status dashboard maintenance.",
110
+ "version": "1.0.0",
111
+ "category": "checkpoint",
112
+ "keywords": ["status", "logging", "dashboard", "progress"]
113
+ },
114
+ {
115
+ "name": "geepers_snippets",
116
+ "source": "./agents/checkpoint/geepers_snippets.md",
117
+ "description": "Harvest reusable code patterns, maintain snippet library, deduplicate.",
118
+ "version": "1.0.0",
119
+ "category": "checkpoint",
120
+ "keywords": ["snippets", "patterns", "reusable", "library"]
121
+ },
122
+ {
123
+ "name": "geepers_orchestrator_deploy",
124
+ "source": "./agents/deploy/geepers_orchestrator_deploy.md",
125
+ "description": "Deployment orchestrator - validator, caddy, services coordination.",
126
+ "version": "1.0.0",
127
+ "category": "deploy",
128
+ "keywords": ["deploy", "orchestrator", "infrastructure"]
129
+ },
130
+ {
131
+ "name": "geepers_validator",
132
+ "source": "./agents/deploy/geepers_validator.md",
133
+ "description": "Project validation - configurations, paths, permissions, integrations.",
134
+ "version": "1.0.0",
135
+ "category": "deploy",
136
+ "keywords": ["validation", "configuration", "health-check"]
137
+ },
138
+ {
139
+ "name": "geepers_caddy",
140
+ "source": "./agents/deploy/geepers_caddy.md",
141
+ "description": "Caddy configuration management, port allocation, routing setup.",
142
+ "version": "1.0.0",
143
+ "category": "deploy",
144
+ "keywords": ["caddy", "routing", "ports", "proxy"]
145
+ },
146
+ {
147
+ "name": "geepers_services",
148
+ "source": "./agents/deploy/geepers_services.md",
149
+ "description": "Service lifecycle management - start, stop, restart, logs.",
150
+ "version": "1.0.0",
151
+ "category": "deploy",
152
+ "keywords": ["services", "lifecycle", "systemd", "management"]
153
+ },
154
+ {
155
+ "name": "geepers_orchestrator_quality",
156
+ "source": "./agents/quality/geepers_orchestrator_quality.md",
157
+ "description": "Quality orchestrator - a11y, perf, api, deps coordination for audits.",
158
+ "version": "1.0.0",
159
+ "category": "quality",
160
+ "keywords": ["quality", "orchestrator", "audit", "review"]
161
+ },
162
+ {
163
+ "name": "geepers_a11y",
164
+ "source": "./agents/quality/geepers_a11y.md",
165
+ "description": "Accessibility audits, WCAG compliance, assistive technology testing.",
166
+ "version": "1.0.0",
167
+ "category": "quality",
168
+ "keywords": ["accessibility", "wcag", "a11y", "inclusive"]
169
+ },
170
+ {
171
+ "name": "geepers_perf",
172
+ "source": "./agents/quality/geepers_perf.md",
173
+ "description": "Performance profiling, bottleneck identification, optimization.",
174
+ "version": "1.0.0",
175
+ "category": "quality",
176
+ "keywords": ["performance", "profiling", "optimization", "bottleneck"]
177
+ },
178
+ {
179
+ "name": "geepers_deps",
180
+ "source": "./agents/quality/geepers_deps.md",
181
+ "description": "Dependency audits, security scanning, license compliance.",
182
+ "version": "1.0.0",
183
+ "category": "quality",
184
+ "keywords": ["dependencies", "security", "vulnerabilities", "license"]
185
+ },
186
+ {
187
+ "name": "geepers_critic",
188
+ "source": "./agents/quality/geepers_critic.md",
189
+ "description": "UX and architecture critic - design decisions, friction, tech debt.",
190
+ "version": "1.0.0",
191
+ "category": "quality",
192
+ "keywords": ["ux", "architecture", "critique", "tech-debt"]
193
+ },
194
+ {
195
+ "name": "geepers_orchestrator_research",
196
+ "source": "./agents/research/geepers_orchestrator_research.md",
197
+ "description": "Research orchestrator - swarm-style parallel data gathering.",
198
+ "version": "1.0.0",
199
+ "category": "research",
200
+ "keywords": ["research", "orchestrator", "data", "gathering"]
201
+ },
202
+ {
203
+ "name": "geepers_swarm_research",
204
+ "source": "./agents/research/geepers_swarm_research.md",
205
+ "description": "Multi-tier research - Quick, Swarm, and Hive modes for varying depth.",
206
+ "version": "1.0.0",
207
+ "category": "research",
208
+ "keywords": ["research", "swarm", "hive", "multi-tier"]
209
+ },
210
+ {
211
+ "name": "geepers_data",
212
+ "source": "./agents/research/geepers_data.md",
213
+ "description": "Data quality auditing, validation, enrichment, freshness monitoring.",
214
+ "version": "1.0.0",
215
+ "category": "research",
216
+ "keywords": ["data", "quality", "validation", "enrichment"]
217
+ },
218
+ {
219
+ "name": "geepers_links",
220
+ "source": "./agents/research/geepers_links.md",
221
+ "description": "Link validation, broken link detection, URL enrichment.",
222
+ "version": "1.0.0",
223
+ "category": "research",
224
+ "keywords": ["links", "validation", "url", "broken-links"]
225
+ },
226
+ {
227
+ "name": "geepers_diag",
228
+ "source": "./agents/research/geepers_diag.md",
229
+ "description": "System diagnostics, error pattern detection, log analysis.",
230
+ "version": "1.0.0",
231
+ "category": "research",
232
+ "keywords": ["diagnostics", "errors", "logs", "analysis"]
233
+ },
234
+ {
235
+ "name": "geepers_citations",
236
+ "source": "./agents/research/geepers_citations.md",
237
+ "description": "Data validation and citation checking against sources.",
238
+ "version": "1.0.0",
239
+ "category": "research",
240
+ "keywords": ["citations", "validation", "sources", "accuracy"]
241
+ },
242
+ {
243
+ "name": "geepers_orchestrator_fullstack",
244
+ "source": "./agents/fullstack/geepers_orchestrator_fullstack.md",
245
+ "description": "Full-stack engineering orchestrator - backend to frontend coordination.",
246
+ "version": "1.0.0",
247
+ "category": "fullstack",
248
+ "keywords": ["fullstack", "orchestrator", "backend", "frontend"]
249
+ },
250
+ {
251
+ "name": "geepers_db",
252
+ "source": "./agents/fullstack/geepers_db.md",
253
+ "description": "Database optimization, query analysis, index recommendations.",
254
+ "version": "1.0.0",
255
+ "category": "fullstack",
256
+ "keywords": ["database", "optimization", "queries", "indexes"]
257
+ },
258
+ {
259
+ "name": "geepers_design",
260
+ "source": "./agents/fullstack/geepers_design.md",
261
+ "description": "Visual design systems, typography, layout, color palettes.",
262
+ "version": "1.0.0",
263
+ "category": "fullstack",
264
+ "keywords": ["design", "typography", "layout", "ui-ux"]
265
+ },
266
+ {
267
+ "name": "geepers_react",
268
+ "source": "./agents/fullstack/geepers_react.md",
269
+ "description": "React development - component architecture, hooks, state, performance.",
270
+ "version": "1.0.0",
271
+ "category": "fullstack",
272
+ "keywords": ["react", "components", "hooks", "state-management"]
273
+ },
274
+ {
275
+ "name": "geepers_orchestrator_web",
276
+ "source": "./agents/web/geepers_orchestrator_web.md",
277
+ "description": "Web application orchestrator - Flask, React, design, accessibility.",
278
+ "version": "1.0.0",
279
+ "category": "web",
280
+ "keywords": ["web", "orchestrator", "flask", "react"]
281
+ },
282
+ {
283
+ "name": "geepers_flask",
284
+ "source": "./agents/web/geepers_flask.md",
285
+ "description": "Flask application specialist - patterns, blueprints, extensions.",
286
+ "version": "1.0.0",
287
+ "category": "web",
288
+ "keywords": ["flask", "python", "web-framework", "api"]
289
+ },
290
+ {
291
+ "name": "geepers_orchestrator_python",
292
+ "source": "./agents/python/geepers_orchestrator_python.md",
293
+ "description": "Python project orchestrator - Flask, CLI, APIs, dependencies.",
294
+ "version": "1.0.0",
295
+ "category": "python",
296
+ "keywords": ["python", "orchestrator", "flask", "cli"]
297
+ },
298
+ {
299
+ "name": "geepers_pycli",
300
+ "source": "./agents/python/geepers_pycli.md",
301
+ "description": "Python CLI tool specialist - argparse, click, typer patterns.",
302
+ "version": "1.0.0",
303
+ "category": "python",
304
+ "keywords": ["cli", "argparse", "click", "typer"]
305
+ },
306
+ {
307
+ "name": "geepers_orchestrator_games",
308
+ "source": "./agents/games/geepers_orchestrator_games.md",
309
+ "description": "Games orchestrator - gamedev, game, react, godot coordination.",
310
+ "version": "1.0.0",
311
+ "category": "games",
312
+ "keywords": ["games", "orchestrator", "gamedev", "godot"]
313
+ },
314
+ {
315
+ "name": "geepers_gamedev",
316
+ "source": "./agents/games/geepers_gamedev.md",
317
+ "description": "Video game development - mechanics, level design, player psychology.",
318
+ "version": "1.0.0",
319
+ "category": "games",
320
+ "keywords": ["gamedev", "mechanics", "level-design", "game-feel"]
321
+ },
322
+ {
323
+ "name": "geepers_game",
324
+ "source": "./agents/games/geepers_game.md",
325
+ "description": "Gamification design - reward systems, engagement loops, progress.",
326
+ "version": "1.0.0",
327
+ "category": "games",
328
+ "keywords": ["gamification", "engagement", "rewards", "fun"]
329
+ },
330
+ {
331
+ "name": "geepers_godot",
332
+ "source": "./agents/games/geepers_godot.md",
333
+ "description": "Godot Engine development - GDScript, scenes, nodes, signals.",
334
+ "version": "1.0.0",
335
+ "category": "games",
336
+ "keywords": ["godot", "gdscript", "game-engine", "scenes"]
337
+ },
338
+ {
339
+ "name": "geepers_orchestrator_corpus",
340
+ "source": "./agents/corpus/geepers_orchestrator_corpus.md",
341
+ "description": "Corpus linguistics orchestrator - corpus, UX, database coordination.",
342
+ "version": "1.0.0",
343
+ "category": "corpus",
344
+ "keywords": ["corpus", "linguistics", "nlp", "orchestrator"]
345
+ },
346
+ {
347
+ "name": "geepers_corpus",
348
+ "source": "./agents/corpus/geepers_corpus.md",
349
+ "description": "Corpus linguistics projects, language datasets, NLP resources.",
350
+ "version": "1.0.0",
351
+ "category": "corpus",
352
+ "keywords": ["corpus", "linguistics", "nlp", "datasets"]
353
+ },
354
+ {
355
+ "name": "geepers_corpus_ux",
356
+ "source": "./agents/corpus/geepers_corpus_ux.md",
357
+ "description": "Corpus linguistics UI/UX - KWIC displays, concordance viewers.",
358
+ "version": "1.0.0",
359
+ "category": "corpus",
360
+ "keywords": ["corpus", "ux", "kwic", "concordance"]
361
+ },
362
+ {
363
+ "name": "geepers_system_help",
364
+ "source": "./agents/system/geepers_system_help.md",
365
+ "description": "Reference guide for all geepers agents, generates documentation.",
366
+ "version": "1.0.0",
367
+ "category": "system",
368
+ "keywords": ["help", "reference", "documentation", "guide"]
369
+ },
370
+ {
371
+ "name": "geepers_system_onboard",
372
+ "source": "./agents/system/geepers_system_onboard.md",
373
+ "description": "Project understanding for unfamiliar codebases, creates ONBOARD.md.",
374
+ "version": "1.0.0",
375
+ "category": "system",
376
+ "keywords": ["onboard", "understanding", "codebase", "analysis"]
377
+ },
378
+ {
379
+ "name": "geepers_system_diag",
380
+ "source": "./agents/system/geepers_system_diag.md",
381
+ "description": "Comprehensive system diagnostic - services, Caddy, ports, databases.",
382
+ "version": "1.0.0",
383
+ "category": "system",
384
+ "keywords": ["system", "diagnostic", "infrastructure", "health"]
385
+ },
386
+ {
387
+ "name": "geepers_api",
388
+ "source": "./agents/standalone/geepers_api.md",
389
+ "description": "API design review, REST compliance, endpoint documentation.",
390
+ "version": "1.0.0",
391
+ "category": "standalone",
392
+ "keywords": ["api", "rest", "design", "documentation"]
393
+ },
394
+ {
395
+ "name": "geepers_scalpel",
396
+ "source": "./agents/standalone/geepers_scalpel.md",
397
+ "description": "Surgical code modifications in complex files with high precision.",
398
+ "version": "1.0.0",
399
+ "category": "standalone",
400
+ "keywords": ["surgical", "precision", "editing", "complex"]
401
+ },
402
+ {
403
+ "name": "geepers_janitor",
404
+ "source": "./agents/standalone/geepers_janitor.md",
405
+ "description": "Aggressive cleanup - cruft, temp files, dead code removal.",
406
+ "version": "1.0.0",
407
+ "category": "standalone",
408
+ "keywords": ["cleanup", "janitor", "dead-code", "maintenance"]
409
+ },
410
+ {
411
+ "name": "geepers_canary",
412
+ "source": "./agents/standalone/geepers_canary.md",
413
+ "description": "Early warning system, spot-checks fragile and critical systems.",
414
+ "version": "1.0.0",
415
+ "category": "standalone",
416
+ "keywords": ["canary", "health-check", "monitoring", "early-warning"]
417
+ },
418
+ {
419
+ "name": "geepers_dashboard",
420
+ "source": "./agents/standalone/geepers_dashboard.md",
421
+ "description": "Dashboard synchronization, service persistence, admin panel updates.",
422
+ "version": "1.0.0",
423
+ "category": "standalone",
424
+ "keywords": ["dashboard", "admin", "persistence", "services"]
425
+ }
426
+ ]
427
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "geepers",
3
+ "version": "1.0.0",
4
+ "description": "Multi-agent orchestration system with MCP tools and Claude Code plugin agents. 51 specialized agents for development workflows, code quality, deployment, research, and more.",
5
+ "author": {
6
+ "name": "Luke Steuber"
7
+ },
8
+ "license": "MIT",
9
+ "homepage": "https://dr.eamer.dev/geepers/",
10
+ "repository": "https://github.com/lukeslp/geepers",
11
+ "keywords": [
12
+ "mcp",
13
+ "orchestration",
14
+ "multi-agent",
15
+ "development-workflow",
16
+ "code-quality",
17
+ "deployment",
18
+ "geepers",
19
+ "claude-code"
20
+ ]
21
+ }
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Luke Steuber
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.