@robinmordasiewicz/f5xc-xcsh 2.0.43-2601200312 → 2.0.46-2601210705

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 CHANGED
@@ -12,6 +12,29 @@ Version v2.0.21 includes updated API specifications for enhanced functionality.
12
12
 
13
13
  Full documentation is available at **[robinmordasiewicz.github.io/f5xc-xcsh](https://robinmordasiewicz.github.io/f5xc-xcsh)**
14
14
 
15
+ ## Claude Code Integration
16
+
17
+ This project includes a Claude Code skill for seamless AI assistant interaction with your locally installed xcsh binary.
18
+
19
+ ### /xcsh Skill
20
+
21
+ The `/xcsh` skill enables AI assistants to:
22
+
23
+ - Access real-time xcsh capabilities from your local installation
24
+ - Query resource specifications with field constraints and recommendations
25
+ - Generate valid F5 XC configurations with proper validation
26
+ - Provide intelligent suggestions based on F5 best practices
27
+
28
+ **Quick Start** (in Claude Code):
29
+
30
+ ```bash
31
+ /xcsh version # Check installation
32
+ /xcsh domains # List available domains
33
+ /xcsh spec healthcheck create # Get resource spec (when routing is connected)
34
+ ```
35
+
36
+ See [docs/SKILLS.md](docs/SKILLS.md) for complete documentation.
37
+
15
38
  ## Installation
16
39
 
17
40
  ### Homebrew
package/completions/_xcsh CHANGED
@@ -67,7 +67,6 @@ _xcsh() {
67
67
  'users:Account tokens, labels, and cloud-init config.'
68
68
  'virtual:HTTP, TCP, UDP load balancing with origin pools.'
69
69
  'vpm_and_node_management:Node lifecycle, fleet grouping, and orchestration.'
70
- 'waf:Request inspection, attack signatures, and bot mitigation.'
71
70
 
72
71
  )
73
72
  builtins=(
@@ -6,7 +6,7 @@ _xcsh_completions() {
6
6
  local cur prev words cword
7
7
  _init_completion || return
8
8
 
9
- local commands="admin_console_and_ui ai_services api authentication bigip billing_and_usage blindfold bot_and_threat_defense cdn ce_management certificates cloud_infrastructure cloudstatus completion container_services data_and_privacy_security data_intelligence ddos dns login managed_kubernetes marketplace network network_security nginx_one object_storage observability rate_limiting secops_and_incident_response service_mesh shape sites statistics subscription support telemetry_and_insights tenant_and_identity threat_campaign users virtual vpm_and_node_management waf help quit exit clear history refresh"
9
+ local commands="admin_console_and_ui ai_services api authentication bigip billing_and_usage blindfold bot_and_threat_defense cdn ce_management certificates cloud_infrastructure cloudstatus completion container_services data_and_privacy_security data_intelligence ddos dns login managed_kubernetes marketplace network network_security nginx_one object_storage observability rate_limiting secops_and_incident_response service_mesh shape sites statistics subscription support telemetry_and_insights tenant_and_identity threat_campaign users virtual vpm_and_node_management help quit exit clear history refresh"
10
10
  local actions="list get create delete replace apply status patch add-labels remove-labels"
11
11
  local builtins="help quit exit clear history context ctx refresh"
12
12
  local global_flags="--help -h --version -v --no-color --output -o --namespace -ns --spec"
@@ -64,7 +64,6 @@ complete -c xcsh -n "__fish_use_subcommand" -a "threat_campaign" -d 'Attack dete
64
64
  complete -c xcsh -n "__fish_use_subcommand" -a "users" -d 'Account tokens, labels, and cloud-init config.'
65
65
  complete -c xcsh -n "__fish_use_subcommand" -a "virtual" -d 'HTTP, TCP, UDP load balancing with origin pools.'
66
66
  complete -c xcsh -n "__fish_use_subcommand" -a "vpm_and_node_management" -d 'Node lifecycle, fleet grouping, and orchestration.'
67
- complete -c xcsh -n "__fish_use_subcommand" -a "waf" -d 'Request inspection, attack signatures, and bot mitigation.'
68
67
 
69
68
  # Alias completions
70
69
 
@@ -470,16 +469,6 @@ complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "st
470
469
  complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "patch" -d 'Patch a resource'
471
470
  complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "add-labels" -d 'Add labels to a resource'
472
471
  complete -c xcsh -n "__fish_seen_subcommand_from vpm_and_node_management" -a "remove-labels" -d 'Remove labels from a resource'
473
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "list" -d 'List resources'
474
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "get" -d 'Get a specific resource'
475
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "create" -d 'Create a new resource'
476
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "delete" -d 'Delete a resource'
477
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "replace" -d 'Replace a resource'
478
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "apply" -d 'Apply configuration from file'
479
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "status" -d 'Get resource status'
480
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "patch" -d 'Patch a resource'
481
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "add-labels" -d 'Add labels to a resource'
482
- complete -c xcsh -n "__fish_seen_subcommand_from waf" -a "remove-labels" -d 'Remove labels from a resource'
483
472
 
484
473
  # Action-specific flags
485
474
  complete -c xcsh -l name -s n -d 'Resource name'