Marketplace devops-quality
Code quality standards, linting rules, and CI/CD principles.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/abdulsamad94/devops-quality" ~/.claude/skills/aiskillstore-marketplace-devops-quality && rm -rf "$T"
manifest:
skills/abdulsamad94/devops-quality/SKILL.mdsource content
DevOps & Code Quality
Linting & Formatting
- Tool: ESLint (
).npm run lint - Config:
/eslint.config.mjs
.next.config.ts - Rule: strict type checking is enabled in
.tsconfig.json
Version Control
- Branching: Feature branch workflow (main <- feature/xyz).
- Commit Messages: Semantic commits preferred (e.g.,
,feat: add chatbot
).fix: header overflow
Continuous Integration (CI)
(Future Implementation)
- GitHub Actions: Recommended for running
andnpm run lint
on every PR.npm run build - Testing:
- Unit: Jest (for utility logic).
- E2E: Playwright (for auth flows).
Secrets Management
- Local:
file (never committed)..env - Production: Vercel Environment Variables.