arkaos 2.2.2 → 2.3.1

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 (66) hide show
  1. package/VERSION +1 -1
  2. package/arka/skills/conclave/SKILL.md +194 -0
  3. package/arka/skills/human-writing/SKILL.md +143 -0
  4. package/config/agent-memory-template.md +28 -0
  5. package/config/disc-profiles.json +108 -0
  6. package/config/disc-team-validator.sh +94 -0
  7. package/config/gotchas-fixes.json +148 -0
  8. package/config/profile-template.json +12 -0
  9. package/config/providers-registry.json +56 -0
  10. package/config/settings-template.json +42 -0
  11. package/config/standards/communication.md +64 -0
  12. package/config/standards/orchestration.md +91 -0
  13. package/config/statusline-v2.sh +101 -0
  14. package/config/statusline.sh +139 -0
  15. package/config/system-prompt.sh +190 -0
  16. package/dashboard/LICENSE +21 -0
  17. package/dashboard/README.md +64 -0
  18. package/dashboard/app/app.config.ts +8 -0
  19. package/dashboard/app/app.vue +42 -0
  20. package/dashboard/app/assets/css/main.css +18 -0
  21. package/dashboard/app/composables/useApi.ts +8 -0
  22. package/dashboard/app/composables/useDashboard.ts +19 -0
  23. package/dashboard/app/error.vue +24 -0
  24. package/dashboard/app/layouts/default.vue +114 -0
  25. package/dashboard/app/pages/agents/[id].vue +506 -0
  26. package/dashboard/app/pages/agents/index.vue +225 -0
  27. package/dashboard/app/pages/budget.vue +132 -0
  28. package/dashboard/app/pages/commands.vue +180 -0
  29. package/dashboard/app/pages/health.vue +98 -0
  30. package/dashboard/app/pages/index.vue +126 -0
  31. package/dashboard/app/pages/knowledge.vue +729 -0
  32. package/dashboard/app/pages/personas.vue +597 -0
  33. package/dashboard/app/pages/settings.vue +146 -0
  34. package/dashboard/app/pages/tasks.vue +203 -0
  35. package/dashboard/app/types/index.d.ts +181 -0
  36. package/dashboard/app/utils/index.ts +7 -0
  37. package/dashboard/nuxt.config.ts +39 -0
  38. package/dashboard/package.json +37 -0
  39. package/dashboard/pnpm-workspace.yaml +7 -0
  40. package/dashboard/tsconfig.json +10 -0
  41. package/installer/cli.js +0 -0
  42. package/installer/index.js +262 -62
  43. package/knowledge/INDEX.md +34 -0
  44. package/knowledge/agents-registry.json +254 -0
  45. package/knowledge/channels-config.json +6 -0
  46. package/knowledge/commands-keywords.json +466 -0
  47. package/knowledge/commands-registry.json +2791 -0
  48. package/knowledge/commands-registry.json.bak +2791 -0
  49. package/knowledge/ecosystems.json +7 -0
  50. package/knowledge/obsidian-config.json +112 -0
  51. package/package.json +10 -6
  52. package/pyproject.toml +1 -1
  53. package/scripts/check-version.js +13 -0
  54. package/scripts/dashboard-api.py +636 -0
  55. package/scripts/knowledge-index.py +113 -0
  56. package/scripts/skill_validator.py +217 -0
  57. package/scripts/start-dashboard.sh +54 -0
  58. package/scripts/synapse-bridge.py +199 -0
  59. package/scripts/tools/brand_voice_analyzer.py +192 -0
  60. package/scripts/tools/dcf_calculator.py +168 -0
  61. package/scripts/tools/headline_scorer.py +215 -0
  62. package/scripts/tools/okr_cascade.py +207 -0
  63. package/scripts/tools/rice_prioritizer.py +230 -0
  64. package/scripts/tools/saas_metrics.py +234 -0
  65. package/scripts/tools/seo_checker.py +197 -0
  66. package/scripts/tools/tech_debt_analyzer.py +206 -0
@@ -0,0 +1,466 @@
1
+ {
2
+ "arka-standup": {
3
+ "keywords": ["standup", "daily standup", "morning update", "daily update", "what's happening", "status update"],
4
+ "examples": ["give me a daily standup", "what's the status of everything", "morning update please"]
5
+ },
6
+ "arka-status": {
7
+ "keywords": ["system status", "arka status", "system info", "version info"],
8
+ "examples": ["show system status", "what version is arka", "show me the system info"]
9
+ },
10
+ "arka-monitor": {
11
+ "keywords": ["monitor", "tech updates", "security alerts", "dependency updates", "stack updates"],
12
+ "examples": ["check for tech updates", "are there any security alerts", "monitor my stack"]
13
+ },
14
+ "arka-onboard": {
15
+ "keywords": ["onboard project", "setup project", "initialize project", "new project setup"],
16
+ "examples": ["onboard this project into arka", "setup my existing project"]
17
+ },
18
+ "arka-help": {
19
+ "keywords": ["help", "commands", "what can you do", "show commands", "available commands"],
20
+ "examples": ["show me all commands", "what can arka do", "help me find a command"]
21
+ },
22
+ "arka-setup": {
23
+ "keywords": ["setup profile", "configure", "personalize", "update profile", "my settings"],
24
+ "examples": ["setup my profile", "update my settings", "personalize arka"]
25
+ },
26
+ "dev-feature": {
27
+ "keywords": ["build", "create", "implement", "add", "new feature", "develop", "make"],
28
+ "examples": ["add user authentication", "build a payment system", "implement the checkout flow", "create a notification system"]
29
+ },
30
+ "dev-api": {
31
+ "keywords": ["api", "endpoint", "rest api", "api endpoint", "create api", "build api"],
32
+ "examples": ["create a REST API for users", "build the payments API", "add an endpoint for orders"]
33
+ },
34
+ "dev-plan": {
35
+ "keywords": ["plan", "architecture plan", "design plan", "plan feature", "plan implementation"],
36
+ "examples": ["plan the authentication architecture", "design the database schema", "plan how to implement notifications"]
37
+ },
38
+ "dev-debug": {
39
+ "keywords": ["fix", "bug", "broken", "error", "crash", "not working", "failing", "wrong", "debug"],
40
+ "examples": ["fix the login crash", "debug why checkout fails", "this button doesn't work", "there's an error in the API"]
41
+ },
42
+ "dev-refactor": {
43
+ "keywords": ["refactor", "clean up", "reorganize", "restructure", "improve code", "optimize code"],
44
+ "examples": ["refactor the user controller", "clean up the auth module", "reorganize the services layer"]
45
+ },
46
+ "dev-db": {
47
+ "keywords": ["database", "migration", "schema", "table", "column", "db change", "add field"],
48
+ "examples": ["add a status column to orders", "create a notifications table", "database migration for users"]
49
+ },
50
+ "dev-scaffold": {
51
+ "keywords": ["scaffold", "bootstrap", "starter", "new project", "create project", "init project"],
52
+ "examples": ["scaffold a new laravel project", "create a nuxt app", "bootstrap a react project", "start a new nextjs app"]
53
+ },
54
+ "dev-review": {
55
+ "keywords": ["review", "code review", "review changes", "check my code", "review PR"],
56
+ "examples": ["review my current changes", "do a code review", "check the quality of my code"]
57
+ },
58
+ "dev-test": {
59
+ "keywords": ["test", "write tests", "generate tests", "run tests", "test suite", "unit test"],
60
+ "examples": ["write tests for the auth module", "generate test suite", "add unit tests for UserService"]
61
+ },
62
+ "dev-deploy": {
63
+ "keywords": ["deploy", "release", "ship", "push to production", "go live", "publish"],
64
+ "examples": ["deploy to staging", "release to production", "ship this feature", "push to prod"]
65
+ },
66
+ "dev-docs": {
67
+ "keywords": ["documentation", "docs", "generate docs", "api docs", "technical docs"],
68
+ "examples": ["generate API documentation", "write technical docs", "document this module"]
69
+ },
70
+ "dev-stack-check": {
71
+ "keywords": ["stack check", "dependency check", "outdated packages", "update dependencies"],
72
+ "examples": ["check for outdated packages", "are my dependencies up to date", "stack version check"]
73
+ },
74
+ "dev-security-audit": {
75
+ "keywords": ["security audit", "security review", "owasp", "vulnerability scan", "security check"],
76
+ "examples": ["run a security audit", "check for vulnerabilities", "OWASP security review"]
77
+ },
78
+ "dev-research": {
79
+ "keywords": ["research", "evaluate library", "compare frameworks", "investigate", "look into"],
80
+ "examples": ["research payment gateways", "compare React vs Vue", "evaluate Stripe vs PayPal", "look into GraphQL"]
81
+ },
82
+ "dev-mcp-apply": {
83
+ "keywords": ["apply mcp", "mcp profile", "setup mcps", "configure mcps"],
84
+ "examples": ["apply the laravel MCP profile", "setup MCPs for this project", "configure nuxt MCPs"]
85
+ },
86
+ "dev-mcp-add": {
87
+ "keywords": ["add mcp", "install mcp", "enable mcp"],
88
+ "examples": ["add the sentry MCP", "install playwright MCP", "enable supabase MCP"]
89
+ },
90
+ "dev-mcp-list": {
91
+ "keywords": ["list mcps", "show mcps", "available mcps"],
92
+ "examples": ["show all available MCPs", "list MCPs", "what MCPs are available"]
93
+ },
94
+ "dev-mcp-status": {
95
+ "keywords": ["mcp status", "active mcps", "current mcps"],
96
+ "examples": ["show active MCPs", "what MCPs are configured", "MCP status"]
97
+ },
98
+ "dev-mcp-remove": {
99
+ "keywords": ["remove mcp", "uninstall mcp", "disable mcp"],
100
+ "examples": ["remove the discord MCP", "uninstall sentry MCP"]
101
+ },
102
+ "dev-onboard": {
103
+ "keywords": ["onboard existing", "import project", "add existing project", "onboard codebase"],
104
+ "examples": ["onboard my existing laravel project", "import this codebase into arka", "add this project to arka"]
105
+ },
106
+ "dev-ecosystem-list": {
107
+ "keywords": ["list ecosystems", "show ecosystems", "project groups"],
108
+ "examples": ["show all ecosystems", "list project groups", "what ecosystems exist"]
109
+ },
110
+ "dev-ecosystem-create": {
111
+ "keywords": ["create ecosystem", "new ecosystem", "group projects"],
112
+ "examples": ["create a new ecosystem for client X", "group these projects together"]
113
+ },
114
+ "dev-ecosystem-add": {
115
+ "keywords": ["add to ecosystem", "assign ecosystem", "move to ecosystem"],
116
+ "examples": ["add this project to the client-x ecosystem", "assign project to ecosystem"]
117
+ },
118
+ "dev-skill-add": {
119
+ "keywords": ["install skill", "add skill", "get skill"],
120
+ "examples": ["install the geo-seo skill", "add an external skill from github"]
121
+ },
122
+ "dev-skill-list": {
123
+ "keywords": ["list skills", "show skills", "installed skills"],
124
+ "examples": ["show installed skills", "list external skills", "what skills are installed"]
125
+ },
126
+ "dev-skill-remove": {
127
+ "keywords": ["remove skill", "uninstall skill", "delete skill"],
128
+ "examples": ["remove the geo-seo skill", "uninstall external skill"]
129
+ },
130
+ "dev-skill-create": {
131
+ "keywords": ["create skill", "scaffold skill", "new skill", "build skill"],
132
+ "examples": ["create a new skill", "scaffold an external skill", "build a custom skill"]
133
+ },
134
+ "kb-learn": {
135
+ "keywords": ["learn", "watch video", "youtube", "transcribe video", "learn from video", "process video"],
136
+ "examples": ["learn from this youtube video", "transcribe this video", "add this video to knowledge base"]
137
+ },
138
+ "kb-learn-text": {
139
+ "keywords": ["learn text", "learn article", "read article", "learn from article", "process article"],
140
+ "examples": ["learn from this article", "add this blog post to knowledge", "process this text file"]
141
+ },
142
+ "kb-queue": {
143
+ "keywords": ["kb queue", "job queue", "pending jobs", "transcription queue"],
144
+ "examples": ["show the kb queue", "what jobs are pending", "check transcription status"]
145
+ },
146
+ "kb-status": {
147
+ "keywords": ["kb status", "job status", "transcription status"],
148
+ "examples": ["check job status", "what's the status of my transcription"]
149
+ },
150
+ "kb-process": {
151
+ "keywords": ["process job", "analyze transcription", "process transcription", "analyze video"],
152
+ "examples": ["process the ready transcription", "analyze the transcription for job abc123"]
153
+ },
154
+ "kb-process-all": {
155
+ "keywords": ["process all", "analyze all", "process all ready"],
156
+ "examples": ["process all ready transcriptions", "analyze everything that's ready"]
157
+ },
158
+ "kb-capabilities": {
159
+ "keywords": ["kb capabilities", "available tools", "what tools", "whisper status"],
160
+ "examples": ["what transcription tools are available", "show kb capabilities", "do I have whisper installed"]
161
+ },
162
+ "kb-cleanup": {
163
+ "keywords": ["kb cleanup", "clean media", "remove old files", "cleanup transcriptions"],
164
+ "examples": ["clean up old media files", "remove transcriptions older than 90 days"]
165
+ },
166
+ "kb-persona": {
167
+ "keywords": ["view persona", "persona profile", "show persona", "persona details"],
168
+ "examples": ["show me the Sabri Suby persona", "view persona profile for Alex Hormozi"]
169
+ },
170
+ "kb-personas": {
171
+ "keywords": ["list personas", "all personas", "show personas"],
172
+ "examples": ["list all personas", "show me all knowledge personas", "what personas exist"]
173
+ },
174
+ "kb-search": {
175
+ "keywords": ["search knowledge", "search kb", "find in knowledge", "knowledge search"],
176
+ "examples": ["search knowledge base for marketing funnels", "find what we know about pricing strategies"]
177
+ },
178
+ "kb-write": {
179
+ "keywords": ["write as persona", "generate content", "write in style", "persona content"],
180
+ "examples": ["write a blog post as Sabri Suby", "generate content in Alex Hormozi's style"]
181
+ },
182
+ "kb-topics": {
183
+ "keywords": ["list topics", "knowledge topics", "all topics", "show topics"],
184
+ "examples": ["show all knowledge topics", "what topics are in the knowledge base"]
185
+ },
186
+ "kb-update": {
187
+ "keywords": ["update persona", "add to persona", "persona update", "more content persona"],
188
+ "examples": ["add this video to the Sabri Suby persona", "update Alex Hormozi with new content"]
189
+ },
190
+ "mkt-social": {
191
+ "keywords": ["social media", "social posts", "instagram", "linkedin", "twitter", "tiktok", "social content"],
192
+ "examples": ["create social posts about AI", "write instagram content for Black Friday", "linkedin posts about our product"]
193
+ },
194
+ "mkt-calendar": {
195
+ "keywords": ["content calendar", "posting schedule", "content plan", "editorial calendar"],
196
+ "examples": ["create a content calendar for next month", "plan this week's social media posts"]
197
+ },
198
+ "mkt-reels": {
199
+ "keywords": ["reels", "tiktok script", "shorts", "video script", "short video"],
200
+ "examples": ["write scripts for instagram reels about AI", "create tiktok content ideas", "youtube shorts scripts"]
201
+ },
202
+ "mkt-stories": {
203
+ "keywords": ["stories", "instagram stories", "facebook stories", "story sequence"],
204
+ "examples": ["create instagram story sequence for product launch", "write facebook stories content"]
205
+ },
206
+ "mkt-email": {
207
+ "keywords": ["email sequence", "email campaign", "welcome email", "nurture email", "email flow", "newsletter"],
208
+ "examples": ["create a welcome email sequence", "write a launch email campaign", "design a nurture email flow"]
209
+ },
210
+ "mkt-landing": {
211
+ "keywords": ["landing page", "landing copy", "sales page", "conversion page"],
212
+ "examples": ["write landing page copy for our SaaS", "create a sales page for the new product"]
213
+ },
214
+ "mkt-ads": {
215
+ "keywords": ["ad copy", "advertising", "facebook ads", "google ads", "ad campaign", "paid ads"],
216
+ "examples": ["write facebook ad copy for our product", "create google ads for the sale", "ad campaign for Black Friday"]
217
+ },
218
+ "mkt-affiliate": {
219
+ "keywords": ["affiliate", "affiliate marketing", "affiliate program", "affiliate content"],
220
+ "examples": ["analyze this product's affiliate potential", "create affiliate marketing content"]
221
+ },
222
+ "mkt-blog": {
223
+ "keywords": ["blog", "blog post", "article", "seo article", "blog content", "write article"],
224
+ "examples": ["write a blog post about AI in business", "create an SEO article about productivity tools"]
225
+ },
226
+ "mkt-copy": {
227
+ "keywords": ["copy analysis", "improve copy", "analyze copy", "copywriting review"],
228
+ "examples": ["analyze and improve our website copy", "review the copy on this page"]
229
+ },
230
+ "mkt-brand": {
231
+ "keywords": ["brand voice", "brand guidelines", "brand analysis", "brand identity"],
232
+ "examples": ["analyze our brand voice", "create brand guidelines from our website"]
233
+ },
234
+ "mkt-audit": {
235
+ "keywords": ["marketing audit", "marketing review", "marketing analysis", "site marketing"],
236
+ "examples": ["audit our marketing", "full marketing review of our website", "analyze our marketing strategy"]
237
+ },
238
+ "ops-tasks": {
239
+ "keywords": ["tasks", "task list", "todo", "to-do", "task management"],
240
+ "examples": ["show my tasks", "what's on my todo list", "manage tasks in ClickUp"]
241
+ },
242
+ "ops-email": {
243
+ "keywords": ["send email", "draft email", "write email", "email someone"],
244
+ "examples": ["draft an email to the client", "send a follow-up email", "write a professional email"]
245
+ },
246
+ "ops-calendar": {
247
+ "keywords": ["calendar", "schedule", "my schedule", "today's meetings", "upcoming meetings"],
248
+ "examples": ["show my calendar", "what meetings do I have today", "check my schedule"]
249
+ },
250
+ "ops-meeting": {
251
+ "keywords": ["meeting", "schedule meeting", "prepare meeting", "meeting agenda"],
252
+ "examples": ["schedule a meeting with the team", "prepare agenda for client meeting"]
253
+ },
254
+ "ops-invoice": {
255
+ "keywords": ["invoice", "create invoice", "send invoice", "billing"],
256
+ "examples": ["create an invoice for client X", "generate invoice for March work"]
257
+ },
258
+ "ops-automate": {
259
+ "keywords": ["automate", "automation", "workflow", "process automation"],
260
+ "examples": ["automate the onboarding process", "create a workflow for deployments"]
261
+ },
262
+ "ops-report": {
263
+ "keywords": ["operations report", "weekly report", "monthly report", "ops report"],
264
+ "examples": ["generate weekly operations report", "create monthly summary report"]
265
+ },
266
+ "ops-onboard-client": {
267
+ "keywords": ["onboard client", "new client", "client onboarding", "client setup"],
268
+ "examples": ["onboard new client Acme Corp", "start client onboarding process"]
269
+ },
270
+ "ops-standup": {
271
+ "keywords": ["ops standup", "operations standup", "ops daily"],
272
+ "examples": ["run operations standup", "daily ops update"]
273
+ },
274
+ "ops-channel-add": {
275
+ "keywords": ["add channel", "connect slack", "connect discord", "setup messaging"],
276
+ "examples": ["add a slack channel", "connect discord for notifications", "setup whatsapp messaging"]
277
+ },
278
+ "ops-channel-list": {
279
+ "keywords": ["list channels", "show channels", "messaging channels"],
280
+ "examples": ["show configured messaging channels", "list all notification channels"]
281
+ },
282
+ "ops-channel-remove": {
283
+ "keywords": ["remove channel", "disconnect channel", "delete channel"],
284
+ "examples": ["remove the slack channel", "disconnect discord notifications"]
285
+ },
286
+ "ops-notify": {
287
+ "keywords": ["notify", "send notification", "send message", "alert"],
288
+ "examples": ["send a notification to the team", "notify about the deployment"]
289
+ },
290
+ "ops-broadcast": {
291
+ "keywords": ["broadcast", "send to all", "announce", "broadcast message"],
292
+ "examples": ["broadcast a message to all channels", "announce the release to everyone"]
293
+ },
294
+ "ecom-audit": {
295
+ "keywords": ["store audit", "shop audit", "ecommerce audit", "store review", "conversion audit"],
296
+ "examples": ["audit my shopify store", "review the store's conversion rate", "full ecommerce audit"]
297
+ },
298
+ "ecom-product": {
299
+ "keywords": ["product listing", "create product", "product description", "product page", "optimize product"],
300
+ "examples": ["create a product listing for new shoes", "optimize product descriptions", "write product page copy"]
301
+ },
302
+ "ecom-pricing": {
303
+ "keywords": ["pricing strategy", "price analysis", "pricing model", "competitive pricing"],
304
+ "examples": ["analyze pricing for our SaaS", "create a pricing strategy", "competitive price analysis"]
305
+ },
306
+ "ecom-launch": {
307
+ "keywords": ["store launch", "launch store", "new store", "open store", "ecommerce launch"],
308
+ "examples": ["plan the store launch", "launch a new shopify store", "prepare store for launch"]
309
+ },
310
+ "ecom-ads": {
311
+ "keywords": ["ecommerce ads", "product ads", "shopping ads", "store advertising"],
312
+ "examples": ["create ads for our products", "run shopping campaign ads", "product advertising strategy"]
313
+ },
314
+ "ecom-competitors": {
315
+ "keywords": ["ecommerce competitors", "store competitors", "competitor stores", "competitive analysis store"],
316
+ "examples": ["analyze competitor stores", "competitive analysis of similar shops"]
317
+ },
318
+ "ecom-seo": {
319
+ "keywords": ["ecommerce seo", "store seo", "product seo", "shop seo"],
320
+ "examples": ["SEO audit of our store", "optimize store for search engines", "improve product SEO"]
321
+ },
322
+ "ecom-email": {
323
+ "keywords": ["cart abandonment", "post-purchase email", "win-back email", "ecommerce email flow"],
324
+ "examples": ["create cart abandonment emails", "setup post-purchase email flow", "write win-back email sequence"]
325
+ },
326
+ "ecom-report": {
327
+ "keywords": ["store report", "ecommerce report", "sales report", "store performance"],
328
+ "examples": ["generate store performance report", "monthly sales report", "ecommerce analytics report"]
329
+ },
330
+ "fin-report": {
331
+ "keywords": ["financial report", "quarterly report", "monthly financials", "p&l report"],
332
+ "examples": ["generate monthly financial report", "create Q1 financial summary"]
333
+ },
334
+ "fin-forecast": {
335
+ "keywords": ["forecast", "projection", "predict revenue", "financial forecast", "estimate revenue"],
336
+ "examples": ["forecast revenue for next 6 months", "project expenses through Q4", "financial projections"]
337
+ },
338
+ "fin-budget": {
339
+ "keywords": ["budget", "project budget", "budget planning", "cost estimate", "budgeting"],
340
+ "examples": ["create a budget for the new project", "plan the Q2 budget", "estimate project costs"]
341
+ },
342
+ "fin-negotiate": {
343
+ "keywords": ["negotiate", "negotiation", "bank negotiation", "deal terms", "batna"],
344
+ "examples": ["prepare for bank negotiation", "negotiate better terms", "BATNA analysis for investor meeting"]
345
+ },
346
+ "fin-pitch": {
347
+ "keywords": ["pitch", "investor pitch", "pitch deck", "funding pitch", "investor presentation"],
348
+ "examples": ["prepare investor pitch", "create a pitch deck", "pitch to Series A investors"]
349
+ },
350
+ "fin-analyze": {
351
+ "keywords": ["financial analysis", "analyze financials", "market financial", "sector analysis"],
352
+ "examples": ["analyze the SaaS market financials", "financial analysis of competitor"]
353
+ },
354
+ "fin-invest": {
355
+ "keywords": ["invest", "investment", "investment opportunity", "evaluate investment"],
356
+ "examples": ["analyze this investment opportunity", "should we invest in this asset"]
357
+ },
358
+ "fin-portfolio": {
359
+ "keywords": ["portfolio", "portfolio review", "investment portfolio", "portfolio balance"],
360
+ "examples": ["review our investment portfolio", "portfolio performance overview"]
361
+ },
362
+ "fin-invoice": {
363
+ "keywords": ["finance invoice", "generate invoice", "client invoice", "bill client"],
364
+ "examples": ["generate invoice for client work", "create invoice for March deliverables"]
365
+ },
366
+ "fin-cashflow": {
367
+ "keywords": ["cash flow", "cashflow", "cash projection", "liquidity", "cash position"],
368
+ "examples": ["analyze our cash flow", "cash flow projections for next quarter", "check our liquidity position"]
369
+ },
370
+ "strat-brainstorm": {
371
+ "keywords": ["brainstorm", "ideate", "ideas", "think about", "explore ideas", "workshop"],
372
+ "examples": ["brainstorm new product ideas", "lets think about expansion strategies", "ideation session for new features"]
373
+ },
374
+ "strat-market": {
375
+ "keywords": ["market analysis", "market research", "market opportunity", "market size", "tam"],
376
+ "examples": ["analyze the AI tools market", "market opportunity in Portugal", "what's the TAM for our product"]
377
+ },
378
+ "strat-prospect": {
379
+ "keywords": ["prospect", "prospecting", "lead generation", "find clients", "find customers"],
380
+ "examples": ["prospect for SaaS clients in Europe", "find potential customers in healthcare"]
381
+ },
382
+ "strat-competitor": {
383
+ "keywords": ["competitor analysis", "competitive intelligence", "analyze competitor", "competitor deep dive"],
384
+ "examples": ["deep dive on competitor X", "competitive intelligence report", "analyze our main competitor"]
385
+ },
386
+ "strat-swot": {
387
+ "keywords": ["swot", "strengths weaknesses", "swot analysis"],
388
+ "examples": ["SWOT analysis of our business", "do a SWOT for the new product line"]
389
+ },
390
+ "strat-evaluate": {
391
+ "keywords": ["evaluate idea", "assess idea", "idea evaluation", "pros cons", "feasibility"],
392
+ "examples": ["evaluate this business idea", "pros and cons of entering new market", "is this idea feasible"]
393
+ },
394
+ "strat-pivot": {
395
+ "keywords": ["pivot", "strategic pivot", "change direction", "pivot strategy"],
396
+ "examples": ["should we pivot to B2B", "evaluate pivoting our product strategy"]
397
+ },
398
+ "strat-roadmap": {
399
+ "keywords": ["roadmap", "strategic roadmap", "product roadmap", "quarterly roadmap"],
400
+ "examples": ["create a product roadmap for Q2", "strategic roadmap for next year"]
401
+ },
402
+ "strat-trends": {
403
+ "keywords": ["trends", "industry trends", "market trends", "emerging trends", "what's trending"],
404
+ "examples": ["what are the trends in AI", "industry trends for SaaS in 2026", "emerging tech trends"]
405
+ },
406
+ "brand-identity": {
407
+ "keywords": ["brand identity", "create brand", "new brand", "brand creation", "full brand"],
408
+ "examples": ["create a brand identity for my startup", "build a complete brand for Acme", "full brand identity"]
409
+ },
410
+ "brand-colors": {
411
+ "keywords": ["color palette", "brand colors", "colors", "palette", "colour scheme"],
412
+ "examples": ["generate a color palette for a tech startup", "create brand colors for a luxury brand"]
413
+ },
414
+ "brand-logo": {
415
+ "keywords": ["logo", "logo design", "create logo", "brand logo", "logo concept"],
416
+ "examples": ["design a logo for my company", "create logo concepts for Acme", "logo ideas for tech brand"]
417
+ },
418
+ "brand-mockup": {
419
+ "keywords": ["mockup", "product mockup", "packaging", "merchandise", "mock up"],
420
+ "examples": ["create product mockups", "generate packaging mockup for our product"]
421
+ },
422
+ "brand-photoshoot": {
423
+ "keywords": ["photoshoot", "product photography", "product shots", "lifestyle photos", "ai photography"],
424
+ "examples": ["generate product photography", "AI photoshoot for our clothing line"]
425
+ },
426
+ "brand-video": {
427
+ "keywords": ["brand video", "intro video", "product video", "video generation", "motion"],
428
+ "examples": ["create a brand intro video", "generate a product showcase video"]
429
+ },
430
+ "brand-guide": {
431
+ "keywords": ["brand guidelines", "brand guide", "style guide", "brand book", "brand manual"],
432
+ "examples": ["create brand guidelines", "write a brand style guide for our company"]
433
+ },
434
+ "brand-audit": {
435
+ "keywords": ["brand audit", "brand review", "brand analysis", "visual audit"],
436
+ "examples": ["audit our brand", "brand analysis of competitor.com", "review our brand consistency"]
437
+ },
438
+ "brand-moodboard": {
439
+ "keywords": ["moodboard", "mood board", "visual inspiration", "brand mood", "visual references"],
440
+ "examples": ["create a mood board for a minimalist brand", "mood board for luxury tech"]
441
+ },
442
+ "brand-naming": {
443
+ "keywords": ["naming", "brand name", "product name", "name ideas", "company name"],
444
+ "examples": ["help name my startup", "generate brand names for a fitness app", "name ideas for SaaS"]
445
+ },
446
+ "brand-positioning": {
447
+ "keywords": ["brand positioning", "market positioning", "brand archetype", "differentiation", "brand strategy"],
448
+ "examples": ["define our brand positioning", "brand positioning for a premium SaaS"]
449
+ },
450
+ "brand-social-kit": {
451
+ "keywords": ["social kit", "social templates", "social media templates", "visual templates", "brand templates"],
452
+ "examples": ["create social media templates for our brand", "generate a social kit"]
453
+ },
454
+ "dev-spec": {
455
+ "keywords": ["spec", "specification", "requirements", "define feature", "write spec", "feature spec", "describe what to build"],
456
+ "examples": ["write a spec for user authentication", "create a specification for the payment system", "define requirements for the dashboard"]
457
+ },
458
+ "dev-spec-validate": {
459
+ "keywords": ["validate spec", "check spec", "review spec", "spec complete", "spec ready"],
460
+ "examples": ["validate the current spec", "is the spec complete", "check the specification"]
461
+ },
462
+ "dev-spec-list": {
463
+ "keywords": ["list specs", "show specs", "existing specs", "all specifications", "project specs"],
464
+ "examples": ["show me all specs for this project", "list existing specifications", "what specs do we have"]
465
+ }
466
+ }