accessibility-patterns
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
Problem-solving strategies for convex optimization in optimization
$ npx -y skills add vibeeval/vibecosystem --skill convex-optimization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/convex-optimizationContext preview
The summary Claude sees to decide when to auto-load this skill.
Problem-solving strategies for convex optimization in optimization
name: convex-optimization description: "Problem-solving strategies for convex optimization in optimization" allowed-tools: [Bash, Read]
Use this skill when working on convex-optimization problems in optimization.
1. **Verify Convexity**
2. **Problem Classification** | Type | Solver | |------|--------| | Linear Programming | `scipy.optimize.linprog` | | Quadratic Programming | `scipy.optimize.minimize(method='SLSQP')` | | General Convex | Interior point methods | | Semidefinite | CVXPY with SDP solver |
3. **Standard Form**
4. **KKT Conditions (Necessary & Sufficient)**
5. **Solve and Verify**
uv run python -c "from scipy.optimize import linprog; res = linprog([-1, -2], A_ub=[[1, 1], [2, 1]], b_ub=[4, 5]); print('Optimal:', -res.fun, 'at x=', res.x)"uv run python -c "from scipy.optimize import minimize; res = minimize(lambda x: (x[0]-1)**2 + (x[1]-2)**2, [0, 0]); print('Minimum at', res.x)"uv run python -m runtime.harness scripts/z3_solve.py prove "kkt_conditions"
*From indexed textbooks:*
See `.claude/skills/math-mode/SKILL.md` for full tool documentation.
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
axe-core integration, WCAG 2.2 AA checklist, keyboard navigation testing, screen reader testing, and ARIA pattern validation.
Steam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.
Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes,…
Agent ve skill dosyalarinin yapisal dogrulamasi. Frontmatter kontrol, naming convention, zorunlu bolum kontrolu, tutarlilik denetimi. Yeni agent/skill…