技能 devops-quality
🔧

devops-quality

安全 🌐 網路存取📁 檔案系統存取⚙️ 外部命令

Apply DevOps code quality standards

This skill helps teams establish consistent code quality standards. It provides guidance on linting rules, version control workflows, and CI/CD practices to improve code reliability and maintainability.

支援: Claude Codex Code(CC)
⚠️ 68
1

下載技能 ZIP

2

在 Claude 中上傳

前往 設定 → 功能 → 技能 → 上傳技能

3

開啟並開始使用

測試它

正在使用「devops-quality」。 How do I set up GitHub Actions for CI?

預期結果:

  • Create .github/workflows/ci.yml configuration file
  • Trigger workflow on push to main and pull requests
  • Run npm install, npm run lint, and npm run build steps
  • Use matrix strategy for testing across Node versions
  • Store test results and build artifacts for debugging

正在使用「devops-quality」。 What are semantic commits?

預期結果:

  • Format: type(scope): description
  • Types: feat for new features, fix for bug fixes
  • Other types: docs, style, refactor, test, chore
  • Example: feat(auth): add user login validation

正在使用「devops-quality」。 How do I avoid committing secrets?

預期結果:

  • Add .env files to .gitignore immediately
  • Never commit API keys, tokens, or passwords
  • Use environment variables in production (Vercel, etc.)
  • Use git hooks to scan for secrets before commit

安全審計

安全
v5 • 1/16/2026

This is a pure documentation skill containing only markdown guidance on DevOps best practices. All 28 static findings are FALSE POSITIVES triggered by documentation references that the pattern matcher misclassified. The skill contains no executable code, scripts, network calls, or file system access beyond reading its own file. The skill-report.json explicitly lists zero risk factors and the audit confirms it is safe to publish.

2
已掃描檔案
204
分析行數
3
發現項
5
審計總數
審計者: claude 查看審計歷史 →

品質評分

38
架構
100
可維護性
85
內容
20
社群
100
安全
83
規範符合性

你能建構什麼

Establish code standards

Set up consistent linting rules and code quality checks across your development team.

Design CI/CD pipelines

Plan GitHub Actions workflows that run lint and build checks on every pull request.

Learn best practices

Understand proper version control workflow and commit message conventions.

試試這些提示

Setup linting
How do I configure ESLint with strict type checking for my TypeScript project?
Semantic commits
What is the semantic commit message format? Give me examples for features, fixes, and documentation changes.
CI pipeline
How do I set up GitHub Actions to run npm run lint and npm run build on every pull request?
Secrets handling
What are the best practices for managing secrets locally and in production environments? How do I avoid committing secrets?

最佳實務

  • Run linting before every commit to catch issues early in development
  • Use semantic commit messages for clear changelog generation and team coordination
  • Never commit .env files or secrets to version control systems

避免

  • Skipping lint checks to save time during development phases
  • Committing sensitive data like API keys or passwords to the repository
  • Merging code without running build and test steps in CI pipeline

常見問題

Which linting tools are supported?
This skill covers ESLint configuration for JavaScript and TypeScript projects with strict type checking enabled.
What commit message format should I use?
Use semantic commits with format: type(scope): description. Types include feat, fix, docs, style, refactor, test, and chore.
How do I integrate with CI/CD?
Create GitHub Actions workflows that run npm install, npm run lint, and npm run build on every pull request to main branch.
Is my data safe when using this skill?
Yes. This skill only reads its own documentation and provides guidance. It does not access files, execute code, or transmit data externally.
Why is my build failing after enabling strict linting?
Strict linting enforces type safety. Fix type errors by adding proper TypeScript types, using noImplicitAny, and resolving all lint warnings.
How does this compare to other DevOps skills?
This skill focuses on code quality and CI/CD fundamentals. It complements deployment skills by establishing quality gates before code reaches production.

開發者詳情

檔案結構

📄 SKILL.md