Awesome-omni-skill developer-experience
Use for developer experience optimization, monorepo management (Turborepo, Nx, Bazel, pnpm workspaces), Git advanced workflows, authentication patterns, error handling, and debugging strategies.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/testing-security/developer-experience" ~/.claude/skills/diegosouzapw-awesome-omni-skill-developer-experience && rm -rf "$T"
manifest:
skills/testing-security/developer-experience/SKILL.mdsource content
Developer Experience
When to use
- Set up or optimize monorepo tooling
- Improve development workflows
- Configure build systems and caching
- Implement authentication patterns
- Design error handling strategies
- Advanced Git workflows
Monorepo tools
- Turborepo: caching, pipelines, remote caching
- Nx: workspace configuration, project boundaries
- Bazel: build optimization, remote execution
- pnpm workspaces
Patterns
- Authentication: JWT, OAuth2, session management, RBAC
- Error handling: Result types, error propagation, graceful degradation
- SQL optimization and EXPLAIN analysis
- Git: rebasing, cherry-picking, bisect, worktrees
Quality
- Code review best practices
- E2E testing with Playwright/Cypress
- Debugging strategies and profiling