$npx -y skills add DNYoussef/context-cascade --skill infrastructure/*============================================================================*/ /* SKILL SKILL :: VERILINGUA x VERIX EDITION */ /*============================================================================*/
| 1 | /*============================================================================*/ |
| 2 | /* SKILL SKILL :: VERILINGUA x VERIX EDITION */ |
| 3 | /*============================================================================*/ |
| 4 | |
| 5 | --- |
| 6 | name: SKILL |
| 7 | version: 1.0.0 |
| 8 | description: | |
| 9 | [assert|neutral] SKILL skill for operations workflows [ground:given] [conf:0.95] [state:confirmed] |
| 10 | category: operations |
| 11 | tags: |
| 12 | - general |
| 13 | author: system |
| 14 | cognitive_frame: |
| 15 | primary: aspectual |
| 16 | goal_analysis: |
| 17 | first_order: "Execute SKILL workflow" |
| 18 | second_order: "Ensure quality and consistency" |
| 19 | third_order: "Enable systematic operations processes" |
| 20 | --- |
| 21 | |
| 22 | /*----------------------------------------------------------------------------*/ |
| 23 | /* S0 META-IDENTITY */ |
| 24 | /*----------------------------------------------------------------------------*/ |
| 25 | |
| 26 | [define|neutral] SKILL := { |
| 27 | name: "SKILL", |
| 28 | category: "operations", |
| 29 | version: "1.0.0", |
| 30 | layer: L1 |
| 31 | } [ground:given] [conf:1.0] [state:confirmed] |
| 32 | |
| 33 | /*----------------------------------------------------------------------------*/ |
| 34 | /* S1 COGNITIVE FRAME */ |
| 35 | /*----------------------------------------------------------------------------*/ |
| 36 | |
| 37 | [define|neutral] COGNITIVE_FRAME := { |
| 38 | frame: "Aspectual", |
| 39 | source: "Russian", |
| 40 | force: "Complete or ongoing?" |
| 41 | } [ground:cognitive-science] [conf:0.92] [state:confirmed] |
| 42 | |
| 43 | ## Kanitsal Cerceve (Evidential Frame Activation) |
| 44 | Kaynak dogrulama modu etkin. |
| 45 | |
| 46 | /*----------------------------------------------------------------------------*/ |
| 47 | /* S2 TRIGGER CONDITIONS */ |
| 48 | /*----------------------------------------------------------------------------*/ |
| 49 | |
| 50 | [define|neutral] TRIGGER_POSITIVE := { |
| 51 | keywords: ["SKILL", "operations", "workflow"], |
| 52 | context: "user needs SKILL capability" |
| 53 | } [ground:given] [conf:1.0] [state:confirmed] |
| 54 | |
| 55 | /*----------------------------------------------------------------------------*/ |
| 56 | /* S3 CORE CONTENT */ |
| 57 | /*----------------------------------------------------------------------------*/ |
| 58 | |
| 59 | # Infrastructure Orchestration Skill |
| 60 | |
| 61 | ## Kanitsal Cerceve (Evidential Frame Activation) |
| 62 | Kaynak dogrulama modu etkin. |
| 63 | |
| 64 | |
| 65 | |
| 66 | ## Metadata |
| 67 | - **Skill ID**: infrastructure-orchestration |
| 68 | - **Category**: Infrastructure & DevOps |
| 69 | - **Tier**: Gold |
| 70 | - **Version**: 2.0.0 |
| 71 | - **Last Updated**: 2025-11-02 |
| 72 | |
| 73 | ## Overview |
| 74 | |
| 75 | Comprehensive infrastructure orchestration skill that manages cloud resources, containerization, infrastructure as code (IaC), deployment automation, and monitoring setup. This parent skill coordinates specialized sub-skills for Docker containerization and Terraform IaC management. |
| 76 | |
| 77 | ## Capabilities |
| 78 | |
| 79 | ### Core Infrastructure Management |
| 80 | - **Cloud Provisioning**: Multi-cloud resource provisioning (AWS, Azure, GCP) |
| 81 | - **Container Orchestration**: Docker, Kubernetes, Docker Swarm |
| 82 | - **Infrastructure as Code**: Terraform, CloudFormation, Pulumi |
| 83 | - **Configuration Management**: Ansible, Chef, Puppet |
| 84 | - **Deployment Automation**: CI/CD pipelines, blue-green deployments |
| 85 | - **Monitoring & Observability**: Prometheus, Grafana, ELK stack, OpenTelemetry |
| 86 | |
| 87 | ### Specialized Sub-Skills |
| 88 | 1. **Docker Containerization** (`docker-containerization/`) |
| 89 | - Multi-stage builds, optimization, security scanning |
| 90 | - Docker Compose orchestration |
| 91 | - Registry management and image distribution |
| 92 | |
| 93 | 2. **Terraform IaC** (`terraform-iac/`) |
| 94 | - Multi-cloud infrastructure provisioning |
| 95 | - State management and GitOps workflows |
| 96 | - Module development and reusability |
| 97 | |
| 98 | ## Trigger Conditions |
| 99 | |
| 100 | Auto-invoke this skill when user mentions: |
| 101 | - "infrastructure", "cloud setup", "provision resources" |
| 102 | - "deploy to AWS/Azure/GCP", "multi-cloud" |
| 103 | - "container orchestration", "Kubernetes", "K8s" |
| 104 | - "infrastructure as code", "IaC", "Terraform", "CloudFormation" |
| 105 | - "monitoring setup", "observability", "logging" |
| 106 | - "configuration management", "Ansible" |
| 107 | - "CI/CD pipeline", "deployment automation" |
| 108 | |
| 109 | ## Agent Assignments |
| 110 | |
| 111 | **Primary Agents**: |
| 112 | - `cicd-engineer` - CI/CD pipeline setup and deployment automation |
| 113 | - `backend-dev` - Infrastructure architecture and design |
| 114 | - `system-architect` - High-level infrastructure planning |
| 115 | |
| 116 | **Supporting Agents**: |
| 117 | - `code-analyzer` - Infrastructure code review and optimization |
| 118 | - `reviewer` - Security and compliance validation |
| 119 | - `tester` - Infrastructure testing and validation |
| 120 | |
| 121 | ## Workflow |
| 122 | |
| 123 | ### 1. Assessment Phase |
| 124 | ```yaml |
| 125 | Input: Infrastructure requirements, scale, compliance needs |
| 126 | Actions: |
| 127 | - Analyze current infrastructure state |
| 128 | - Identify gaps and requirements |
| 129 | - Select appropriate tools and platforms |
| 130 | - Design architecture with redundancy and scalability |
| 131 | Output: Infrastructure design document, technology stack selection |
| 132 | ``` |
| 133 | |
| 134 | ### 2. Provisioning Phase |
| 135 | ```yaml |
| 136 | Input: Architecture design, resource specifications |
| 137 | Actions: |
| 138 | - Write IaC templates (Terraform/CloudFormation) |
| 139 | - Configure networki |