Natural language entry point for fractary-faber-cloud - routes requests to appropriate commands
Routes natural language requests to appropriate fractary-faber-cloud infrastructure commands.
/plugin marketplace add fractary/claude-plugins/plugin install fractary-faber-cloud@fractary"<natural-language-request>"claude-haiku-4-5<ARGUMENT_SYNTAX>
This command follows the standard space-separated syntax:
--flag value (NOT --flag=value)# Correct ✅
/fractary-faber-cloud:director --env test
# Incorrect ❌
/fractary-faber-cloud:director --env=test
</ARGUMENT_SYNTAX>
<CRITICAL_RULES> YOU MUST:
THIS COMMAND IS ONLY AN ENTRY POINT. The cloud-director agent handles all intent parsing and routing. </CRITICAL_RULES>
<ROUTING> Parse user input and invoke cloud-director agent:# Example: /fractary-faber-cloud:director "deploy my infrastructure to production"
# YOU MUST INVOKE AGENT:
Invoke cloud-director agent with user's full natural language request
# The director agent will:
# 1. Parse the natural language
# 2. Determine the appropriate infrastructure command
# 3. Route to infra-manager with correct operation
# 4. Pass appropriate arguments
# DO NOT:
# - Try to parse the intent yourself
# - Route directly to infra-manager yourself
# - Read files or execute commands
# - Try to solve the problem yourself
</ROUTING>
<EXAMPLES>
<example>
User: /fractary-faber-cloud:director "deploy infrastructure to test"
Action: Invoke cloud-director agent with request
Director will route to: /fractary-faber-cloud:deploy-apply --env test
</example>
<example>
User: /fractary-faber-cloud:director "design an S3 bucket for uploads"
Action: Invoke cloud-director agent with request
Director will route to: /fractary-faber-cloud:architect "S3 bucket for uploads"
</example>
<example>
User: /fractary-faber-cloud:director "validate my configuration"
Action: Invoke cloud-director agent with request
Director will route to: /fractary-faber-cloud:validate
</example>
<example>
User: /fractary-faber-cloud:director "show me deployed resources in production"
Action: Invoke cloud-director agent with request
Director will route to: /fractary-faber-cloud:list --env prod
</example>
</EXAMPLES>
<USAGE_NOTE> This command provides a natural language interface to all fractary-faber-cloud infrastructure operations. Users can describe what they want in plain English, and the director agent will determine the appropriate command to execute.
Alternative: Users can also invoke commands directly if they prefer:
Note: For runtime operations monitoring, use fractary-helm-cloud plugin: