CoolFace
Apppublic

admin08077/Githubgemini

sourceHugging Faceotherupdated 10mo agoView on Hugging Face
0likes
taxonomyService-CBHwv5t5.js.map1 linesDownload Raw Back to assets
1{"version":3,"file":"taxonomyService-CBHwv5t5.js","sources":["../../services/taxonomyService.ts"],"sourcesContent":["export interface FeatureTaxonomy {\n    id: string;\n    name: string;\n    description: string;\n    category: string;\n    inputs: string;\n}\n\nexport const FEATURE_TAXONOMY: FeatureTaxonomy[] = [\n    {\n        id: \"ai-command-center\",\n        name: \"AI Command Center\",\n        description: \"The main entry point. Use natural language to navigate and control the entire toolkit. Can call other tools.\",\n        category: \"Core\",\n        inputs: \"A natural language prompt describing what the user wants to do. Examples: 'explain this code: ...', 'design a theme with space vibes'.\"\n    },\n    {\n        id: \"workspace-connector-hub\",\n        name: \"Workspace Connector Hub\",\n        description: \"A central hub to execute actions on connected third-party services like Jira, Slack, GitHub, Vercel, and more. This is the primary tool for inter-service orchestration. The AI should use the 'runWorkspaceAction' function to interact with it.\",\n        category: \"Workflow\",\n        inputs: \"A natural language command describing a sequence of actions. Examples: 'create a jira ticket and post to slack', 'deploy the `dev` branch to vercel', 'summarize the last 5 commits and create a Confluence page'.\"\n    },\n    {\n        id: \"ai-code-explainer\",\n        name: \"AI Code Explainer\",\n        description: \"Accepts a code snippet and provides a detailed, structured analysis including summary, line-by-line breakdown, complexity, suggestions, and a visual flowchart.\",\n        category: \"AI Tools\",\n        inputs: \"A string containing a code snippet.\"\n    },\n    {\n        id: \"theme-designer\",\n        name: \"AI Theme Designer\",\n        description: \"Generates a complete UI color theme, including a semantic palette and accessibility scores, from a simple text description or an uploaded image.\",\n        category: \"AI Tools\",\n        inputs: \"A string describing the desired aesthetic (e.g., 'a calm, minimalist theme for a blog') or an image file.\"\n    },\n    {\n        id: \"regex-sandbox\",\n        name: \"RegEx Sandbox\",\n        description: \"Generates a regular expression from a natural language description. Also allows testing expressions against a string.\",\n        category: \"Testing\",\n        inputs: \"A string describing the pattern to match. Example: 'find all email addresses'.\"\n    },\n    {\n        id: \"ai-pull-request-assistant\",\n        name: \"AI Pull Request Assistant\",\n        description: \"Takes 'before' and 'after' code snippets, calculates the diff, generates a structured pull request summary (title, description, changes), and populates a full PR template.\",\n        category: \"AI Tools\",\n        inputs: \"Two strings: 'beforeCode' and 'afterCode'.\"\n    },\n     {\n        id: \"visual-git-tree\",\n        name: \"AI Git Log Analyzer\",\n        description: \"Intelligently parses a raw 'git log' output to create a categorized and well-formatted changelog, separating new features from bug fixes.\",\n        category: \"Git\",\n        inputs: \"A string containing the raw output of a 'git log' command.\"\n    },\n    {\n        id: \"cron-job-builder\",\n        name: \"AI Cron Job Builder\",\n        description: \"Generates a valid cron expression from a natural language description of a schedule.\",\n        category: \"Deployment\",\n        inputs: \"A string describing a schedule. Example: 'every weekday at 5pm'.\"\n    },\n    {\n        id: \"ai-code-migrator\",\n        name: \"AI Code Migrator\",\n        description: \"Translate code between languages & frameworks.\",\n        category: \"AI Tools\",\n        inputs: \"A string of code to convert, a string for the source language, and a string for the target language. e.g. 'migrate this SASS to CSS: ...'\"\n    },\n    {\n        id: \"ai-commit-generator\",\n        name: \"AI Commit Message Generator\",\n        description: \"Generates a conventional commit message from a git diff.\",\n        category: \"AI Tools\",\n        inputs: \"A string containing a git diff.\"\n    },\n    {\n        id: \"worker-thread-debugger\",\n        name: \"AI Concurrency Analyzer\",\n        description: \"Analyzes JavaScript code for potential Web Worker concurrency issues like race conditions.\",\n        category: \"Testing\",\n        inputs: \"A string of JavaScript code to analyze for concurrency issues.\"\n    },\n    {\n        id: \"xbrl-converter\",\n        name: \"XBRL Converter\",\n        description: \"Converts a JSON object into a simplified XBRL-like XML format.\",\n        category: \"Data\",\n        inputs: \"A string containing valid JSON.\"\n    },\n    {\n        id: \"api-mock-generator\",\n        name: \"API Mock Server\",\n        description: \"Generates mock API data from a description and serves it locally using a service worker.\",\n        category: \"Local Dev\",\n        inputs: \"A text description of a data schema (e.g., 'a user with id, name, and email').\"\n    },\n    {\n        id: \"env-manager\",\n        name: \".env Manager\",\n        description: \"A graphical interface for creating and managing .env files.\",\n        category: \"Local Dev\",\n        inputs: \"Key-value pairs for environment variables.\"\n    },\n    {\n        id: \"performance-profiler\",\n        name: \"AI Performance Profiler\",\n        description: \"Analyze runtime performance traces and bundle stats to get AI-powered optimization advice.\",\n        category: \"Performance & Auditing\",\n        inputs: \"Runtime performance data or pasted bundle statistics JSON.\"\n    },\n    {\n        id: \"a11y-auditor\",\n        name: \"Accessibility Auditor\",\n        description: \"Audit a live URL for accessibility issues and get AI-powered suggestions for fixes.\",\n        category: \"Performance & Auditing\",\n        inputs: \"A URL to a website or web application.\"\n    },\n    {\n        id: \"ci-cd-generator\",\n        name: \"AI CI/CD Pipeline Architect\",\n        description: \"Generate CI/CD configuration files (e.g., GitHub Actions YAML) from a natural language description.\",\n        category: \"Deployment & CI/CD\",\n        inputs: \"A text description of deployment stages (e.g., 'install, test, build, deploy').\"\n    },\n    {\n        id: \"deployment-preview\",\n        name: \"Static Deployment Previewer\",\n        description: \"See a live preview of files generated by the AI Feature Builder as if they were statically deployed.\",\n        category: \"Deployment & CI/CD\",\n        inputs: \"Files stored in the app's local database from the AI Feature Builder.\"\n    },\n    {\n        id: \"security-scanner\",\n        name: \"AI Security Scanner\",\n        description: \"Perform static analysis on code snippets to find common vulnerabilities and get AI-driven mitigation advice.\",\n        category: \"Security\",\n        inputs: \"A string containing a code snippet.\"\n    },\n    {\n        id: \"gmail-addon-simulator\",\n        name: \"Gmail Add-on Simulator\",\n        description: \"A simulation of how this app could use contextual Gmail Add-on scopes to read the current email and compose replies with AI assistance.\",\n        category: \"Productivity\",\n        inputs: \"A mock email context. No user input required to launch the simulation.\"\n    },\n    {\n        id: \"iam-policy-visualizer\",\n        name: \"GCP IAM Policy Visualizer\",\n        description: \"Visually test what a user can and cannot do across a set of Google Cloud resources.\",\n        category: \"Cloud\",\n        inputs: \"A list of full GCP resource names and a list of permission strings to test.\"\n    }\n];"],"names":["FEATURE_TAXONOMY"],"mappings":"AAQO,MAAMA,EAAsC,CAC/C,CACI,GAAI,oBACJ,KAAM,oBACN,YAAa,+GACb,SAAU,OACV,OAAQ,wIAAA,EAEZ,CACI,GAAI,0BACJ,KAAM,0BACN,YAAa,oPACb,SAAU,WACV,OAAQ,oNAAA,EAEZ,CACI,GAAI,oBACJ,KAAM,oBACN,YAAa,kKACb,SAAU,WACV,OAAQ,qCAAA,EAEZ,CACI,GAAI,iBACJ,KAAM,oBACN,YAAa,mJACb,SAAU,WACV,OAAQ,2GAAA,EAEZ,CACI,GAAI,gBACJ,KAAM,gBACN,YAAa,wHACb,SAAU,UACV,OAAQ,gFAAA,EAEZ,CACI,GAAI,4BACJ,KAAM,4BACN,YAAa,8KACb,SAAU,WACV,OAAQ,4CAAA,EAEX,CACG,GAAI,kBACJ,KAAM,sBACN,YAAa,4IACb,SAAU,MACV,OAAQ,4DAAA,EAEZ,CACI,GAAI,mBACJ,KAAM,sBACN,YAAa,uFACb,SAAU,aACV,OAAQ,kEAAA,EAEZ,CACI,GAAI,mBACJ,KAAM,mBACN,YAAa,iDACb,SAAU,WACV,OAAQ,2IAAA,EAEZ,CACI,GAAI,sBACJ,KAAM,8BACN,YAAa,2DACb,SAAU,WACV,OAAQ,iCAAA,EAEZ,CACI,GAAI,yBACJ,KAAM,0BACN,YAAa,6FACb,SAAU,UACV,OAAQ,gEAAA,EAEZ,CACI,GAAI,iBACJ,KAAM,iBACN,YAAa,iEACb,SAAU,OACV,OAAQ,iCAAA,EAEZ,CACI,GAAI,qBACJ,KAAM,kBACN,YAAa,2FACb,SAAU,YACV,OAAQ,gFAAA,EAEZ,CACI,GAAI,cACJ,KAAM,eACN,YAAa,8DACb,SAAU,YACV,OAAQ,4CAAA,EAEZ,CACI,GAAI,uBACJ,KAAM,0BACN,YAAa,6FACb,SAAU,yBACV,OAAQ,4DAAA,EAEZ,CACI,GAAI,eACJ,KAAM,wBACN,YAAa,sFACb,SAAU,yBACV,OAAQ,wCAAA,EAEZ,CACI,GAAI,kBACJ,KAAM,8BACN,YAAa,sGACb,SAAU,qBACV,OAAQ,iFAAA,EAEZ,CACI,GAAI,qBACJ,KAAM,8BACN,YAAa,uGACb,SAAU,qBACV,OAAQ,uEAAA,EAEZ,CACI,GAAI,mBACJ,KAAM,sBACN,YAAa,+GACb,SAAU,WACV,OAAQ,qCAAA,EAEZ,CACI,GAAI,wBACJ,KAAM,yBACN,YAAa,0IACb,SAAU,eACV,OAAQ,wEAAA,EAEZ,CACI,GAAI,wBACJ,KAAM,4BACN,YAAa,sFACb,SAAU,QACV,OAAQ,6EAAA,CAEhB"}