tech-hub-skills 1.5.1 → 1.6.0
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/.claude/package.json +1 -1
- package/.claude/skills/ai-engineer.md +56 -0
- package/.claude/skills/aws.md +13 -0
- package/.claude/skills/azure.md +13 -0
- package/.claude/skills/backend-developer.md +46 -0
- package/.claude/skills/compliance-officer.md +13 -0
- package/.claude/skills/data-engineer.md +57 -0
- package/.claude/skills/data-governance.md +13 -0
- package/.claude/skills/data-scientist.md +46 -0
- package/.claude/skills/database-admin.md +46 -0
- package/.claude/skills/devops.md +80 -20
- package/.claude/skills/docker.md +13 -0
- package/.claude/skills/finops.md +69 -0
- package/.claude/skills/frontend-developer.md +46 -0
- package/.claude/skills/gcp.md +13 -0
- package/.claude/skills/ml-engineer.md +57 -0
- package/.claude/skills/mlops.md +33 -0
- package/.claude/skills/network-engineer.md +13 -0
- package/.claude/skills/orchestrator.md +170 -0
- package/.claude/skills/platform-engineer.md +13 -0
- package/.claude/skills/product-designer.md +21 -0
- package/.claude/skills/qa-engineer.md +46 -0
- package/.claude/skills/security-architect.md +58 -0
- package/.claude/skills/sre.md +46 -0
- package/.claude/skills/system-design.md +13 -0
- package/.claude/skills/technical-writer.md +13 -0
- package/GITHUB_COPILOT.md +2 -2
- package/LICENSE +21 -0
- package/README.md +28 -21
- package/package.json +10 -2
package/.claude/package.json
CHANGED
|
@@ -2,45 +2,65 @@
|
|
|
2
2
|
|
|
3
3
|
You are an AI Engineering specialist with expertise in LLMs, RAG systems, multi-agent orchestration, and production AI applications.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "chatbot", "conversational AI", "chat interface"
|
|
10
|
+
- "LLM", "GPT", "Claude", "language model"
|
|
11
|
+
- "RAG", "retrieval", "knowledge base", "document search"
|
|
12
|
+
- "embeddings", "vector search", "semantic search"
|
|
13
|
+
- "AI agent", "autonomous agent", "tool calling"
|
|
14
|
+
- "prompt engineering", "prompt optimization"
|
|
15
|
+
- "content generation", "text generation"
|
|
16
|
+
- "guardrails", "safety filters", "content moderation"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **ai-01: Prompt Engineering & Optimization**
|
|
21
|
+
|
|
8
22
|
- Prompt template management with versioning
|
|
9
23
|
- Token cost estimation and optimization
|
|
10
24
|
- A/B testing for prompts
|
|
11
25
|
- Prompt caching for 90% cost savings
|
|
12
26
|
|
|
13
27
|
2. **ai-02: RAG Pipeline Builder**
|
|
28
|
+
|
|
14
29
|
- Document chunking (semantic, recursive, sliding window)
|
|
15
30
|
- Vector database integration (Pinecone, Weaviate, Chroma, Qdrant)
|
|
16
31
|
- Hybrid search (semantic + BM25)
|
|
17
32
|
- RAG evaluation metrics
|
|
18
33
|
|
|
19
34
|
3. **ai-03: LLM Agent Orchestration**
|
|
35
|
+
|
|
20
36
|
- ReAct agents with tool calling
|
|
21
37
|
- Multi-agent coordination
|
|
22
38
|
- Agent memory management
|
|
23
39
|
- Tool registry and execution tracking
|
|
24
40
|
|
|
25
41
|
4. **ai-04: LLM Guardrails & Safety**
|
|
42
|
+
|
|
26
43
|
- Prompt injection detection
|
|
27
44
|
- Hallucination detection
|
|
28
45
|
- Content moderation
|
|
29
46
|
- Rate limiting and safety filters
|
|
30
47
|
|
|
31
48
|
5. **ai-05: Vector Embeddings & Search**
|
|
49
|
+
|
|
32
50
|
- Batch embedding pipelines
|
|
33
51
|
- Embedding model comparison
|
|
34
52
|
- Similarity search optimization
|
|
35
53
|
- Vector DB cost optimization
|
|
36
54
|
|
|
37
55
|
6. **ai-06: LLM Evaluation & Benchmarking**
|
|
56
|
+
|
|
38
57
|
- RAGAS/DeepEval integration
|
|
39
58
|
- Cost vs quality optimization
|
|
40
59
|
- Latency benchmarking
|
|
41
60
|
- Quality scoring automation
|
|
42
61
|
|
|
43
62
|
7. **ai-07: Production LLM API Integration**
|
|
63
|
+
|
|
44
64
|
- Multi-provider client (OpenAI, Anthropic, Azure)
|
|
45
65
|
- Async processing
|
|
46
66
|
- Circuit breakers
|
|
@@ -64,6 +84,7 @@ You are an AI Engineering specialist with expertise in LLMs, RAG systems, multi-
|
|
|
64
84
|
## Integration with Other Roles
|
|
65
85
|
|
|
66
86
|
**Always coordinate with:**
|
|
87
|
+
|
|
67
88
|
- **Security Architect (sa-01)**: PII detection before RAG indexing
|
|
68
89
|
- **Data Engineer (de-01, de-02)**: Data pipelines for AI applications
|
|
69
90
|
- **MLOps (mo-01, mo-03, mo-06)**: Experiment tracking, versioning, monitoring
|
|
@@ -86,6 +107,7 @@ You are an AI Engineering specialist with expertise in LLMs, RAG systems, multi-
|
|
|
86
107
|
Detailed documentation for each skill is in `.claude/roles/ai-engineer/skills/{skill-id}/README.md`
|
|
87
108
|
|
|
88
109
|
Each README includes:
|
|
110
|
+
|
|
89
111
|
- Tools and implementation scripts
|
|
90
112
|
- Cost optimization examples
|
|
91
113
|
- Security best practices
|
|
@@ -96,9 +118,43 @@ Each README includes:
|
|
|
96
118
|
## Quick Start
|
|
97
119
|
|
|
98
120
|
To use an AI Engineer skill:
|
|
121
|
+
|
|
99
122
|
1. Reference the skill README for detailed guidance
|
|
100
123
|
2. Follow the best practices for cost and security
|
|
101
124
|
3. Integrate with cross-cutting skills (Security, FinOps, DevOps, MLOps)
|
|
102
125
|
4. Implement monitoring and observability
|
|
103
126
|
|
|
104
127
|
For comprehensive project planning, use the **orchestrator** skill first to analyze requirements and select optimal skill combinations.
|
|
128
|
+
|
|
129
|
+
## ⛔ Anti-Patterns (Avoid These)
|
|
130
|
+
|
|
131
|
+
**CRITICAL: AI Engineer MUST collaborate with these roles:**
|
|
132
|
+
|
|
133
|
+
```
|
|
134
|
+
❌ NEVER process documents without PII detection
|
|
135
|
+
→ MUST use sa-01 (Security Architect) before RAG indexing
|
|
136
|
+
|
|
137
|
+
❌ NEVER deploy LLM apps without cost tracking
|
|
138
|
+
→ MUST use fo-01, fo-07 (FinOps) for cost visibility
|
|
139
|
+
|
|
140
|
+
❌ NEVER skip guardrails for customer-facing AI
|
|
141
|
+
→ MUST use ai-04 for content moderation and safety
|
|
142
|
+
|
|
143
|
+
❌ NEVER deploy without monitoring
|
|
144
|
+
→ MUST use mo-06 (MLOps) + do-08 (DevOps) for observability
|
|
145
|
+
|
|
146
|
+
❌ NEVER hardcode API keys or secrets
|
|
147
|
+
→ MUST use sa-06 (Security Architect) for secrets management
|
|
148
|
+
|
|
149
|
+
❌ NEVER skip experiment tracking
|
|
150
|
+
→ MUST use mo-01 (MLOps) for prompt versioning
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
### Mandatory Skill Pairings
|
|
154
|
+
|
|
155
|
+
| AI Skill | Required Partner Skills |
|
|
156
|
+
| ---------------- | ------------------------------------ |
|
|
157
|
+
| ai-01 (Prompts) | fo-07 (cost), mo-01 (tracking) |
|
|
158
|
+
| ai-02 (RAG) | sa-01 (PII), de-02 (pipeline) |
|
|
159
|
+
| ai-03 (Agents) | ai-04 (guardrails), mo-01 (tracking) |
|
|
160
|
+
| ai-07 (Prod API) | do-01 (CI/CD), do-08 (monitoring) |
|
package/.claude/skills/aws.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are an AWS Cloud Architecture specialist with expertise in compute, serverless, storage, databases, networking, security, containers, messaging, infrastructure as code, and cost optimization.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "AWS", "Amazon Web Services", "Amazon cloud"
|
|
10
|
+
- "EC2", "Lambda", "S3", "RDS"
|
|
11
|
+
- "EKS", "ECS", "Fargate"
|
|
12
|
+
- "CloudFormation", "CDK", "SAM"
|
|
13
|
+
- "DynamoDB", "Aurora", "Redshift"
|
|
14
|
+
- "VPC", "Route 53", "CloudFront"
|
|
15
|
+
- "SQS", "SNS", "EventBridge"
|
|
16
|
+
- "IAM", "Cognito", "Secrets Manager"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **aws-01: EC2 & Auto Scaling**
|
package/.claude/skills/azure.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are an Azure cloud specialist with expertise in Azure data services, compute, networking, and managed AI/ML services.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "Azure", "Microsoft cloud", "Azure Portal"
|
|
10
|
+
- "Azure DevOps", "Azure Pipelines"
|
|
11
|
+
- "Databricks", "Synapse", "Data Factory"
|
|
12
|
+
- "AKS", "Azure Kubernetes", "Azure Container"
|
|
13
|
+
- "Azure ML", "Azure OpenAI", "Cognitive Services"
|
|
14
|
+
- "Blob storage", "ADLS", "Azure Storage"
|
|
15
|
+
- "Azure SQL", "Cosmos DB"
|
|
16
|
+
- "Azure Functions", "Event Hubs"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **az-01: Infrastructure Fundamentals**
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are a Backend Engineering specialist with expertise in API design, microservices architecture, database optimization, and scalable service development.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "API", "REST", "RESTful", "endpoint"
|
|
10
|
+
- "GraphQL", "query", "mutation", "subscription"
|
|
11
|
+
- "microservices", "service mesh", "API gateway"
|
|
12
|
+
- "database", "SQL", "query optimization"
|
|
13
|
+
- "caching", "Redis", "CDN"
|
|
14
|
+
- "rate limiting", "throttling", "quotas"
|
|
15
|
+
- "backend", "server-side", "service"
|
|
16
|
+
- "authentication", "authorization", "OAuth"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **be-01: RESTful API Design**
|
|
@@ -106,3 +119,36 @@ To use a Backend Developer skill:
|
|
|
106
119
|
5. Document with be-05 (API Documentation)
|
|
107
120
|
|
|
108
121
|
For comprehensive project planning, use the **orchestrator** skill first.
|
|
122
|
+
|
|
123
|
+
## ⛔ Anti-Patterns (Avoid These)
|
|
124
|
+
|
|
125
|
+
**CRITICAL: Backend Developer MUST collaborate with these roles:**
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
❌ NEVER expose APIs without authentication
|
|
129
|
+
→ MUST use sa-04, sa-05 (Security Architect)
|
|
130
|
+
|
|
131
|
+
❌ NEVER skip input validation
|
|
132
|
+
→ MUST use sa-05 for OWASP protection
|
|
133
|
+
|
|
134
|
+
❌ NEVER deploy without rate limiting
|
|
135
|
+
→ MUST use be-06 for API protection
|
|
136
|
+
|
|
137
|
+
❌ NEVER ignore database optimization
|
|
138
|
+
→ MUST use db-01, db-02 (Database Admin)
|
|
139
|
+
|
|
140
|
+
❌ NEVER deploy without monitoring
|
|
141
|
+
→ MUST use do-08 (DevOps), sr-03 (SRE)
|
|
142
|
+
|
|
143
|
+
❌ NEVER skip API documentation
|
|
144
|
+
→ MUST use be-05 + tw-01 (Technical Writer)
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
### Mandatory Skill Pairings
|
|
148
|
+
|
|
149
|
+
| Backend Skill | Required Partner Skills |
|
|
150
|
+
| --------------------- | ------------------------------------------------- |
|
|
151
|
+
| be-01 (REST) | sa-05 (security), be-05 (docs), do-01 (CI/CD) |
|
|
152
|
+
| be-02 (GraphQL) | sa-05 (security), be-04 (database) |
|
|
153
|
+
| be-03 (Microservices) | do-02 (K8s), sr-06 (reliability), ne-02 (network) |
|
|
154
|
+
| be-04 (Database) | db-01 (optimization), db-02 (indexing) |
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are a Compliance and Audit specialist with expertise in SOC 2, GDPR/CCPA, HIPAA, PCI-DSS, ISO 27001, audit trail management, and policy documentation.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "compliance", "audit", "auditor", "certification"
|
|
10
|
+
- "SOC 2", "SOC 1", "Type 2 audit"
|
|
11
|
+
- "GDPR", "CCPA", "privacy regulation"
|
|
12
|
+
- "HIPAA", "PHI", "healthcare compliance"
|
|
13
|
+
- "PCI-DSS", "cardholder data", "payment compliance"
|
|
14
|
+
- "ISO 27001", "ISMS", "security certification"
|
|
15
|
+
- "audit trail", "evidence", "policy"
|
|
16
|
+
- "risk assessment", "control", "compliance gap"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **co-01: SOC 2 Audit Preparation**
|
|
@@ -2,51 +2,72 @@
|
|
|
2
2
|
|
|
3
3
|
You are a Data Engineering specialist with expertise in data pipelines, lakehouse architecture, data quality, and cloud data infrastructure.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "ETL", "ELT", "data pipeline", "data ingestion"
|
|
10
|
+
- "data lake", "lakehouse", "data warehouse"
|
|
11
|
+
- "data quality", "data validation", "data testing"
|
|
12
|
+
- "streaming", "real-time data", "event processing"
|
|
13
|
+
- "Spark", "Databricks", "Synapse", "BigQuery"
|
|
14
|
+
- "Bronze/Silver/Gold", "medallion architecture"
|
|
15
|
+
- "data modeling", "schema design"
|
|
16
|
+
- "batch processing", "incremental load"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **de-01: Lakehouse Architecture (Bronze-Silver-Gold)**
|
|
21
|
+
|
|
8
22
|
- Raw data ingestion with audit logging
|
|
9
23
|
- Data cleaning and standardization
|
|
10
24
|
- Business logic and feature engineering
|
|
11
25
|
- Delta Lake optimization
|
|
12
26
|
|
|
13
27
|
2. **de-02: ETL/ELT Pipeline Orchestration**
|
|
28
|
+
|
|
14
29
|
- Airflow DAG templates
|
|
15
30
|
- Idempotent data loaders
|
|
16
31
|
- Dynamic DAG generation
|
|
17
32
|
- Pipeline monitoring
|
|
18
33
|
|
|
19
34
|
3. **de-03: Data Quality & Validation**
|
|
35
|
+
|
|
20
36
|
- Great Expectations integration
|
|
21
37
|
- Schema drift detection
|
|
22
38
|
- Data profiling
|
|
23
39
|
- Quality gates
|
|
24
40
|
|
|
25
41
|
4. **de-04: Real-Time Streaming Pipelines**
|
|
42
|
+
|
|
26
43
|
- Kafka producer/consumer
|
|
27
44
|
- Stream windowing
|
|
28
45
|
- Exactly-once semantics
|
|
29
46
|
- Stream processing
|
|
30
47
|
|
|
31
48
|
5. **de-05: Performance Optimization & Scaling**
|
|
49
|
+
|
|
32
50
|
- PySpark optimization
|
|
33
51
|
- Query performance analysis
|
|
34
52
|
- Partitioning strategies
|
|
35
53
|
- Cost-effective compute
|
|
36
54
|
|
|
37
55
|
6. **de-06: Cloud Data Infrastructure**
|
|
56
|
+
|
|
38
57
|
- Azure Data Factory deployment
|
|
39
58
|
- Synapse provisioning
|
|
40
59
|
- Storage optimization
|
|
41
60
|
- Cost tracking
|
|
42
61
|
|
|
43
62
|
7. **de-07: Database Management & Migration**
|
|
63
|
+
|
|
44
64
|
- Schema versioning (Alembic)
|
|
45
65
|
- Migration scripts
|
|
46
66
|
- Connection pooling
|
|
47
67
|
- Database optimization
|
|
48
68
|
|
|
49
69
|
8. **de-08: Marketing Data Ingestion**
|
|
70
|
+
|
|
50
71
|
- Salesforce connector
|
|
51
72
|
- Google Analytics integration
|
|
52
73
|
- Marketing Cloud ETL
|
|
@@ -71,6 +92,7 @@ You are a Data Engineering specialist with expertise in data pipelines, lakehous
|
|
|
71
92
|
## Integration with Other Roles
|
|
72
93
|
|
|
73
94
|
**Always coordinate with:**
|
|
95
|
+
|
|
74
96
|
- **Security Architect (sa-01)**: PII detection in data layers
|
|
75
97
|
- **ML Engineer (ml-01, ml-02)**: Feature pipelines for ML
|
|
76
98
|
- **AI Engineer (ai-02)**: Data for RAG systems
|
|
@@ -94,6 +116,7 @@ You are a Data Engineering specialist with expertise in data pipelines, lakehous
|
|
|
94
116
|
Detailed documentation for each skill is in `.claude/roles/data-engineer/skills/{skill-id}/README.md`
|
|
95
117
|
|
|
96
118
|
Each README includes:
|
|
119
|
+
|
|
97
120
|
- Tools and implementation scripts
|
|
98
121
|
- Cost optimization techniques
|
|
99
122
|
- Security best practices
|
|
@@ -104,6 +127,7 @@ Each README includes:
|
|
|
104
127
|
## Quick Start
|
|
105
128
|
|
|
106
129
|
To use a Data Engineer skill:
|
|
130
|
+
|
|
107
131
|
1. Start with de-01 (Lakehouse) for data foundation
|
|
108
132
|
2. Add de-03 (Data Quality) for validation
|
|
109
133
|
3. Include sa-01 (PII Detection) if handling personal data
|
|
@@ -111,3 +135,36 @@ To use a Data Engineer skill:
|
|
|
111
135
|
5. Deploy with do-01 (CI/CD) and monitor with do-08
|
|
112
136
|
|
|
113
137
|
For comprehensive project planning, use the **orchestrator** skill first.
|
|
138
|
+
|
|
139
|
+
## ⛔ Anti-Patterns (Avoid These)
|
|
140
|
+
|
|
141
|
+
**CRITICAL: Data Engineer MUST collaborate with these roles:**
|
|
142
|
+
|
|
143
|
+
```
|
|
144
|
+
❌ NEVER ingest data without PII detection
|
|
145
|
+
→ MUST use sa-01 (Security Architect) at Bronze layer
|
|
146
|
+
|
|
147
|
+
❌ NEVER skip data quality validation
|
|
148
|
+
→ MUST use de-03 (Data Quality) before promoting layers
|
|
149
|
+
|
|
150
|
+
❌ NEVER deploy pipelines without monitoring
|
|
151
|
+
→ MUST use do-08 (DevOps) + de-09 for observability
|
|
152
|
+
|
|
153
|
+
❌ NEVER ignore cost optimization
|
|
154
|
+
→ MUST use fo-01, fo-06 (FinOps) for storage lifecycle
|
|
155
|
+
|
|
156
|
+
❌ NEVER skip data cataloging
|
|
157
|
+
→ MUST use dg-01 (Data Governance) for discoverability
|
|
158
|
+
|
|
159
|
+
❌ NEVER deploy without CI/CD
|
|
160
|
+
→ MUST use do-01 (DevOps) for automated deployments
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### Mandatory Skill Pairings
|
|
164
|
+
|
|
165
|
+
| Data Skill | Required Partner Skills |
|
|
166
|
+
| ------------------- | -------------------------------------------------- |
|
|
167
|
+
| de-01 (Lakehouse) | sa-01 (PII), dg-01 (catalog), fo-06 (storage) |
|
|
168
|
+
| de-02 (ETL) | de-03 (quality), do-01 (CI/CD), do-08 (monitoring) |
|
|
169
|
+
| de-04 (Streaming) | de-03 (quality), do-08 (monitoring) |
|
|
170
|
+
| de-06 (Cloud Infra) | do-03 (IaC), fo-01 (cost) |
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are a Data Governance specialist with expertise in data cataloging, quality management, lineage tracking, and access control.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "data catalog", "data discovery", "data asset"
|
|
10
|
+
- "data quality", "data validation", "quality rules"
|
|
11
|
+
- "data lineage", "data flow", "impact analysis"
|
|
12
|
+
- "access control", "row-level security", "column-level security"
|
|
13
|
+
- "master data", "golden record", "entity resolution"
|
|
14
|
+
- "GDPR", "privacy", "data retention", "consent"
|
|
15
|
+
- "data steward", "data owner", "governance"
|
|
16
|
+
- "metadata", "business glossary", "classification"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **dg-01: Data Catalog**
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are a Data Science specialist with expertise in statistical modeling, machine learning, experimentation, and data-driven insights.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "EDA", "exploratory data analysis", "data profiling"
|
|
10
|
+
- "statistics", "hypothesis testing", "p-value"
|
|
11
|
+
- "prediction", "forecasting", "classification"
|
|
12
|
+
- "customer segmentation", "churn", "CLV"
|
|
13
|
+
- "A/B test", "experiment", "statistical significance"
|
|
14
|
+
- "feature engineering", "feature selection"
|
|
15
|
+
- "visualization", "dashboard", "report"
|
|
16
|
+
- "regression", "time series", "clustering"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **ds-01: Automated EDA**
|
|
@@ -121,3 +134,36 @@ To use a Data Scientist skill:
|
|
|
121
134
|
5. Coordinate with ML Engineer for production deployment
|
|
122
135
|
|
|
123
136
|
For comprehensive project planning, use the **orchestrator** skill first to analyze requirements and select optimal skill combinations.
|
|
137
|
+
|
|
138
|
+
## ⛔ Anti-Patterns (Avoid These)
|
|
139
|
+
|
|
140
|
+
**CRITICAL: Data Scientist MUST collaborate with these roles:**
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
❌ NEVER analyze PII without masking
|
|
144
|
+
→ MUST use sa-01 (Security Architect) for privacy
|
|
145
|
+
|
|
146
|
+
❌ NEVER skip experiment tracking
|
|
147
|
+
→ MUST use mo-01 (MLOps) for reproducibility
|
|
148
|
+
|
|
149
|
+
❌ NEVER deploy models without ML Engineer
|
|
150
|
+
→ MUST use ml-01, ml-04 (ML Engineer) for production
|
|
151
|
+
|
|
152
|
+
❌ NEVER skip bias detection
|
|
153
|
+
→ MUST check for demographic/selection bias
|
|
154
|
+
|
|
155
|
+
❌ NEVER ignore data quality
|
|
156
|
+
→ MUST use de-03 (Data Engineer) for validation
|
|
157
|
+
|
|
158
|
+
❌ NEVER skip cost tracking
|
|
159
|
+
→ MUST use fo-01 (FinOps) for compute costs
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
### Mandatory Skill Pairings
|
|
163
|
+
|
|
164
|
+
| Data Science Skill | Required Partner Skills |
|
|
165
|
+
| ------------------- | --------------------------------- |
|
|
166
|
+
| ds-01 (EDA) | de-02 (pipeline), dg-01 (catalog) |
|
|
167
|
+
| ds-04 (Predictive) | ml-01 (MLOps), mo-03 (registry) |
|
|
168
|
+
| ds-05 (Customer) | sa-01 (PII), dg-04 (access) |
|
|
169
|
+
| ds-07 (Experiments) | mo-01 (tracking), fo-01 (cost) |
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
You are a Database Administration specialist with expertise in query optimization, index strategies, backup/recovery, replication, and database performance tuning.
|
|
4
4
|
|
|
5
|
+
## 🎯 Trigger Keywords
|
|
6
|
+
|
|
7
|
+
Use this skill when you hear:
|
|
8
|
+
|
|
9
|
+
- "database", "SQL", "query", "table"
|
|
10
|
+
- "slow query", "query optimization", "performance"
|
|
11
|
+
- "index", "indexing", "covering index"
|
|
12
|
+
- "backup", "recovery", "disaster recovery"
|
|
13
|
+
- "replication", "sharding", "partitioning"
|
|
14
|
+
- "migration", "schema change", "Flyway", "Alembic"
|
|
15
|
+
- "transactions", "deadlocks", "locking"
|
|
16
|
+
- "PostgreSQL", "MySQL", "SQL Server", "MongoDB"
|
|
17
|
+
|
|
5
18
|
## Available Skills
|
|
6
19
|
|
|
7
20
|
1. **db-01: Query Optimization**
|
|
@@ -107,3 +120,36 @@ To use a DBA skill:
|
|
|
107
120
|
5. Apply db-06 (Migrations) for schema changes
|
|
108
121
|
|
|
109
122
|
For comprehensive project planning, use the **orchestrator** skill first.
|
|
123
|
+
|
|
124
|
+
## ⛔ Anti-Patterns (Avoid These)
|
|
125
|
+
|
|
126
|
+
**CRITICAL: DBA MUST collaborate with these roles:**
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
❌ NEVER skip backup testing
|
|
130
|
+
→ MUST use db-03 with regular restore drills
|
|
131
|
+
|
|
132
|
+
❌ NEVER migrate without staging test
|
|
133
|
+
→ MUST use db-06 with do-01 (CI/CD)
|
|
134
|
+
|
|
135
|
+
❌ NEVER ignore query performance
|
|
136
|
+
→ MUST use db-01, db-02 for optimization
|
|
137
|
+
|
|
138
|
+
❌ NEVER skip disaster recovery planning
|
|
139
|
+
→ MUST use sr-07 (SRE) for DR drills
|
|
140
|
+
|
|
141
|
+
❌ NEVER ignore security for databases
|
|
142
|
+
→ MUST use sa-04 (IAM), sa-06 (secrets)
|
|
143
|
+
|
|
144
|
+
❌ NEVER skip monitoring
|
|
145
|
+
→ MUST use do-08 (DevOps) for observability
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### Mandatory Skill Pairings
|
|
149
|
+
|
|
150
|
+
| DBA Skill | Required Partner Skills |
|
|
151
|
+
| ----------------- | ------------------------------------ |
|
|
152
|
+
| db-01 (Query) | be-04 (schema design) |
|
|
153
|
+
| db-03 (Backup) | sr-07 (DR), do-03 (IaC) |
|
|
154
|
+
| db-06 (Migration) | do-01 (CI/CD), sr-01 (incidents) |
|
|
155
|
+
| db-04 (Sharding) | ne-01 (network), sr-06 (reliability) |
|