Open-source agent skills for software development, operations, and cybersecurity.
General and language-specific coding standards.
| Skill | Version | Description |
|---|---|---|
| general-coding | 1.0.0 | Cross-language development principles. Covers TDD workflows, clean code, test hygiene, code review, Makefile patterns, and configuration strategy. |
| python-coding | 1.0.0 | Python development standards. Covers Poetry dependency management, PEP 8 style, pytest testing patterns, type hints with mypy, and asyncio. |
| pyspark-coding | 1.0.0 | PySpark best practices for manageability, testability, and performance. Covers DataFrame patterns, caching strategies, testing approaches, and deployment configs. |
| fastapi-coding | 1.0.0 | FastAPI development standards. Covers project structure, Pydantic routing/validation, async SQLAlchemy, dependency injection, security, and pytest patterns. |
| rest-api | 1.0.0 | REST API design patterns. Covers URL structure, multi-tenancy, control/data plane separation, request/response formats, HTTP methods, authorization, and testing. |
| typescript-coding | 1.0.0 | TypeScript and Node.js development standards. Covers pnpm, ESM modules, strict tsconfig, Vitest testing, Zod validation, CLI tools, and async patterns. |
| frontend-coding | 1.1.0 | React, Tailwind CSS, and React Testing Library patterns. Covers component design, responsive layout, error handling, and file naming conventions. |
Infrastructure, containers, and deployment tooling.
| Skill | Version | Description |
|---|---|---|
| docker-dev | 1.0.0 | Docker and Docker Compose for local development. Covers dev-focused Dockerfiles, live reload, volume mounting, dependency caching, and multi-service orchestration. |
| kubernetes | 1.0.0 | Kubernetes workflows: manifests, Helm, kubectl, k9s, Kustomize, local dev, EKS operations, observability (OTEL/Grafana LGTM), security, and networking. |
| splunk-skill | 1.0.0 | Splunk and SPL: cheat sheet, common pitfalls and workflows, tstats and acceleration, CIM data models, performance monitoring, security apps (InfoSec/SSE), and metrics. |
| terraform-security-review | 0.1.0 | Terraform/OpenTofu security review across the lifecycle: Trivy/Checkov/KICS static analysis, OPA/Sentinel policy-as-code, secrets/drift detection, OIDC hardening, CI/CD gates. |
SOC analysis, detection engineering, and security data schemas.
| Skill | Version | Description |
|---|---|---|
| cybersecurity-analyst | 0.2.0 | SOC analyst workflows: SIEM alert triage, malware/phishing/brute-force/web-attack investigation, log and network traffic analysis, threat intelligence enrichment. |
| ocsf-detection-finding | 0.1.0 | Parse, validate, and map OCSF Detection Finding events (Class 2004 v1.8.0). Covers attributes, finding_info, MITRE ATT&CK mappings, observables/evidence, and profiles. |
Copy a skill directory into your project's .claude/skills/ directory, or use skilltree to install them.
# Register as a registry, then add by name
skilltree registry add github.com/imarios/open-vibes --name open-vibes
skilltree add general-coding
# Or add directly without registering
skilltree add general-coding --repo github.com/imarios/open-vibes --path skills/general-coding
# Manual installation
cp -r skills/general-coding /path/to/your-project/.claude/skills/Each skill follows the same layout:
skills/<name>/
SKILL.md # Skill definition with metadata and routing table
references/ # Detailed reference documents loaded on demand
*.md
MIT