Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →

acedergren/agentic-tools

45 skills705 installs990 starsGitHub

Install

npx skills add https://github.com/acedergren/agentic-tools

Skills in this repo

1Humanizerhumanizer is a Claude Code skill that rewrites AI-generated text to sound human by detecting patterns like overused phrases, rule-of-three, em-dash overuse, and vague attributions. A developer uses it when copy sounds like ChatGPT and needs voice injected. It grades how aggressively to rewrite by context, from academic to social.43installs2TurborepoThis skill guides Turborepo monorepo architecture decisions: choosing monorepo versus polyrepo, when to split packages, setting package boundaries, avoiding circular dependencies, and debugging cache misses. A developer uses it when structuring or scaling a monorepo, not for basic CLI syntax. It stresses defining tasks per package rather than in the root to enable parallelization.25installs3Orchestrateorchestrate is a Claude Code skill for running a multi-task implementation plan with parallel agents. It coordinates task assignment, wave sequencing, heartbeat monitoring, scope enforcement, and quality gates, and works in interactive or headless claude -p modes. A developer uses it when a written plan has separable workstreams that can run in parallel. It bundles agent-role and prompt-template references plus scripts for session setup and file-overlap detection.24installs4Refactor Modulerefactor-module is a Claude Code skill for deciding whether and how to extract Terraform code into a reusable module. It covers the modularize-vs-inline decision, module boundaries, anti-patterns like leaky abstraction and version sprawl, and safe state migration with terraform state mv. A developer uses it when Terraform code is repeated and they are weighing a module or need to migrate state safely. It bundles an error-recovery reference for state migrations gone wrong.24installs5Api Auditapi-audit is a Claude Code skill that audits API routes for schema drift, missing auth, and validation gaps. It scans routes against shared TypeScript type definitions to find mismatches, missing middleware, and undocumented endpoints, then produces a severity-grouped report. It is read-only and does not modify files. Developers use it to review an API surface before shipping.23installs6Quality Commitquality-commit is a Claude Code skill for creating a quality-gated commit. It runs lint, typecheck, a Semgrep security scan, optional CodeRabbit review, and related tests on staged files before committing, and can push after. A developer uses it when committing changes and wanting gates enforced instead of relying on pre-commit hooks. It bundles scripts to classify staged files and find related tests, plus a per-file Semgrep workaround.23installs7Firecrawlfirecrawl is a Claude Code skill that wraps the Firecrawl scraping CLI to fetch web pages, extract content from JS-rendered sites, run search-plus-scrape workflows, and map site URL trees. A developer uses it when WebFetch cannot render a page or when structured Markdown output is needed. It adds a decision tree for choosing between Firecrawl, WebFetch, and WebSearch, plus parallel-scraping patterns.22installs8Tanstack QueryThis skill is expert troubleshooting for TanStack Query (React Query) v5. It covers v4-to-v5 migration gotchas like gcTime, isPending and throwOnError, infinite refetch loops, SSR hydration mismatches, and when to use React Query versus SWR or Zustand. A developer uses it when production data-fetching breaks, not for basic useQuery setup. It stresses that React Query is a server cache, not a general state manager.22installs9Doc Syncdoc-sync is a Claude Code skill that audits or fixes drift between project documentation and the actual codebase. It detects stale architecture diagrams, wrong file paths, outdated test counts, and undocumented structural changes, classifying drift into structural, path rot, count, and roadmap lag. By default it reports only; passing 'fix' applies targeted repairs and commits. Developers use it to keep docs, CLAUDE.md, and roadmaps in sync with the code.21installs10Health Checkhealth-check is a Claude Code skill that runs a full codebase quality-gate diagnostic: typecheck, tests, lint, Semgrep security scan, circular-dependency and dead-code checks, and dependency audit. A developer uses it before a PR to see pass/fail across all gates. It is headless and only reports a summary table, never editing files or suggesting fixes.20installs11Review Allreview-all is a Claude Code skill for a full-spectrum pre-PR code review. It launches security, API-route, and scope reviewers in parallel against changed files and synthesizes their findings into one report with a READY TO MERGE, NEEDS FIXES, or NEEDS DISCUSSION verdict. A developer uses it when preparing a PR or completing a phase and wanting a consolidated review. It is read-only and complements lint, typecheck, and tests rather than replacing them.20installs12TddThis skill enforces a strict test-driven development cycle: red, green, refactor, commit. It requires writing failing tests before implementation, validating a mock bootstrap round-trip in mockReset:true projects, and running the full suite rather than a single file. A developer uses it when implementing a feature or fixing a bug test-first. It rejects tests that pass in the red phase and treats compile errors as invalid failures.20installs13Write TestsThis skill adds or improves test coverage for existing source code without changing production behavior. It selects a mock strategy by module type, handles mockReset:true environments, and prevents common vitest and jest mock-wiring failures. A developer uses it to cover an untested module or add regression tests. It tests observable behavior through the public API rather than implementation details.20installs14Implementimplement is a Claude Code skill that runs an end-to-end feature-implementation pipeline: pre-flight validation, a TDD red/green cycle, scope enforcement, and a clean commit. A developer uses it when adding a feature or endpoint that needs disciplined test-first delivery. It combines pre-flight, TDD, scope-check, and quality-commit into one orchestrated flow with explicit abort conditions.19installs15Phase Kickoffphase-kickoff is a Claude Code skill for starting a new development phase or sprint. It scaffolds a feature branch, a TDD test shell, and a roadmap entry together as one atomic operation so implementation never begins without a branch and verification criteria. A developer uses it when kicking off a new phase or feature that needs consistent scaffolding. It bundles a scaffold-phase shell script that outputs the branch name, test file path, and roadmap stub.19installs16Prdprd is a Claude Code skill for creating, updating, validating, and phasing a Product Requirements Document. It runs interactive discovery, scans the codebase before asking questions, and writes a living PRD with Given/When/Then acceptance criteria and a phasing DAG. A developer uses it when planning a feature and needing requirements that will not drift from the real architecture. It bundles a template, validation checklist, drift-prevention rules, and phase-listing scripts.19installs17Bugfixbugfix is a Claude Code skill that takes a bug report, failing test, stack trace, or CI failure and diagnoses the root cause, implements a minimal fix, verifies it, and commits. It classifies the root cause before writing code, collects evidence first, runs the targeted test and full workspace suite plus a typecheck, and stages only the files it changed. Developers use it to resolve a specific failing test or reported bug end to end.18installs18Find Skillsfind-skills is a Claude Code skill that discovers and installs skills from the open agent-skills ecosystem via the Skills CLI. It wraps commands like npx skills find, add, check, and update, lists known skill sources, and gives rules for when to install a skill versus answer directly. Developers use it when they want to find, install, or search for agent skills for a specialized capability.16installs19Oracle Dbaoracle-dba is a Claude Code skill for managing Oracle Autonomous Database (ADB) on OCI. It covers performance troubleshooting via SQL_ID and wait-event analysis, cost control around ECPU scaling and backups, HA/DR, and security. A developer or DBA uses it when a query is slow, a bill is climbing, or a database needs tuning or resilience work. It ships reference files for OCI CLI, SQLcl workflows, ADB best practices, and security remediation SQL.16installs20Migratemigrate is a Claude Code skill that orchestrates monorepo migrations: import-path changes, package renames, and module moves. A developer uses it when reorganizing modules across many files. It uses scripted bulk operations rather than file-by-file edits, deduplicates against existing work, verifies types at each step, and commits atomically.15installs21Prod Readinessprod-readiness is a Claude Code skill for assessing release readiness with a pre-launch review. It spawns five specialist agents in parallel, each writing findings to a dedicated report file, then synthesizes a prioritized report with blockers and a ship recommendation. A developer uses it before a launch to get a go/no-go verdict across security, testing, performance, observability, and code quality. It runs pre-flight checks so findings map to a stable, green baseline.15installs22Ocioci (best-practices router) is a Claude Code skill used as the entry point for broad OCI architecture reviews, migration triage, and deciding which OCI skill applies. A developer uses it when a request spans more than one OCI domain or the correct specialist skill is unclear. It routes networking, IAM, landing-zone, Terraform, compute, database, and security questions to owner skills and checks cross-cutting risks.14installs23Write Natural SwedishThis skill drafts, translates, polishes, and reviews Swedish text so it reads like natural, contemporary Sweden Swedish rather than translated English. It offers presets for contemporary, tech-company, developer-docs, product-marketing, startup-internal, klarsprak, and learner-friendly registers. A developer or writer uses it to produce idiomatic Swedish copy or docs. It fixes V2 word order, compounds, prepositions, and Anglicisms while preserving meaning.14installs24Database Managementdatabase-management is a Claude Code skill that routes Oracle database work on OCI to the correct lane. It helps choose between Autonomous AI Database (ADB), DB Systems, and Exadata, manage PDB/CDB lifecycle, and plan Oracle database provisioning. When the database type is clear and narrow, it routes to specialist skills such as oracle-dba. Developers use it when the Oracle database type or provisioning path is unclear.13installs25Best Practicesbest-practices is a Claude Code skill that acts as the entry-point router for Oracle Cloud (OCI) architecture reviews, migration triage, and deciding which OCI skill applies. It identifies the workload boundary, routes each domain such as networking, IAM, compute, or FinOps to the owning specialist skill, then checks cross-cutting risks like IAM blast radius, data residency, and cost controls. Developers use it when an OCI request spans more than one domain or the right specialist skill is unclear.12installs26Compute Managementcompute-management is a Claude Code skill with expert knowledge for Oracle Cloud (OCI) compute. It helps launch instances, choose shapes, debug capacity errors, configure instance principals, and optimize instance cost. It provides a capacity-error decision tree that separates service-limit exhaustion from true host-capacity issues and warns against anti-patterns like public IPs on production or orphaned boot volumes. Developers use it when working with OCI compute infrastructure.11installs27Fastify Better Auth Bridgefastify-better-auth-bridge is a Claude Code skill that wires Better Auth session resolution into Fastify 5 via the onRequest hook. It covers building the Web Request bridge that forwards cookies, per-request Symbol-backed decorators to avoid shared array state, and patching missing IDCS org context. It is for cases where Better Auth already exists but Fastify lacks the framework bridge. Developers use it to fix Fastify session resolution and cookie forwarding.11installs28Finops Cost Optimizationfinops-cost-optimization is a Claude Code skill with expert knowledge for Oracle Cloud (OCI) FinOps. It helps optimize OCI cost, investigate bills, estimate egress cost, right-size resources, and plan Resource Scheduler savings. It flags cost pitfalls such as orphaned boot volumes, unattached reserved public IPs, stopped resources that still charge for storage, and non-transferable Universal Credits. Developers use it to reduce and understand OCI spend.11installs29Iam Identity Managementiam-identity-management is a Claude Code skill for writing OCI IAM policies and debugging authorization failures. A developer uses it when hitting 403/404 permission errors, setting up dynamic groups, or configuring IDCS federation. It covers OCI policy syntax gotchas, principal-type confusion, compartment hierarchy rules, and the inspect-read-use-manage verb hierarchy.11installs30Infrastructure As Codeinfrastructure-as-code is a Claude Code skill for writing Terraform for OCI and troubleshooting provider errors. A developer uses it when managing state files, implementing Resource Manager stacks, or recovering from drift and 409 conflicts. It covers terraform-provider-oci gotchas, resource-lifecycle anti-patterns, state recovery, and authentication precedence.11installs31Landing Zoneslanding-zones is a Claude Code skill for designing multi-tenant OCI environments and standing up landing-zone Terraform stacks. A developer uses it when planning compartment hierarchies, enforcing Security Zones, or designing hub-spoke network topology. It covers OCI compartment structures, multi-tenant IAM decision trees, Security Zone automation, CIS Foundations compliance, and DRG routing.11installs32Monitoring Operationsmonitoring-operations is a Claude Code skill for setting up OCI metrics, alarms, and log collection, and troubleshooting missing data and silent alarms. A developer uses it when a metric returns no data or an alarm never fires. It covers metric namespace naming, MQL dimension requirements, alarm missing-data handling, Service Connector IAM gaps, and Cloud Guard integration.11installs33Networking Managementnetworking-management is a Claude Code skill for designing OCI VCN topology and troubleshooting connectivity failures. A developer uses it when configuring Service Gateway to cut egress costs, choosing between Security Lists and NSGs, or sizing Load Balancer subnets. It covers Service Gateway free egress, CIDR immutability, peering non-transitivity, and stateful rule behavior.11installs34Secrets ManagementThis skill guides storing and retrieving secrets in Oracle Cloud Infrastructure (OCI) Vault. It documents the IAM dual-permission requirement, a 401/403/404/500 error decision tree, zero-downtime secret rotation, instance principal auth, and cache-TTL selection. A developer uses it when debugging secret retrieval failures or setting up Vault-backed secret access on OCI. It matters because the OCI error messages hide the real cause of most permission failures.11installs35Genai Servicesgenai-services is a Claude Code skill for implementing OCI Generative AI inference APIs. A developer uses it when calling command-r or command-r-plus, debugging 429 rate-limit or 400 token-limit errors, or handling PHI/PII in prompts. It covers model cost trade-offs, token truncation, backoff, PHI redaction, and healthcare response validation.10installs36Oci Pptxoci-pptx is a Claude Code skill for creating and editing Oracle-branded PowerPoint presentations, pitch decks, and technical slides. It applies Oracle brand typography, pillar color palettes, and five cognitive-science rules for slide layout and audience retention. A developer uses it when asked to build a deck, .pptx file, or CloudWorld/keynote presentation. It bundles PptxGenJS code references and Office XML schemas so slides can be generated from scratch or edited from an existing template.10installs37Oracle Idcs Better Auth Setuporacle-idcs-better-auth-setup is a Claude Code skill for wiring Better Auth to Oracle IDCS / OCI IAM using OIDC. It acts as a router that diagnoses where an auth problem lives (setup, Fastify bridge, or org provisioning) and covers callback URLs, trusted origins, required scopes, and provider bootstrap order. A developer uses it when standing up the shared auth foundation across Fastify and Next.js apps. It bundles env-validation and setup-checklist scripts.10installs38Oracle Idcs Org Provisioningoracle-idcs-org-provisioning is a Claude Code skill for turning IDCS claims into real org membership after an OAuth login succeeds. It covers the mapProfileToUser and session.create hooks, atomic MERGE INTO upserts into org_members, tenant-to-org mapping, and first-admin bootstrap. A developer uses it when login works but tenant, role, or membership still needs to be resolved and persisted. It bundles scripts to preview group-to-role mapping and org resolution.10installs39Publish Skillpublish-skill is a Claude Code skill for authoring a new skill and publishing it to a GitHub repo so it installs via npx skills add. It covers scaffolding with npx skills init, spec-compliant frontmatter, skill-judge evaluation, commit, push, and install verification. A developer uses it when adding a skill to the agentic-tools repo and wanting it to trigger correctly. It documents the exact install commands for the repo.10installs40Semgrep CoderabbitThis skill runs a two-stage code review before a commit or PR merge: fast deterministic Semgrep pattern scanning first, then CodeRabbit semantic AI analysis. It defines tool sequencing, severity priorities, batched fix ordering, and conflict resolution between the two tools. A developer uses it to gate pull requests on security and quality findings. Semgrep failures are treated as blockers rather than suggestions.10installs41Shadcn SvelteThis skill gives expert guidance for building UI with shadcn-svelte, TanStack Table in Svelte 5, and Tailwind v4.1. It documents reactivity bugs like missing get accessors, Bits UI builder destructuring, and the silent Tailwind v4.1 migration failure. A developer uses it when components render but interactions silently break. It also includes a library-selection decision tree and data-table complexity trade-offs.10installs42Stitch Design SystemThis skill extracts a design system from a Google Stitch project into a semantic DESIGN.md file. It retrieves screens and design themes via the Stitch tools and translates technical CSS values into descriptive language that Stitch interprets for consistent generation. A developer uses it to create a source of truth so new screens match an existing visual language. It emphasizes hex codes, functional color roles, and sensory descriptions over vague words.10installs43Stitch Prompt EngineerThis skill enhances and fixes prompts used to generate UI in Google Stitch. It adds UI/UX vocabulary, injects design-system tokens, structures page hierarchy, and enforces hex color formatting. A developer uses it to turn a vague Stitch request into a precise prompt that produces consistent output. For multi-page projects it requires a DESIGN.md so tokens stay consistent across screens.10installs44Stitch To ReactThis skill converts Google Stitch designs into production React components. It enforces a modular architecture: event logic in hooks, static data in mockData.ts, Readonly TypeScript interfaces, and theme-mapped Tailwind classes instead of hardcoded hex values. A developer uses it after exporting a Stitch screen to generate clean React code. It caches downloaded designs and validates architecture before marking work done.10installs45Sqlite To Oracle PlannerThis skill plans a SQLite-to-Oracle migration on a Node.js or TypeScript codebase. It scans in five passes for imports, data files, connection strings, schema syntax, and SQLite fallback branches, then emits a structured [SQLITE_REPLACE] migration manifest. A developer uses it before implementing an Oracle migration so each touch point becomes an atomic task for later agents. It plans only and does not change code.9installs

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.

acedergren/agentic-tools · 45 skills · Skillselion