tech-hub-skills
v1.5.1
Published
Collection of tech skills for Claude Code
Downloads
157
Readme
Tech Hub Skills
110+ production-ready AI agent skills for Claude Code and GitHub Copilot. Enterprise-grade with security, governance, and compliance built-in.
Quick Install
For Claude Code
# npm/npx (Recommended)
npx tech-hub-skills install
# or Python
pip install tech-hub-skills && tech-hub-skills installFor GitHub Copilot (VSCode)
# npm/npx
npx tech-hub-skills install --copilot
# or Python
pip install tech-hub-skills && tech-hub-skills install --copilotThis creates .github/copilot-instructions.md with all expert skills.
See GITHUB_COPILOT.md for usage guide.
Global Install (Claude Code only)
# Install globally for all projects
npx tech-hub-skills install --globalManual Installation
# Clone and copy .claude folder to your project
git clone https://github.com/6ogo/Tech-Skills.git
cp -r tech-hub-skills/.claude your-project/What's Included
- 26 Role Skills: AI Engineer, Data Engineer, Security Architect, DevOps, and more
- 180+ Detailed Implementations: Step-by-step guides for each skill
- Enterprise Mode: Built-in security, governance, and compliance
- Cross-Platform: Works on Windows, macOS, Linux
Available Roles
| Role | Skills | Focus | | ---------------------- | ------ | ------------------------------------------- | | AI Engineer | 8 | LLMs, RAG, Agents, Guardrails, Embeddings | | Data Engineer | 9 | Lakehouse, ETL/ELT, Streaming, Quality | | ML Engineer | 9 | MLOps, Training, Serving, Monitoring | | Data Scientist | 8 | EDA, Modeling, Analytics, Experimentation | | Frontend Developer | 7 | React/Vue/Angular, TypeScript, A11y | | Backend Developer | 7 | REST, GraphQL, Microservices, Caching | | Security Architect | 7 | PII, Threat Modeling, IAM, Secrets | | System Design | 8 | Architecture, Scalability, HA/DR, APIs | | Network Engineer | 7 | Topology, VPN/VPC, Load Balancers, CDN | | Platform Engineer | 6 | IDP, Self-Service, SLOs | | SRE | 7 | Incident Response, Chaos Engineering, SLOs | | Database Admin | 7 | Query Optimization, Replication, Migrations | | Data Governance | 6 | Catalog, Lineage, Quality, Compliance | | DevOps | 9 | CI/CD, Containers, IaC, GitOps | | Docker | 5 | Dockerfile, Security, Optimization | | MLOps | 9 | Experiments, Registry, Deployment | | FinOps | 8 | Cost Visibility, Optimization | | Azure | 12 | All Azure services | | AWS | 12 | EC2, Lambda, S3, RDS, VPC, EKS | | GCP | 12 | Compute, BigQuery, GKE, Pub/Sub | | Code Review | 5 | PR Automation, Quality Gates | | Compliance Officer | 7 | SOC 2, GDPR, HIPAA, PCI-DSS | | QA Engineer | 7 | Test Strategy, Automation, Performance | | Technical Writer | 6 | API Docs, ADRs, Runbooks | | Product Designer | 6 | Requirements, Research, UX |
See .claude/README.md for detailed role documentation.
Usage
Claude Code
Use @ mentions to invoke specific expert roles:
# Start with the orchestrator
@orchestrator "Build a customer churn prediction model"
# Or use specific roles
@ai-engineer "Create a RAG pipeline"
@security-architect "Review this code for PII"
@data-engineer "Design a lakehouse architecture"GitHub Copilot
Copilot automatically applies expert knowledge. Reference roles in comments:
# Using AI Engineer approach for RAG pipeline
def build_rag():
# Copilot suggests best practices
# Apply Security Architect principles
def process_data(user_input):
# Copilot adds input validation, PII scanningSee GITHUB_COPILOT.md for complete guide.
Updating
Method 1 (Clone/ZIP)
# Pull latest changes
cd path/to/tech-hub-skills
git pull
# Copy updated files
cp -r .claude your-project/After installation, use skills with @ mentions:
# Start with the orchestrator (routes to all skills)
@orchestrator "Build a customer churn prediction model"
# Or invoke specific roles
@ai-engineer "Create a RAG pipeline"
@security-architect "Review this code for PII"
@data-engineer "Design a lakehouse architecture"
# Enterprise mode (mandatory security + governance)
@project-starter --enterprise "Build a customer data platform"Examples
AI/ML Project
@orchestrator "Build a customer churn prediction model with GDPR compliance"RAG Application
@ai-engineer "Create a RAG pipeline for internal docs"Security Review
@security-architect "Audit this codebase for security vulnerabilities"Enterprise Platform
@project-starter --enterprise "Build a customer data platform"Documentation
- All Roles: See .claude/README.md for complete role documentation
- Publishing: See PUBLISHING.md for maintainer instructions
Contributing
- Fork the repository
- Add skills to
.claude/roles/{role}/skills/{skill-id}/ - Update
.claude/skills/{role}.md - Submit PR
License
MIT
