@@ -238,16 +238,26 @@ func BuildSystemPrompt(persona *Persona, projectContext string) string {
238238
239239// expertiseKeywords maps expertise domains to keywords for task matching.
240240var expertiseKeywords = map [string ][]string {
241- "security" : {"security" , "vulnerability" , "cve" , "injection" , "xss" , "csrf" , "auth" , "authentication" ,
242- "authorization" , "encrypt" , "secret" , "owasp" , "penetration" , "exploit" },
243- "testing" : {"test" , "spec" , "assert" , "mock" , "stub" , "coverage" , "unit test" , "integration test" ,
244- "e2e" , "benchmark" , "fuzzing" , "fixture" },
245- "frontend" : {"css" , "html" , "react" , "vue" , "angular" , "component" , "ui" , "ux" , "style" ,
246- "responsive" , "accessibility" , "a11y" , "dom" , "browser" , "tailwind" },
247- "backend" : {"api" , "database" , "sql" , "server" , "endpoint" , "middleware" , "rest" , "grpc" ,
248- "microservice" , "cache" , "queue" , "migration" },
249- "devops" : {"deploy" , "kubernetes" , "k8s" , "docker" , "ci" , "cd" , "pipeline" , "terraform" ,
250- "ansible" , "helm" , "monitoring" , "infrastructure" , "aws" , "gcp" , "azure" , "nginx" },
241+ "security" : {
242+ "security" , "vulnerability" , "cve" , "injection" , "xss" , "csrf" , "auth" , "authentication" ,
243+ "authorization" , "encrypt" , "secret" , "owasp" , "penetration" , "exploit" ,
244+ },
245+ "testing" : {
246+ "test" , "spec" , "assert" , "mock" , "stub" , "coverage" , "unit test" , "integration test" ,
247+ "e2e" , "benchmark" , "fuzzing" , "fixture" ,
248+ },
249+ "frontend" : {
250+ "css" , "html" , "react" , "vue" , "angular" , "component" , "ui" , "ux" , "style" ,
251+ "responsive" , "accessibility" , "a11y" , "dom" , "browser" , "tailwind" ,
252+ },
253+ "backend" : {
254+ "api" , "database" , "sql" , "server" , "endpoint" , "middleware" , "rest" , "grpc" ,
255+ "microservice" , "cache" , "queue" , "migration" ,
256+ },
257+ "devops" : {
258+ "deploy" , "kubernetes" , "k8s" , "docker" , "ci" , "cd" , "pipeline" , "terraform" ,
259+ "ansible" , "helm" , "monitoring" , "infrastructure" , "aws" , "gcp" , "azure" , "nginx" ,
260+ },
251261}
252262
253263// SelectPersona automatically selects the best persona for a given task
0 commit comments