Design and validate multi-country sales-tax engines for ERP applications.
Project overview
The skill gives Claude Code reference material, reusable TaxEngine patterns, and calculation checks for SST, GST, and VAT implementations. Its strongest documented coverage is Malaysia and Singapore, while the Thailand material remains a skeleton. Income, payroll, and corporate taxes are outside scope, and production rates still require official or professional verification.
Analyze an existing app and turn feature gaps into prioritized implementation plans.
Project overview
The skill reads an application’s code, blueprint, or description, then identifies missing features, useful AI integrations, n8n automation opportunities, and library changes. It organizes the findings by priority and can generate detailed specifications for selected improvements, with implementation remaining an optional next step.
Turn a business idea into competitive research and a coding-ready blueprint.
Project overview
This skill first captures a business idea as a brief, then researches competitors, and finally creates a development blueprint with business and technical PRDs, database schemas, API contracts, module specifications, testing guidance, a multi-agent plan, and an implementation roadmap. The output is a structured set of documents and project scaffolding for later coding, not a finished application. Web search, Node.js with docx, and Python with openpyxl are required.
Deploy and monetize MCP servers without building an access or billing layer.
Project overview
The Dock0 skill guides developers through connecting an existing remote MCP server or deploying a stdio server from GitHub onto managed infrastructure. It covers endpoint setup, API keys, rate limits, per-call pricing, public listings, wallet balance, earnings, Stripe-backed payouts, environment variables, logs, and redeploys. The guidance assumes the dock0 CLI is available when command-line operations are needed.
Collection or directoryPersonal and daily lifeClaude Code
claude-skill-japan-recs
@abalmeo
Research Japan restaurants and neighborhoods, then organize them into a usable trip plan.
Project overview
japan-recs supports both single-area restaurant research and multi-neighborhood trip planning. It can import places you already saved, add restaurants and activities around them, and organize results as Markdown, CSV, or Google Sheets with useful details and links. Markdown and CSV work directly, while Sheets output requires the Google Workspace CLI and OAuth setup.
Scan a project, find relevant Claude skills, and install them interactively.
Project overview
openskill reads signals such as CLAUDE.md, package.json, and framework configuration to understand a project before looking for relevant Claude skills. It searches installed sources, community repositories, and an official registry when available, filters duplicate suggestions, and lets the user choose global or project-scoped installation. Searches can also be narrowed to areas such as frontend, backend, testing, or API design.
Collection or directoryCode review and qualityClaude Code
claudeskills
@sharmasundip
Review REST, GraphQL, and gRPC specifications with scored, actionable feedback.
Project overview
This repository currently centers on API Design Reviewer, a skill for analyzing OpenAPI or Swagger specifications, GraphQL schemas, and gRPC proto files across ten design dimensions. It produces scored Markdown and interactive HTML reports that explain what should change and why. Evaluation cases are included to check the consistency of the review behavior.
Run repeated Claude Code audits and fixes on a dedicated branch with build gates.
Project overview
overnight-skill audits a codebase, asks the user to confirm protected files, and then launches fresh Claude Code sessions from a tmux runner to fix queued issues. Each iteration runs verification, commits and pushes to a dedicated branch, and reverts on failure, while a draft PR, progress log, and morning review capture the outcome. It runs headlessly with bypassPermissions, so its shell-enforced safeguards and scope require careful review before use.
Classify idea files and move them from an inbox into structured workspace folders.
Project overview
inbox-triage scans an inbox directory, classifies each file as a project, learning item, experiment, archive candidate, or related asset, and presents the plan before changing anything. After confirmation, it can scaffold missing project folders, prepend triage metadata, move the files, and verify the result. It expects a workspace with the documented inbox, project, learning, sandbox, archive, and optional template directories.
Pair Claude and Codex for planned implementation and cross-review.
Project overview
crossfire runs a four-phase actor-critic workflow in which Claude plans and reviews while Codex implements and audits. Task tiers scale from quick edits to architecture-level changes, with deterministic tests, linters, debate, and fix-and-reaudit loops added as risk increases. Both Claude Code and Codex CLI are required, and the documented setup includes Windows-specific defenses.
Generate importable Flowise workflows with build instructions and connection diagrams.
Project overview
Flowise Workflow Generator turns a workflow description into an importable Flowise JSON file, step-by-step UI instructions, and a Mermaid or SVG diagram of node connections and data flow. It covers Chatflows plus AgentFlow V1 and V2, with templates for chatbots, RAG, API integrations, multi-agent supervision, database agents, and human approval. Users can adapt the generated structure to their chosen models, tools, and data sources.
Turn LinkedIn marketing briefs into model-specific image prompts and post copy.
Project overview
PixelPitch converts a LinkedIn visual brief into a prompt package tailored to the selected image model. It can include a main prompt, negative prompt where supported, dimensions and settings, a brand-alignment check, two creative variants, and accompanying post copy. Marketers can also provide brand colors, style preferences, audience details, and visual exclusions for more consistent output.
Scaffold, audit, and release Python packages with consistent conventions.
Project overview
Guide Claude Code through the Python package lifecycle, from a src-layout scaffold and dependency setup to API naming, structured errors, tests, documentation, deprecations, and PyPI releases. The conventions use tools such as uv, pytest, rich, and MkDocs. The skill can also inspect existing projects for common packaging mistakes and configure pre-commit checks.
Bridge patterns from unrelated fields into a concrete seven-day experiment.
Project overview
Weaver Mind looks across domains such as biology, architecture, game design, jazz, and physics for patterns that may apply to a problem after the obvious playbook has run out. Its report explains why each analogy transfers, how to act on it, the tradeoffs, effort, and potential impact, then ends with a wildcard and the smallest promising experiment you can run within seven days.
Generate and validate an OpenAPI 3.0 specification directly from application source code.
Project overview
This Claude Code skill inspects routes, request parameters, response types, middleware, and validation schemas to produce an `openapi.yaml` file without requiring decorators or annotations. It supports common JavaScript, Python, Go, Java, and Rust web frameworks, maps native types into OpenAPI schemas, and detects authentication patterns such as bearer tokens, API keys, and cookies. The generated specification can be validated with Swagger CLI or Redocly.
Generate Supabase migrations, RLS policies, types, and Next.js routes from a data model.
Project overview
Describe the entities, relationships, and ownership rules in natural language, and this Claude Code skill generates SQL migrations with Row Level Security, Supabase-style TypeScript types, Zod schemas, and Next.js App Router endpoints. It can also scaffold authentication choices, React forms, and many-to-many junction tables. Built-in checks call out common mistakes such as missing delete policies, unprotected junction tables, exposing the service-role key, or using imprecise numeric types for currency.
Build, explain, and test regular expressions from natural-language requirements.
Project overview
This Claude Code skill can turn a plain-language matching requirement into a regular expression with an explanation and test cases. It can also break down an existing pattern or run it against supplied strings, showing match positions and capture groups. Output adapts to JavaScript, Python, Go, or Java syntax, includes ready-to-use match or replace snippets, and warns about issues such as catastrophic backtracking and greedy matching.
Check environment variables for missing entries, invalid formats, and hardcoded secrets.
Project overview
Env Doctor scans JavaScript, TypeScript, Python, Go, Dockerfiles, and Compose files for environment-variable references. It compares code with `.env` and `.env.example` to identify missing, undocumented, or unused values, then checks common secret patterns and validates formats such as URLs, ports, email addresses, booleans, and timeouts. When no example file exists, it can generate a categorized `.env.example` template for the project.