Agent Skill
2/7/2026

dependency-track-skill

Comprehensive guide for Dependency-Track - Software Composition Analysis (SCA) and SBOM management platform. USE WHEN deploying Dependency-Track, integrating with CI/CD pipelines, configuring vulnerability scanning, managing SBOMs, setting up policy compliance, troubleshooting installation issues, or working with the REST API.

J
julianobarbosa
16GitHub Stars
1Views
npx skills add julianobarbosa/claude-code-skills

SKILL.md

Namedependency-track-skill
DescriptionComprehensive guide for Dependency-Track - Software Composition Analysis (SCA) and SBOM management platform. USE WHEN deploying Dependency-Track, integrating with CI/CD pipelines, configuring vulnerability scanning, managing SBOMs, setting up policy compliance, troubleshooting installation issues, or working with the REST API.

Claude Code Skills

A collection of 55+ custom Claude Code skills for Python development, DevOps, infrastructure automation, and productivity.

Overview

This repository contains modular skills that extend Claude's capabilities with specialized knowledge, workflows, and tools. Each skill is designed following Anthropic's best practices for progressive disclosure and token efficiency.

Skills

Authentication & Secrets (3)

SkillDescription
1password1Password secrets management - CLI operations, service accounts, and Kubernetes integration
azure-ad-ssoAzure AD OAuth2/OIDC SSO integration for Kubernetes applications
keyvault-csi-driverAzure Key Vault + CSI Driver integration for Kubernetes secrets management

Azure & Cloud (6)

SkillDescription
az-aks-agentAzure AKS Agentic CLI - AI-powered troubleshooting and insights for AKS
azure-devopsComprehensive Azure DevOps REST API for work items, pipelines, repos, and more
azure-devops-wikiAzure DevOps Wiki management and automation
using-cloud-cliAWS & GCP CLI usage patterns and best practices
external-urlsHypera infrastructure URLs and endpoints reference
k8s-clustersKubernetes cluster configuration reference

Container & Orchestration (7)

SkillDescription
knativeKnative serverless platform for Kubernetes
argocdArgoCD API and CLI for GitOps automation
gitops-principlesGitOps fundamentals and best practices
opentelemetryOpenTelemetry instrumentation and observability

DNS & Networking (2)

SkillDescription
cloudflare-dnsCloudflare DNS management with Azure integration
external-dnsExternal-DNS configuration across Azure DNS, Route53, Cloudflare, and GCP

Developer Tools (5)

SkillDescription
neovimComprehensive Neovim configuration guide (82+ plugins)
iterm2iTerm2 terminal emulator and tmux multiplexer expertise
shell-promptShell prompt configuration and customization
direnvdirenv for directory-specific environment variables
git-worktreeGit worktrees for parallel development

Git & Version Control (2)

SkillDescription
gitComprehensive Git workflows with 13 workflow definitions
using-git-worktreesGit worktree workflow automation

Infrastructure & DevOps (4)

SkillDescription
managing-infraInfrastructure patterns for Kubernetes, Terraform, Helm, and GitHub Actions
defectdojoDefectDojo security vulnerability management
github-pagesGitHub Pages deployment with 6 workflow templates
mkdocsMkDocs documentation site generation

Monitoring & Observability (7)

SkillDescription
prometheusPrometheus HTTP API queries and PromQL
grafanaGrafana HTTP API for dashboards, alerts, and data sources
lokiGrafana Loki log aggregation and LogQL queries
mimirGrafana Mimir for long-term Prometheus metrics storage
tempoGrafana Tempo distributed tracing
pyroscopeContinuous profiling with Pyroscope
holmesgptAI-powered monitoring insights

Obsidian & Knowledge Management (4)

SkillDescription
obsidianObsidian vault management fundamentals
obsidian-vault-managementAdvanced vault features with dataview queries
obsidian-nvimObsidian + Neovim integration
obsidian-claude-integrationSecond brain patterns and templates

Programming Languages & Frameworks (6)

SkillDescription
writing-pythonIdiomatic Python 3.14+ development patterns
writing-goGo development best practices
writing-typescriptTypeScript & React patterns
uvuv package manager (10-100x faster than pip)
playwrightBrowser automation with Playwright

Utilities & AI (7)

SkillDescription
repomixPack codebases into AI-friendly files
markitdownDocument conversion to markdown
looking-up-docsLibrary documentation lookup via Context7
researching-webWeb research patterns
consulting-designConsult Gemini AI for architecture alternatives
reviewing-codeCode review with Codex AI
zsh-pathZsh PATH management

System Monitoring (1)

SkillDescription
zabbix-apiZabbix monitoring system automation via API and Python

Repository Structure

claude-code-skills/
├── README.md                      # This file
├── LICENSE                        # MIT License
├── .gitignore
├── docs/
│   └── references.md              # Research and reference links
├── scripts/
│   └── install-skills.sh          # Symlink skills to ~/.claude/skills/
├── templates/
│   └── skill-template/            # Template for creating new skills
│       ├── SKILL.md
│       ├── scripts/.gitkeep
│       ├── references/.gitkeep
│       └── assets/.gitkeep
└── skills/                        # 55 skill implementations
    ├── 1password-skill/
    │   ├── SKILL.md               # Main skill definition
    │   ├── references/            # 2 reference docs
    │   └── scripts/               # 3 shell scripts
    ├── argocd-skill/
    │   ├── SKILL.md
    │   ├── references/            # 2 reference docs
    │   └── scripts/               # 1 shell script
    ├── grafana-skill/
    │   ├── SKILL.md
    │   ├── references/            # 7 reference docs
    │   └── scripts/               # 1 Python script
    ├── ... (52 more skills)
    └── zsh-path-skill/
        └── SKILL.md

Skill Structure Patterns

Each skill follows a consistent structure:

DirectoryPurpose
SKILL.mdMain skill definition with YAML frontmatter
references/Reference documentation loaded on-demand
scripts/Executable Python/Bash/Zsh scripts
templates/Workflow/configuration templates
samples/YAML configuration examples
workflows/Workflow definitions
assets/Images, fonts, and other resources

Installation

Claude Code (Project-level)

# Clone to your project's .claude/skills directory
git clone https://github.com/YOUR_USERNAME/claude-code-skills.git .claude/skills

Claude Code (User-level)

# Clone to your personal skills directory
git clone https://github.com/YOUR_USERNAME/claude-code-skills.git ~/.claude/skills

Using the Install Script

# Run the install script to symlink individual skills
./scripts/install-skills.sh

Claude.ai Desktop

Upload individual .skill packages via Settings > Skills.

Skill Development

Creating a New Skill

  1. Copy the template:

    cp -r templates/skill-template skills/your-skill-name
    
  2. Edit SKILL.md with:

    • YAML frontmatter (name, description)
    • Markdown instructions
  3. Add supporting resources:

    • scripts/ - Executable Python/Bash scripts
    • references/ - Documentation loaded on-demand
    • assets/ - Templates, images, fonts

Best Practices

  • Be concise: Claude is smart; only add what it doesn't know
  • Progressive disclosure: Keep SKILL.md under 500 lines
  • Clear triggers: Description should explain WHEN to use the skill
  • Test scripts: Verify all scripts work before committing

Tech Stack Preferences

This repository's skills are optimized for:

  • Package Manager: uv (10-100x faster than pip)
  • Web Framework: Flask (lightweight WSGI)
  • Infrastructure: Azure AKS, Kubernetes
  • Code Quality: ruff, mypy, pytest
  • GitOps: ArgoCD, Kargo, External-DNS
  • Observability: Prometheus, Grafana, Loki, Tempo

Statistics

MetricCount
Total Skills55
Reference Docs200+
Python Scripts~25
Shell Scripts~20

References

See docs/references.md for curated links to:

  • Official Claude Code documentation
  • Skill authoring best practices
  • Python project templates
  • Community skills and resources

License

MIT License - See LICENSE for details.

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b skill/new-skill-name)
  3. Follow the skill template structure
  4. Test your skill thoroughly
  5. Submit a Pull Request

Built for use with Claude Code by Anthropic

Skills Info
Original Name:dependency-track-skillAuthor:julianobarbosa