gossipcat 0.1.0 → 0.1.2
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/README.md +294 -121
- package/dist-mcp/data/archetypes.json +226 -0
- package/dist-mcp/mcp-server.js +879 -741
- package/package.json +2 -2
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
{
|
|
2
|
+
"quick-build": {
|
|
3
|
+
"name": "Quick Build",
|
|
4
|
+
"description": "Simple projects: scripts, CLIs, prototypes, small apps, one-off tools. One agent does everything.",
|
|
5
|
+
"roles": [
|
|
6
|
+
{ "preset": "implementer", "focus": "full-stack: code, tests, docs, everything" }
|
|
7
|
+
],
|
|
8
|
+
"signals": {
|
|
9
|
+
"keywords": ["cli", "script", "utility", "tool", "prototype", "poc", "simple", "quick", "small", "toy", "demo", "example"],
|
|
10
|
+
"files": ["bin/", "*.sh"],
|
|
11
|
+
"packages": ["commander", "yargs", "inquirer", "chalk", "ora", "meow"]
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"web-app": {
|
|
15
|
+
"name": "Web App",
|
|
16
|
+
"description": "Full-stack web apps: SaaS, dashboards, admin panels, CMS, e-commerce storefronts. Frontend + backend + data layer.",
|
|
17
|
+
"roles": [
|
|
18
|
+
{ "preset": "implementer", "focus": "features, components, API routes, database queries" },
|
|
19
|
+
{ "preset": "researcher", "focus": "framework best practices, library evaluation, API docs, design patterns" }
|
|
20
|
+
],
|
|
21
|
+
"signals": {
|
|
22
|
+
"keywords": ["webapp", "saas", "dashboard", "admin", "cms", "fullstack", "website", "portal", "app"],
|
|
23
|
+
"files": ["pages/", "app/", "components/", "api/", "src/"],
|
|
24
|
+
"packages": ["next", "nuxt", "remix", "sveltekit", "rails", "django", "laravel", "express", "fastify"]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"api-service": {
|
|
28
|
+
"name": "API Service",
|
|
29
|
+
"description": "Backend APIs: REST, GraphQL, microservices, serverless functions. Data-heavy, integration-heavy.",
|
|
30
|
+
"roles": [
|
|
31
|
+
{ "preset": "implementer", "focus": "endpoints, middleware, database layer, integrations" },
|
|
32
|
+
{ "preset": "researcher", "focus": "API design patterns, third-party API docs, schema design, protocol specs" }
|
|
33
|
+
],
|
|
34
|
+
"signals": {
|
|
35
|
+
"keywords": ["api", "rest", "graphql", "microservice", "serverless", "backend", "endpoint", "service"],
|
|
36
|
+
"files": ["routes/", "controllers/", "middleware/", "handlers/", "Dockerfile"],
|
|
37
|
+
"packages": ["express", "fastify", "koa", "hono", "nestjs", "fastapi", "flask", "gin", "prisma", "drizzle"]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"frontend": {
|
|
41
|
+
"name": "Frontend",
|
|
42
|
+
"description": "Client-side apps: SPAs, PWAs, browser extensions, design systems, component libraries.",
|
|
43
|
+
"roles": [
|
|
44
|
+
{ "preset": "implementer", "focus": "components, pages, styling, state management, animations" },
|
|
45
|
+
{ "preset": "researcher", "focus": "UI/UX patterns, accessibility standards, browser APIs, CSS techniques, library docs" }
|
|
46
|
+
],
|
|
47
|
+
"signals": {
|
|
48
|
+
"keywords": ["frontend", "spa", "ui", "design", "component", "pwa", "extension", "widget", "landing"],
|
|
49
|
+
"files": ["components/", "styles/", "public/", "manifest.json"],
|
|
50
|
+
"packages": ["react", "vue", "angular", "svelte", "tailwindcss", "shadcn", "radix", "storybook", "astro", "gatsby"]
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"mobile": {
|
|
54
|
+
"name": "Mobile App",
|
|
55
|
+
"description": "Mobile apps: React Native, Flutter, Swift, Kotlin. Platform-specific quirks, navigation, native APIs.",
|
|
56
|
+
"roles": [
|
|
57
|
+
{ "preset": "implementer", "focus": "screens, navigation, native modules, platform-specific code" },
|
|
58
|
+
{ "preset": "researcher", "focus": "platform APIs, native capabilities, device compatibility, app store guidelines" }
|
|
59
|
+
],
|
|
60
|
+
"signals": {
|
|
61
|
+
"keywords": ["mobile", "ios", "android", "app", "native", "phone", "tablet"],
|
|
62
|
+
"files": ["android/", "ios/", "screens/", "App.tsx"],
|
|
63
|
+
"packages": ["react-native", "expo", "flutter", "swift", "kotlin"]
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"game": {
|
|
67
|
+
"name": "Game Dev",
|
|
68
|
+
"description": "Games and interactive experiences: browser games, game engines, simulations. Game logic, rendering, audio, input handling.",
|
|
69
|
+
"roles": [
|
|
70
|
+
{ "preset": "implementer", "focus": "game loop, mechanics, rendering, audio, input, level design, UI/HUD" },
|
|
71
|
+
{ "preset": "researcher", "focus": "game design patterns, engine APIs, audio synthesis, physics algorithms, reference games" }
|
|
72
|
+
],
|
|
73
|
+
"signals": {
|
|
74
|
+
"keywords": ["game", "player", "score", "level", "sprite", "canvas", "render", "snake", "puzzle", "rpg", "arcade", "music", "sound"],
|
|
75
|
+
"files": ["assets/", "sprites/", "levels/", "scenes/"],
|
|
76
|
+
"packages": ["phaser", "pixi.js", "three.js", "babylon", "kaboom", "pygame", "love2d", "tone", "howler"]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"ai-llm": {
|
|
80
|
+
"name": "AI / LLM App",
|
|
81
|
+
"description": "AI-powered apps: RAG systems, chatbots, agents, prompt engineering, embeddings, fine-tuning pipelines.",
|
|
82
|
+
"roles": [
|
|
83
|
+
{ "preset": "implementer", "focus": "chains, agents, embeddings, retrieval, prompt templates, API integration" },
|
|
84
|
+
{ "preset": "researcher", "focus": "prompt optimization, model evaluation, hallucination testing, benchmarks, paper findings" }
|
|
85
|
+
],
|
|
86
|
+
"signals": {
|
|
87
|
+
"keywords": ["llm", "rag", "chatbot", "agent", "prompt", "embedding", "openai", "anthropic", "gpt", "claude", "ai"],
|
|
88
|
+
"files": ["prompts/", "chains/", "agents/"],
|
|
89
|
+
"packages": ["langchain", "llamaindex", "openai", "anthropic", "pinecone", "chromadb", "weaviate"]
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"data-pipeline": {
|
|
93
|
+
"name": "Data & ML",
|
|
94
|
+
"description": "Data engineering and ML: pipelines, ETL, training, analytics, notebooks, model serving.",
|
|
95
|
+
"roles": [
|
|
96
|
+
{ "preset": "implementer", "focus": "pipelines, transformations, model training, data loading, feature engineering" },
|
|
97
|
+
{ "preset": "researcher", "focus": "data exploration, model selection, experiment tracking, benchmarks, statistical methods" }
|
|
98
|
+
],
|
|
99
|
+
"signals": {
|
|
100
|
+
"keywords": ["data", "ml", "machine", "learning", "pipeline", "etl", "analytics", "model", "training", "dataset"],
|
|
101
|
+
"files": ["notebooks/", "data/", "models/", "*.ipynb"],
|
|
102
|
+
"packages": ["pandas", "numpy", "scikit-learn", "tensorflow", "pytorch", "dbt", "airflow", "spark", "jupyter"]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"library": {
|
|
106
|
+
"name": "Library / SDK",
|
|
107
|
+
"description": "Reusable packages: npm modules, Python packages, Rust crates. API design, backwards compatibility, documentation, cross-platform.",
|
|
108
|
+
"roles": [
|
|
109
|
+
{ "preset": "implementer", "focus": "core logic, public API, type definitions, examples" },
|
|
110
|
+
{ "preset": "researcher", "focus": "similar libraries, API design conventions, ecosystem standards, backwards compatibility patterns" }
|
|
111
|
+
],
|
|
112
|
+
"signals": {
|
|
113
|
+
"keywords": ["library", "package", "npm", "crate", "pip", "gem", "sdk", "framework", "module", "opensource"],
|
|
114
|
+
"files": ["lib/", "src/", "examples/", "CONTRIBUTING.md", "CHANGELOG.md"],
|
|
115
|
+
"packages": ["rollup", "esbuild", "tsup", "changesets", "semantic-release", "typedoc"]
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"infra-devops": {
|
|
119
|
+
"name": "Infrastructure",
|
|
120
|
+
"description": "DevOps and platform: Terraform, Kubernetes, Docker, CI/CD, cloud architecture, monitoring.",
|
|
121
|
+
"roles": [
|
|
122
|
+
{ "preset": "implementer", "focus": "IaC configs, pipelines, Dockerfiles, Helm charts, monitoring setup" },
|
|
123
|
+
{ "preset": "researcher", "focus": "cloud provider docs, pricing, service limits, best practices, security baselines" }
|
|
124
|
+
],
|
|
125
|
+
"signals": {
|
|
126
|
+
"keywords": ["devops", "infrastructure", "deploy", "kubernetes", "terraform", "docker", "cicd", "pipeline", "cloud"],
|
|
127
|
+
"files": ["terraform/", "k8s/", ".github/workflows/", "Dockerfile", "docker-compose.yml", "helm/"],
|
|
128
|
+
"packages": ["aws-cdk", "pulumi", "ansible"]
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"enterprise": {
|
|
132
|
+
"name": "Enterprise Platform",
|
|
133
|
+
"description": "Large-scale systems: monorepos, multi-service architectures, payment systems, trading platforms. Needs architecture oversight, strict review, thorough testing.",
|
|
134
|
+
"roles": [
|
|
135
|
+
{ "preset": "implementer", "focus": "features, cross-package changes, integrations, migrations" },
|
|
136
|
+
{ "preset": "reviewer", "focus": "architecture, API contracts, security, compliance, breaking changes" },
|
|
137
|
+
{ "preset": "researcher", "focus": "regulations, compliance requirements, vendor docs, integration specs, migration guides" }
|
|
138
|
+
],
|
|
139
|
+
"signals": {
|
|
140
|
+
"keywords": ["monorepo", "enterprise", "platform", "payment", "checkout", "ecommerce", "fintech", "trading", "banking", "compliance"],
|
|
141
|
+
"files": ["packages/", "apps/", "libs/", "lerna.json", "nx.json", "turbo.json", "pnpm-workspace.yaml"],
|
|
142
|
+
"packages": ["lerna", "nx", "turborepo", "stripe", "paypal"]
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"realtime": {
|
|
146
|
+
"name": "Realtime / Multiplayer",
|
|
147
|
+
"description": "Live systems: WebSocket apps, multiplayer games, collaborative editors, chat, streaming. State sync, conflict resolution, connection handling.",
|
|
148
|
+
"roles": [
|
|
149
|
+
{ "preset": "implementer", "focus": "WebSocket handlers, state sync, conflict resolution, protocols, reconnection" },
|
|
150
|
+
{ "preset": "researcher", "focus": "CRDT algorithms, sync protocols, connection management patterns, scaling strategies" }
|
|
151
|
+
],
|
|
152
|
+
"signals": {
|
|
153
|
+
"keywords": ["realtime", "websocket", "multiplayer", "collaborative", "chat", "live", "sync", "streaming"],
|
|
154
|
+
"files": ["ws/", "sockets/", "channels/"],
|
|
155
|
+
"packages": ["socket.io", "ws", "pusher", "ably", "liveblocks", "yjs", "automerge"]
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"blockchain": {
|
|
159
|
+
"name": "Blockchain / Web3",
|
|
160
|
+
"description": "Smart contracts, dApps, DeFi protocols. Solidity, gas optimization, security audits, fork testing.",
|
|
161
|
+
"roles": [
|
|
162
|
+
{ "preset": "implementer", "focus": "smart contracts, frontend integration, deployment scripts" },
|
|
163
|
+
{ "preset": "reviewer", "focus": "security audit, reentrancy, gas optimization, access control" },
|
|
164
|
+
{ "preset": "researcher", "focus": "EIP standards, protocol mechanics, audit reports, gas benchmarks, similar contracts" }
|
|
165
|
+
],
|
|
166
|
+
"signals": {
|
|
167
|
+
"keywords": ["blockchain", "web3", "smart", "contract", "solidity", "defi", "nft", "token", "dao", "ethereum"],
|
|
168
|
+
"files": ["contracts/", "scripts/deploy", "test/", "hardhat.config.*", "foundry.toml"],
|
|
169
|
+
"packages": ["hardhat", "foundry", "ethers", "web3", "wagmi", "viem", "openzeppelin"]
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"embedded": {
|
|
173
|
+
"name": "Embedded / IoT",
|
|
174
|
+
"description": "Hardware-adjacent: firmware, Arduino/RPi, drivers, sensors, RTOS. Timing-sensitive, resource-constrained.",
|
|
175
|
+
"roles": [
|
|
176
|
+
{ "preset": "implementer", "focus": "firmware, protocols, hardware abstraction, timing-critical code" },
|
|
177
|
+
{ "preset": "researcher", "focus": "datasheets, pin configurations, protocol specs, hardware limitations, reference implementations" }
|
|
178
|
+
],
|
|
179
|
+
"signals": {
|
|
180
|
+
"keywords": ["iot", "embedded", "firmware", "arduino", "raspberry", "sensor", "gpio", "rtos", "hardware"],
|
|
181
|
+
"files": ["firmware/", "drivers/", "*.ino", "platformio.ini"],
|
|
182
|
+
"packages": ["johnny-five", "serialport", "mqtt", "pigpio"]
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"migration": {
|
|
186
|
+
"name": "Migration / Rewrite",
|
|
187
|
+
"description": "Framework upgrades, language migrations, legacy rewrites. High risk, needs careful review and regression testing.",
|
|
188
|
+
"roles": [
|
|
189
|
+
{ "preset": "implementer", "focus": "rewrite, adaptation, codemods, compatibility shims" },
|
|
190
|
+
{ "preset": "reviewer", "focus": "diff review, regression detection, API parity, backwards compatibility" },
|
|
191
|
+
{ "preset": "researcher", "focus": "migration guides, breaking changes, deprecation notices, upgrade paths, codemod tools" }
|
|
192
|
+
],
|
|
193
|
+
"signals": {
|
|
194
|
+
"keywords": ["migrate", "migration", "rewrite", "upgrade", "legacy", "port", "convert", "codemod"],
|
|
195
|
+
"files": ["legacy/", "migration/", "deprecated/"],
|
|
196
|
+
"packages": ["codemod", "jscodeshift"]
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"docs": {
|
|
200
|
+
"name": "Documentation",
|
|
201
|
+
"description": "Technical writing: docs sites, tutorials, API references, READMEs. Accuracy and clarity matter.",
|
|
202
|
+
"roles": [
|
|
203
|
+
{ "preset": "implementer", "focus": "writing, formatting, examples, code snippets, publishing" },
|
|
204
|
+
{ "preset": "researcher", "focus": "fact checking, API verification, completeness audit, reference comparison, link validation" }
|
|
205
|
+
],
|
|
206
|
+
"signals": {
|
|
207
|
+
"keywords": ["documentation", "docs", "tutorial", "guide", "wiki", "blog", "readme", "writing"],
|
|
208
|
+
"files": ["docs/", "content/", "wiki/", "blog/"],
|
|
209
|
+
"packages": ["docusaurus", "nextra", "vitepress", "mkdocs", "mdx"]
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"security": {
|
|
213
|
+
"name": "Security",
|
|
214
|
+
"description": "Security-focused work: pen testing, vulnerability research, compliance, hardening. Needs adversarial thinking.",
|
|
215
|
+
"roles": [
|
|
216
|
+
{ "preset": "reviewer", "focus": "security audit, OWASP, threat modeling, input validation, auth flows" },
|
|
217
|
+
{ "preset": "implementer", "focus": "fixes, hardening, security middleware, encryption, access control" },
|
|
218
|
+
{ "preset": "researcher", "focus": "CVE databases, attack vectors, exploit techniques, compliance frameworks, security advisories" }
|
|
219
|
+
],
|
|
220
|
+
"signals": {
|
|
221
|
+
"keywords": ["security", "audit", "pentest", "vulnerability", "compliance", "owasp", "cve", "hardening"],
|
|
222
|
+
"files": ["security/", "audit/", "policies/"],
|
|
223
|
+
"packages": ["snyk", "eslint-plugin-security", "helmet", "csurf", "bcrypt"]
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|