{"id":50665575,"url":"https://github.com/svssdeva/agentic-skills","last_synced_at":"2026-06-08T06:04:19.018Z","repository":{"id":353801223,"uuid":"1215806941","full_name":"svssdeva/agentic-skills","owner":"svssdeva","description":"Skills","archived":false,"fork":false,"pushed_at":"2026-05-19T07:14:31.000Z","size":544,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-23T15:35:30.757Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/svssdeva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":"audit-website/SKILL.md","citation":null,"codeowners":null,"security":"security-and-hardening/SKILL.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-20T09:18:29.000Z","updated_at":"2026-05-19T07:14:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/svssdeva/agentic-skills","commit_stats":null,"previous_names":["svssdeva/agentic-skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/svssdeva/agentic-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svssdeva%2Fagentic-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svssdeva%2Fagentic-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svssdeva%2Fagentic-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svssdeva%2Fagentic-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/svssdeva","download_url":"https://codeload.github.com/svssdeva/agentic-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svssdeva%2Fagentic-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34050237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-08T06:04:05.714Z","updated_at":"2026-06-08T06:04:19.012Z","avatar_url":"https://github.com/svssdeva.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# agentic-skills\n\n\u003e A curated library of **160 skills** for Claude Code — drop-in behavioral modules that make your AI agent smarter, faster, and domain-aware.\n\nSkills are plain markdown files (`SKILL.md`) that Claude reads before acting. Each one encodes expert knowledge, workflows, and guardrails for a specific domain. No code to install — just point Claude at the folder.\n\n---\n\n## What's a Skill?\n\nA skill is a `SKILL.md` file that tells Claude *how* to behave in a given context. When you invoke a skill, Claude loads it and follows its instructions exactly — like hiring a specialist for the task at hand.\n\n```\n/skill angular/angular-component    → expert Angular component authoring\n/skill rust/rust-engineer           → idiomatic Rust with ownership \u0026 error handling\n/skill seo/seo-audit                → structured technical SEO review\n/skill engineering/test-driven-development → red-green-refactor discipline\n```\n\nSkills cover everything from language idioms to development methodologies to content strategy.\n\n---\n\n## Using Skills in Claude Code\n\n**Install** — clone this repo anywhere and point Claude at it in your project's `CLAUDE.md`:\n\n```bash\ngit clone https://github.com/svssdeva/agentic-skills ~/.claude/skills\n```\n\n**Invoke** — type a slash command in Claude Code:\n\n```\n/skill \u003cskill-name\u003e\n```\n\nOr reference skills directly in your prompt:\n\n```\nUsing the rust-engineer skill, refactor this module to use proper error propagation.\n```\n\n**Stack skills** — combine skills for compound expertise:\n\n```\nUsing engineering/spec-driven-development + engineering/test-driven-development, implement this feature.\n```\n\n---\n\n## Skill Library\n\n### Angular `9 skills`\n\n| Skill | What it does |\n|---|---|\n| [`angular-component`](angular/angular-component/SKILL.md) | Idiomatic component authoring with smart/dumb separation |\n| [`angular-developer`](angular/angular-developer/SKILL.md) | Full Angular developer persona — architecture to deployment |\n| [`angular-di`](angular/angular-di/SKILL.md) | Dependency injection patterns, tokens, providers |\n| [`angular-directives`](angular/angular-directives/SKILL.md) | Structural and attribute directive authoring |\n| [`angular-forms`](angular/angular-forms/SKILL.md) | Reactive forms, validation, form arrays |\n| [`angular-http`](angular/angular-http/SKILL.md) | HttpClient, interceptors, error handling |\n| [`angular-signals`](angular/angular-signals/SKILL.md) | Signals, computed, effects — Angular reactivity model |\n| [`angular-testing`](angular/angular-testing/SKILL.md) | Unit and integration testing with TestBed |\n| [`angular-tooling`](angular/angular-tooling/SKILL.md) | CLI, build config, workspace setup |\n\n### Astro `5 skills`\n\n| Skill | What it does |\n|---|---|\n| [`astro`](astro/astro/SKILL.md) | Core Astro patterns and component model |\n| [`astro-architecture`](astro/astro-architecture/SKILL.md) | Island architecture, routing, content collections |\n| [`astro-expert`](astro/astro-expert/SKILL.md) | Advanced Astro — SSR, adapters, integrations |\n| [`astro-seo`](astro/astro-seo/SKILL.md) | SEO-first Astro builds with structured data |\n| [`perf-astro`](astro/perf-astro/SKILL.md) | Core Web Vitals optimization for Astro sites |\n\n### Bun `3 skills`\n\n| Skill | What it does |\n|---|---|\n| [`bun`](bun/bun/SKILL.md) | Bun fundamentals — APIs, built-ins, gotchas |\n| [`bun-development`](bun/bun-development/SKILL.md) | Bun-first development workflows and patterns |\n| [`bun-runtime`](bun/bun-runtime/SKILL.md) | Runtime internals, FFI, native modules |\n\n### Rust `6 skills`\n\n| Skill | What it does |\n|---|---|\n| [`rust-engineer`](rust/rust-engineer/SKILL.md) | Idiomatic Rust — ownership, lifetimes, traits |\n| [`rust-best-practices`](rust/rust-best-practices/SKILL.md) | Clippy-clean code, error handling, API design |\n| [`rust-async-patterns`](rust/rust-async-patterns/SKILL.md) | Tokio, async/await, channels, cancellation |\n| [`rust-testing`](rust/rust-testing/SKILL.md) | Unit tests, integration tests, property testing |\n| [`m15-anti-pattern`](rust/m15-anti-pattern/SKILL.md) | Detect and fix the M15 anti-pattern |\n| [`tauri-v2`](rust/tauri-v2/SKILL.md) | Cross-platform desktop/mobile apps — tauri.conf.json, Rust commands, IPC, capabilities |\n\n### TypeScript `2 skills`\n\n| Skill | What it does |\n|---|---|\n| [`typescript-expert`](typescript/typescript-expert/SKILL.md) | Full TypeScript expertise — types, config, tooling |\n| [`typescript-advanced-types`](typescript/typescript-advanced-types/SKILL.md) | Conditional types, mapped types, template literals |\n\n### Tailwind CSS `3 skills`\n\n| Skill | What it does |\n|---|---|\n| [`tailwind-css-patterns`](tailwind/tailwind-css-patterns/SKILL.md) | Component patterns and design token usage |\n| [`tailwind-design-system`](tailwind/tailwind-design-system/SKILL.md) | Design system authoring with Tailwind |\n| [`tailwindcss-advanced-layouts`](tailwind/tailwindcss-advanced-layouts/SKILL.md) | Grid, flex, and responsive layout mastery |\n\n### Mobile \u0026 Cross-Platform `6 skills`\n\n| Skill | What it does |\n|---|---|\n| [`ionic`](mobile/ionic/SKILL.md) | Ionic components, navigation, native APIs |\n| [`ionic-design`](mobile/ionic-design/SKILL.md) | Ionic design system and theming |\n| [`capacitor-best-practices`](mobile/capacitor-best-practices/SKILL.md) | Capacitor plugins, native bridging, deployment |\n| [`expo-tailwind-setup`](mobile/expo-tailwind-setup/SKILL.md) | Expo + NativeWind (Tailwind) setup and patterns |\n| [`sleek-design-mobile-apps`](mobile/sleek-design-mobile-apps/SKILL.md) | AI-powered mobile app design via Sleek API |\n| [`vercel-react-native-skills`](mobile/vercel-react-native-skills/SKILL.md) | React Native and Expo best practices — lists, animations, navigation |\n\n### Cloud \u0026 DevOps `6 skills`\n\n| Skill | What it does |\n|---|---|\n| [`aws-solution-architect`](cloud/aws-solution-architect/SKILL.md) | AWS architecture — well-architected, cost-aware |\n| [`aws-diagrams`](cloud/aws-diagrams/SKILL.md) | Infrastructure diagrams as code |\n| [`ci-cd-and-automation`](cloud/ci-cd-and-automation/SKILL.md) | Pipelines, GitHub Actions, release automation |\n| [`vercel-react-best-practices`](cloud/vercel-react-best-practices/SKILL.md) | React on Vercel — SSR, caching, edge functions |\n| [`vercel-composition-patterns`](cloud/vercel-composition-patterns/SKILL.md) | Vercel composability — monorepos, turborepo |\n| [`secure-linux-web-hosting`](cloud/secure-linux-web-hosting/SKILL.md) | Harden a cloud Linux server — SSH, firewall, Nginx, HTTPS |\n\n### Docker \u0026 Containers `3 skills`\n\n| Skill | What it does |\n|---|---|\n| [`docker-expert`](docker/docker-expert/SKILL.md) | Container optimization, security hardening, multi-stage builds, production deployment |\n| [`docker-patterns`](docker/docker-patterns/SKILL.md) | Docker Compose, local-dev orchestration, networking, volumes, container security |\n| [`multi-stage-dockerfile`](docker/multi-stage-dockerfile/SKILL.md) | Optimized, secure multi-stage Dockerfiles for any language or framework |\n\n### AI \u0026 RAG `7 skills`\n\n| Skill | What it does |\n|---|---|\n| [`rag-architect`](ai/rag-architect/SKILL.md) | Production RAG design — chunking, embeddings, hybrid search, reranking, evaluation |\n| [`rag-implementation`](ai/rag-implementation/SKILL.md) | Build RAG systems — vector DBs, semantic search, knowledge-grounded LLM apps |\n| [`langchain-rag`](ai/langchain-rag/SKILL.md) | LangChain RAG — loaders, splitters, embeddings, Chroma/FAISS/Pinecone |\n| [`vector-index-tuning`](ai/vector-index-tuning/SKILL.md) | Tune vector indexes — HNSW params, quantization, recall/latency/memory |\n| [`langchain-architecture`](ai/langchain-architecture/SKILL.md) | LLM apps with LangChain 1.x + LangGraph — agents, memory, tool integration |\n| [`langgraph-fundamentals`](ai/langgraph-fundamentals/SKILL.md) | LangGraph core — StateGraph, nodes, edges, Command, Send, streaming |\n| [`langgraph-persistence`](ai/langgraph-persistence/SKILL.md) | LangGraph state persistence — checkpointers, thread_id, time travel, Store |\n\n### Database `2 skills`\n\n| Skill | What it does |\n|---|---|\n| [`neon-postgres`](database/neon-postgres/SKILL.md) | Neon Serverless Postgres — branching, autoscaling, pooling, SDKs, CLI/MCP |\n| [`postgresql-optimization`](database/postgresql-optimization/SKILL.md) | PostgreSQL-specific features — JSONB, arrays, custom types, full-text, tuning |\n\n### SEO \u0026 Content `23 skills`\n\n| Skill | What it does |\n|---|---|\n| [`ai-seo`](seo/ai-seo/SKILL.md) | SEO for LLM-driven discovery — AIO, GEO, AEO |\n| [`seo-audit`](seo/seo-audit/SKILL.md) | Technical SEO audit with actionable findings |\n| [`seo-geo`](seo/seo-geo/SKILL.md) | Geo-targeted SEO, hreflang, local search |\n| [`programmatic-seo`](seo/programmatic-seo/SKILL.md) | Programmatic page generation for SEO at scale |\n| [`content-strategy`](seo/content-strategy/SKILL.md) | Content planning, ICP alignment, funnel mapping |\n| [`social-content`](seo/social-content/SKILL.md) | Social-first content with engagement hooks |\n| [`product-marketing-context`](seo/product-marketing-context/SKILL.md) | Product marketing framing and messaging |\n| [`seo-content-writer`](seo/seo-content-writer/SKILL.md) | Write SEO blog posts, articles, and landing pages with keyword integration and snippet targeting |\n| [`seo-aeo-best-practices`](seo/seo-aeo-best-practices/SKILL.md) | SEO + AEO best practices — metadata, Open Graph, JSON-LD, EEAT, AI-overview readiness |\n| [`optimize-for-ai`](seo/optimize-for-ai/SKILL.md) | Optimize content to get cited by ChatGPT, Perplexity, Claude, Gemini, and Google AI Overviews |\n| [`web-quality-seo`](seo/web-quality-seo/SKILL.md) | Technical SEO and on-page optimization based on Lighthouse audits and Google Search guidelines |\n| [`copywriting`](seo/copywriting/SKILL.md) | Conversion copywriting — headlines, value props, CTAs, and messaging frameworks |\n| [`marketing-psychology`](seo/marketing-psychology/SKILL.md) | Behavioral science and mental models for persuasion and decision-making |\n| [`marketing-ideas`](seo/marketing-ideas/SKILL.md) | Generate marketing campaign and growth-channel ideas |\n| [`page-cro`](seo/page-cro/SKILL.md) | Conversion-rate optimization for landing, pricing, and signup pages |\n| [`analytics-tracking`](seo/analytics-tracking/SKILL.md) | Set up and audit analytics and measurement (GA4, GTM, events) |\n| [`cold-email`](seo/cold-email/SKILL.md) | Cold email outreach — sequences, deliverability, and follow-ups |\n| [`site-architecture`](seo/site-architecture/SKILL.md) | Plan SEO-friendly site structure, URLs, and internal linking |\n| [`competitor-alternatives`](seo/competitor-alternatives/SKILL.md) | Build competitor comparison and alternative pages for SEO and sales |\n| [`churn-prevention`](seo/churn-prevention/SKILL.md) | Reduce churn — cancel flows, dunning, and retention playbooks |\n| [`cro`](seo/cro/SKILL.md) | Conversion-rate optimization for marketing pages and lead-capture forms |\n| [`aso`](seo/aso/SKILL.md) | App Store / Google Play listing optimization (ASO) — keywords, conversion, ranking |\n| [`lead-magnets`](seo/lead-magnets/SKILL.md) | Plan and optimize lead magnets for email capture and lead generation |\n\n### NestJS `3 skills`\n\n| Skill | What it does |\n|---|---|\n| [`nestjs-best-practices`](nestjs/nestjs-best-practices/SKILL.md) | 40 NestJS rules across architecture, DI, security, performance, testing, and DevOps |\n| [`nestjs-expert`](nestjs/nestjs-expert/SKILL.md) | Full module/controller/service/DTO/test workflow with enforced MUST/MUST NOT constraints |\n| [`nestjs-patterns`](nestjs/nestjs-patterns/SKILL.md) | Feature module structure, thin controllers, global ValidationPipe, guard and interceptor patterns |\n\n### Python `7 skills`\n\n| Skill | What it does |\n|---|---|\n| [`python-design-patterns`](python/python-design-patterns/SKILL.md) | KISS, SRP, composition over inheritance, rule of three, and dependency injection for Python |\n| [`python-testing-patterns`](python/python-testing-patterns/SKILL.md) | pytest fixtures, parametrize, mocking, freezegun, markers, and coverage reporting |\n| [`python-performance-optimization`](python/python-performance-optimization/SKILL.md) | cProfile, line_profiler, memory_profiler, py-spy, generators, and async profiling |\n| [`dataverse-python-quickstart`](python/dataverse-python-quickstart/SKILL.md) | Microsoft Dataverse SDK setup — CRUD, bulk ops, paging, and file upload snippets |\n| [`dataverse-python-advanced-patterns`](python/dataverse-python-advanced-patterns/SKILL.md) | Dataverse production patterns — retry logic, batch ops, OData queries, chunked file upload |\n| [`dataverse-python-usecase-builder`](python/dataverse-python-usecase-builder/SKILL.md) | Architecture framework for Dataverse use cases — 6 categories from CRM to compliance |\n| [`async-python-patterns`](python/async-python-patterns/SKILL.md) | Python asyncio, concurrency, and async/await patterns for I/O-bound apps |\n\n### Engineering Practices `31 skills`\n\n| Skill | What it does |\n|---|---|\n| [`test-driven-development`](engineering/test-driven-development/SKILL.md) | Red-green-refactor discipline, enforced |\n| [`tdd`](engineering/tdd/SKILL.md) | TDD with vertical tracer-bullet slicing — behavior-first, no horizontal slicing |\n| [`spec-driven-development`](engineering/spec-driven-development/SKILL.md) | Spec-first — design the contract before the code |\n| [`source-driven-development`](engineering/source-driven-development/SKILL.md) | Let the source of truth drive implementation |\n| [`incremental-implementation`](engineering/incremental-implementation/SKILL.md) | Ship in small, safe, reviewable increments |\n| [`planning-and-task-breakdown`](engineering/planning-and-task-breakdown/SKILL.md) | Task decomposition and sequencing |\n| [`brainstorming`](engineering/brainstorming/SKILL.md) | Collaborative design → spec → implementation handoff with hard gate before coding |\n| [`writing-plans`](engineering/writing-plans/SKILL.md) | Comprehensive implementation plans with bite-sized TDD tasks |\n| [`grill-me`](engineering/grill-me/SKILL.md) | Relentless one-question-at-a-time interview to stress-test a plan |\n| [`grill-with-docs`](engineering/grill-with-docs/SKILL.md) | Grilling session that sharpens terminology and updates CONTEXT.md / ADRs inline |\n| [`improve-codebase-architecture`](engineering/improve-codebase-architecture/SKILL.md) | Surface shallow modules and propose deepening opportunities |\n| [`requesting-code-review`](engineering/requesting-code-review/SKILL.md) | Dispatch a focused subagent code reviewer with precise context |\n| [`idea-refine`](engineering/idea-refine/SKILL.md) | Sharpen vague ideas into actionable specs |\n| [`code-review-and-quality`](engineering/code-review-and-quality/SKILL.md) | Thorough code review with prioritized feedback |\n| [`code-simplification`](engineering/code-simplification/SKILL.md) | Remove accidental complexity ruthlessly |\n| [`context-engineering`](engineering/context-engineering/SKILL.md) | Prompt and context design for AI-native systems |\n| [`debugging-and-error-recovery`](engineering/debugging-and-error-recovery/SKILL.md) | Systematic debugging — hypothesize, isolate, verify |\n| [`api-and-interface-design`](engineering/api-and-interface-design/SKILL.md) | Stable, hard-to-misuse API design (Hyrum's Law-aware) |\n| [`documentation-and-adrs`](engineering/documentation-and-adrs/SKILL.md) | Docs and Architecture Decision Records |\n| [`deprecation-and-migration`](engineering/deprecation-and-migration/SKILL.md) | Safe deprecation paths and migration strategies |\n| [`security-and-hardening`](engineering/security-and-hardening/SKILL.md) | Security review, threat modeling, hardening |\n| [`git-workflow-and-versioning`](engineering/git-workflow-and-versioning/SKILL.md) | Branching, commits, tagging, release flow |\n| [`shipping-and-launch`](engineering/shipping-and-launch/SKILL.md) | Launch checklist, rollout strategy, monitoring |\n| [`system-design`](engineering/system-design/SKILL.md) | Structured system design — requirements to trade-off analysis |\n| [`systematic-debugging`](engineering/systematic-debugging/SKILL.md) | Four-phase debugging with enforced root cause investigation |\n| [`architecture-patterns`](engineering/architecture-patterns/SKILL.md) | Clean, Hexagonal, and Domain-Driven Design backend architecture patterns |\n| [`karpathy-guidelines`](engineering/karpathy-guidelines/SKILL.md) | Behavioral guidelines to reduce common LLM coding mistakes — surgical changes |\n| [`documentation-writer`](engineering/documentation-writer/SKILL.md) | Diátaxis-framework technical documentation authoring |\n| [`create-readme`](engineering/create-readme/SKILL.md) | Generate a project README.md |\n| [`prd`](engineering/prd/SKILL.md) | Generate Product Requirements Documents — user stories, specs, risk analysis |\n| [`email-and-password-best-practices`](engineering/email-and-password-best-practices/SKILL.md) | Better Auth email/password — verification, reset flows, policies, hashing |\n\n### Go `3 skills`\n\n| Skill | What it does |\n|---|---|\n| [`golang-pro`](golang/golang-pro/SKILL.md) | Concurrent Go dev with goroutines, microservices, pprof optimization |\n| [`golang-patterns`](golang/golang-patterns/SKILL.md) | Idiomatic Go patterns, error handling, concurrency, interfaces |\n| [`golang-testing`](golang/golang-testing/SKILL.md) | Table-driven tests, benchmarks, fuzzing, TDD workflows |\n\n### React `6 skills`\n\n| Skill | What it does |\n|---|---|\n| [`vercel-react-best-practices`](react/vercel-react-best-practices/SKILL.md) | 70 React/Next.js performance rules from Vercel Engineering |\n| [`vercel-react-view-transitions`](react/vercel-react-view-transitions/SKILL.md) | Native View Transition API animations — shared elements, route changes, Suspense reveals |\n| [`react-components`](react/react-components/SKILL.md) | Convert Stitch designs into modular, type-safe React components |\n| [`vercel-composition-patterns`](react/vercel-composition-patterns/SKILL.md) | React composition patterns that scale — compound components, context providers, React 19 APIs |\n| [`react-doctor`](react/react-doctor/SKILL.md) | Scan and triage React diagnostics — lint, a11y, bundle size, architecture |\n| [`react-modernization`](react/react-modernization/SKILL.md) | Upgrade React — class-to-hooks migration, concurrent features, latest versions |\n\n### Frontend \u0026 Design `16 skills`\n\n| Skill | What it does |\n|---|---|\n| [`frontend-design`](frontend/frontend-design/SKILL.md) | Create distinctive, production-grade UIs that avoid generic AI aesthetics |\n| [`frontend-ui-engineering`](frontend/frontend-ui-engineering/SKILL.md) | Production-grade UI engineering patterns |\n| [`web-design-guidelines`](frontend/web-design-guidelines/SKILL.md) | Visual design, typography, spacing, accessibility |\n| [`performance-optimization`](frontend/performance-optimization/SKILL.md) | Frontend and backend performance — measure first |\n| [`remotion-best-practices`](frontend/remotion-best-practices/SKILL.md) | Programmatic video with Remotion |\n| [`extract-design-system`](frontend/extract-design-system/SKILL.md) | Reverse-engineer a website's design tokens via Playwright |\n| [`interface-design`](frontend/interface-design/SKILL.md) | Interface design for dashboards, admin panels, apps, and tools |\n| [`high-end-visual-design`](frontend/high-end-visual-design/SKILL.md) | Design like a high-end agency — fonts, spacing, shadows, premium feel |\n| [`minimalist-ui`](frontend/minimalist-ui/SKILL.md) | Clean editorial UI — warm monochrome, typographic contrast, bento grids |\n| [`redesign-existing-projects`](frontend/redesign-existing-projects/SKILL.md) | Upgrade existing sites/apps to premium quality without breaking functionality |\n| [`impeccable`](frontend/impeccable/SKILL.md) | Design, critique, polish, and harden any frontend interface — live iteration |\n| [`design-system-patterns`](frontend/design-system-patterns/SKILL.md) | Scalable design systems — tokens, theming, component architecture |\n| [`responsive-design`](frontend/responsive-design/SKILL.md) | Responsive layouts — container queries, fluid type, CSS Grid, mobile-first |\n| [`frontend-patterns`](frontend/frontend-patterns/SKILL.md) | React/Next.js frontend patterns — state, performance, UI best practices |\n| [`web-quality-performance`](frontend/web-quality-performance/SKILL.md) | Web performance optimization — faster loading, reduced load time (Lighthouse) |\n| [`web-quality-best-practices`](frontend/web-quality-best-practices/SKILL.md) | Modern web best practices — security, compatibility, code-quality audits |\n\n### Video `3 skills`\n\n| Skill | What it does |\n|---|---|\n| [`hyperframes`](video/hyperframes/SKILL.md) | HTML video compositions — animations, captions, voiceovers, transitions |\n| [`hyperframes-cli`](video/hyperframes-cli/SKILL.md) | HyperFrames CLI dev loop — init, lint, inspect, preview, render |\n| [`website-to-hyperframes`](video/website-to-hyperframes/SKILL.md) | Capture a website and turn it into a HyperFrames video |\n\n### Testing `2 skills`\n\n| Skill | What it does |\n|---|---|\n| [`playwright-best-practices`](testing/playwright-best-practices/SKILL.md) | E2E testing — selectors, fixtures, parallelism |\n| [`browser-testing-with-devtools`](testing/browser-testing-with-devtools/SKILL.md) | DevTools-driven testing and debugging |\n\n### Utilities `14 skills`\n\n| Skill | What it does |\n|---|---|\n| [`using-agent-skills`](utils/using-agent-skills/SKILL.md) | How to discover and invoke skills effectively |\n| [`using-superpowers`](utils/using-superpowers/SKILL.md) | Meta-skill: invoke relevant skills before any response; enforces skill-first discipline |\n| [`agent-browser`](utils/agent-browser/SKILL.md) | Browser automation CLI for AI agents — CDP, accessibility tree, Electron, Slack |\n| [`docx`](utils/docx/SKILL.md) | Create, read, edit, and manipulate Word documents (.docx) |\n| [`audit-website`](utils/audit-website/SKILL.md) | Full-site audit — performance, SEO, accessibility |\n| [`compress`](utils/compress/SKILL.md) | Lossless context compression for long conversations |\n| [`caveman-compress`](utils/caveman-compress/SKILL.md) | Compress CLAUDE.md / memory files into caveman-speak to save tokens |\n| [`caveman-commit`](utils/caveman-commit/SKILL.md) | Ultra-compressed Conventional Commits messages |\n| [`caveman-review`](utils/caveman-review/SKILL.md) | Ultra-compressed code review comments — one line per finding |\n| [`caveman`](utils/caveman/SKILL.md) | Ultra-compressed communication mode (~75% fewer tokens) |\n| [`cavecrew`](utils/cavecrew/SKILL.md) | Decide when to delegate to caveman-style subagents (investigator/builder/reviewer) |\n| [`caveman-stats`](utils/caveman-stats/SKILL.md) | Show real session token usage and estimated savings (/caveman-stats) |\n| [`webwright`](utils/webwright/SKILL.md) | Drive a local Playwright browser to solve web tasks code-as-action, with screenshots |\n| [`apify-ultimate-scraper`](utils/apify-ultimate-scraper/SKILL.md) | AI-powered web scraper for 25+ platforms via Apify actors |\n\n---\n\n## Knowledge Graph\n\nThis repo includes a graphify knowledge graph (`graphify-out/`) that maps relationships between all 160 skills — which ones share concepts, which cluster together, and which bridge multiple domains.\n\nOpen `graphify-out/graph.html` in any browser to explore the interactive graph.\n\nTo rebuild the graph after adding new skills:\n\n```\n/graphify .\n```\n\n---\n\n## Adding Skills\n\nEach skill lives inside its category folder with a single `SKILL.md` file:\n\n```\n\u003ccategory\u003e/\n└── my-skill/\n    └── SKILL.md\n```\n\nA minimal `SKILL.md`:\n\n```markdown\n\u003c!-- Source: https://skills.sh/\u003cuser\u003e/\u003crepo\u003e/\u003cskill\u003e --\u003e\n\u003c!-- Install: npx skills add https://github.com/\u003cuser\u003e/\u003crepo\u003e --skill my-skill --\u003e\n---\nname: my-skill\ndescription: One-line description of what this skill does and when to use it.\n---\n\n# My Skill\n\n## When to Use\n...\n\n## Core Principles\n...\n```\n\nPull requests welcome.\n\n---\n\n## Sources\n\nSkills in this library are sourced from upstream authors (tracked in each `SKILL.md` via `\u003c!-- Source: --\u003e` and `\u003c!-- Install: --\u003e` comments) and custom-authored skills. Key upstream collections include:\n\n- [analogjs/angular-skills](https://github.com/analogjs/angular-skills) — Angular skills\n- [apollographql/skills](https://github.com/apollographql/skills) — Rust best practices\n- [affaan-m/everything-claude-code](https://github.com/affaan-m/everything-claude-code) — Bun runtime, Go, Rust testing\n- [squirrelscan/skills](https://github.com/squirrelscan/skills) — Website audit\n- [xixu-me/skills](https://github.com/xixu-me/skills) — Linux web hosting\n- [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) — Vercel, web design, React performance, React Native, composition patterns\n- [vercel-labs/agent-browser](https://github.com/vercel-labs/agent-browser) — Browser automation CLI\n- [google-labs-code/stitch-skills](https://github.com/google-labs-code/stitch-skills) — Stitch-to-React component generation\n- [anthropics/skills](https://github.com/anthropics/skills) — Frontend design, DOCX\n- [obra/superpowers](https://github.com/obra/superpowers) — Brainstorming, TDD, debugging, planning, code review workflows\n- [mattpocock/skills](https://github.com/mattpocock/skills) — TDD, architecture, grilling, caveman mode\n- [sleekdotdesign/agent-skills](https://github.com/sleekdotdesign/agent-skills) — Mobile app design via Sleek\n- [juliusbrussee/caveman](https://github.com/juliusbrussee/caveman) — Caveman commit, review, compress\n- [currents-dev/playwright-best-practices-skill](https://github.com/currents-dev/playwright-best-practices-skill) — Playwright\n- [remotion-dev/skills](https://github.com/remotion-dev/skills) — Remotion\n- [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills) — SEO \u0026 content\n- [kadajett/agent-nestjs-skills](https://github.com/kadajett/agent-nestjs-skills) — NestJS best practices\n- [jeffallan/claude-skills](https://github.com/jeffallan/claude-skills) — NestJS expert workflow\n- [affaan-m/everything-claude-code](https://github.com/affaan-m/everything-claude-code) — NestJS patterns, Bun, Go, Rust\n- [wshobson/agents](https://github.com/wshobson/agents) — Python design patterns, testing, performance\n- [github/awesome-copilot](https://github.com/github/awesome-copilot) — Dataverse Python SDK skills\n- [aaron-he-zhu/seo-geo-claude-skills](https://github.com/aaron-he-zhu/seo-geo-claude-skills) — SEO content writing\n- [sanity-io/agent-toolkit](https://github.com/sanity-io/agent-toolkit) — SEO \u0026 AEO best practices\n- [calm-north/seojuice-skills](https://github.com/calm-north/seojuice-skills) — AI search optimization\n- [addyosmani/web-quality-skills](https://github.com/addyosmani/web-quality-skills) — Lighthouse-based SEO, web performance, best practices\n- [wshobson/agents](https://github.com/wshobson/agents) — Backend architecture, async Python, design systems, responsive design, LangChain, React modernization\n- [langchain-ai/langchain-skills](https://github.com/langchain-ai/langchain-skills) — LangChain RAG, LangGraph fundamentals and persistence\n- [heygen-com/hyperframes](https://github.com/heygen-com/hyperframes) — HyperFrames HTML video compositions and CLI\n- [leonxlnx/taste-skill](https://github.com/leonxlnx/taste-skill) — High-end visual design, minimalist UI, redesign\n- [pbakaus/impeccable](https://github.com/pbakaus/impeccable) — Frontend interface design and critique\n- [dammyjay93/interface-design](https://github.com/dammyjay93/interface-design) — Interface/product design\n- [millionco/react-doctor](https://github.com/millionco/react-doctor) — React diagnostics scanner\n- [neondatabase/agent-skills](https://github.com/neondatabase/agent-skills) — Neon Serverless Postgres\n- [github/awesome-copilot](https://github.com/github/awesome-copilot) — Documentation, PRD, README, PostgreSQL optimization\n- [better-auth/skills](https://github.com/better-auth/skills) — Email/password authentication best practices\n- [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills) — CRO, ASO, lead magnets\n- [apify/agent-skills](https://github.com/apify/agent-skills) — Universal web scraper\n- [microsoft/webwright](https://github.com/microsoft/webwright) — Playwright-driven web task automation\n- [forrestchang/andrej-karpathy-skills](https://github.com/forrestchang/andrej-karpathy-skills) — LLM coding behavioral guidelines\n- [juliusbrussee/caveman](https://github.com/juliusbrussee/caveman) — Cavecrew subagent delegation, caveman stats\n- [nodnarbnitram/claude-code-extensions](https://github.com/nodnarbnitram/claude-code-extensions) — Tauri v2 development\n- Custom skills authored for this library — all `engineering/`, `utils/`, and others without a Source comment\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvssdeva%2Fagentic-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsvssdeva%2Fagentic-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvssdeva%2Fagentic-skills/lists"}