Content & Writing

Page 56 of 56

Browse skills in this category.

4001 skills · Showing 3961-4001
Sort by:

claude-md-authoring

Content & Writing

by sammcj

Creating and maintaining CLAUDE.md project memory files that provide non-obvious codebase context. Use when (1) creating a new CLAUDE.md for a project, (2) adding architectural patterns or design decisions to existing CLAUDE.md, (3) capturing project-specific conventions that aren't obvious from code inspection.

74
Jan 7, 2026, 11:19 PM

by sammcj

Critical thinking and logical reasoning analysis skills for when you are explicitly asked to critically analyse written content such as articles, blogs, transcripts and reports (not code).

74
Jan 7, 2026, 11:19 PM

customer-support-builder

Content & Writing

by nbashaw

Guide users through building a custom customer support automation skill for their company. Walks through planning integrations, writing scripts for their support stack (Zendesk, HelpScout, Intercom, etc.), creating response templates, and setting up an automated triage workflow. Use when users want to create their own support automation.

74
Jan 11, 2026, 02:24 AM

extract-wisdom

Content & Writing

by sammcj

Extract wisdom, insights, and actionable takeaways from text sources. Use when asked to analyse, summarise, or extract key learnings from blog posts, articles, markdown files, or other text content.

74
Jan 7, 2026, 11:19 PM

shell-scripting

Content & Writing

by sammcj

Practical bash scripting guidance emphasising defensive programming, ShellCheck compliance, and simplicity. Use when writing shell scripts that need to be reliable and maintainable.

74
Jan 7, 2026, 11:19 PM

skill-creator

Content & Writing

by sammcj

Guide for creating effective Claude Skills. This skill should be used when users want to create (or update) a skill that extends Claude's capabilities with specialised knowledge, workflows, or tool integrations.

74
Jan 7, 2026, 11:19 PM

swift-best-practices

Content & Writing

by sammcj

This skill should be used when writing or reviewing Swift code for iOS or macOS projects. Apply modern Swift 6+ best practices, concurrency patterns, API design guidelines, and migration strategies. Covers async/await, actors, MainActor, Sendable, typed throws, and Swift 6 breaking changes.

74
Jan 7, 2026, 11:19 PM

testing-anti-patterns

Content & Writing

by sammcj

Use when writing or changing tests, adding mocks, or tempted to add test-only methods to production code - prevents testing mock behaviour, production pollution with test-only methods, and mocking without understanding dependencies

74
Jan 7, 2026, 11:19 PM

by sammcj

Applies the Diataxis framework to create or improve technical documentation. Use when being asked to write high quality tutorials, how-to guides, reference docs, or explanations, when reviewing documentation quality, or when deciding what type of documentation to create. Helps identify documentation types using the action/cognition and acquisition/application dimensions.

74
Jan 7, 2026, 11:19 PM

writing-go-tests

Content & Writing

by sammcj

Applies current Go testing best practices. Use when writing or modifying Go test files or advising on Go testing strategies.

74
Jan 7, 2026, 11:19 PM

youtube-wisdom

Content & Writing

by sammcj

Extract wisdom, insights, and actionable takeaways from YouTube videos. Use when asked to analyse, summarise, or extract key learnings from YouTube content. Downloads video transcripts, performs analysis including summarisation, extracts key insights, notable quotes, structured summaries, and actionable takeaways.

74
Jan 7, 2026, 11:19 PM

add-neon-docs

Content & Writing

by neondatabase

Use this skill when the user asks to add documentation, add docs, add references, or install documentation about Neon. Adds Neon best practices reference links to project AI documentation (CLAUDE.md, AGENTS.md, or Cursor rules). Does not install packages or modify code.

73
Jan 16, 2026, 01:33 PM

bugs-to-stories

Content & Writing

by rohunj

Convert bug reports into prd.json user stories for autonomous fixing. Use after running test-and-break skill. Triggers on: convert bugs to stories, fix these bugs, add bugs to prd, create fix stories.

73
Jan 18, 2026, 10:21 PM

code-quality-gate

Content & Writing

by Afaneor

Automated code quality checks before commits. Use before committing code, when finishing a feature, or when user mentions "ready to commit" or "quality check".

73
Jan 8, 2026, 03:16 PM

edge-cases

Content & Writing

by rohunj

Analyze a PRD for edge cases, failure modes, and scenarios that might be missed. Use after creating a PRD to strengthen it. Triggers on: analyze edge cases, find edge cases, what could go wrong, edge case analysis.

73
Jan 18, 2026, 10:21 PM

elixir-thinking

Content & Writing

by georgeguimaraes

This skill should be used when the user asks to "implement a feature in Elixir", "refactor this module", "should I use a GenServer here?", "how should I structure this?", "use the pipe operator", "add error handling", "make this concurrent", or mentions protocols, behaviours, pattern matching, with statements, comprehensions, structs, or coming from an OOP background. Contains paradigm-shifting insights.

73
Jan 15, 2026, 12:20 AM

neon-auth

Content & Writing

by neondatabase

Sets up Neon Auth for your application. Configures authentication, creates auth routes, and generates UI components. Use when adding authentication to Next.js, React SPA, or Node.js projects.

73
Jan 16, 2026, 01:33 PM

neon-drizzle

Content & Writing

by neondatabase

Creates a fully functional Drizzle ORM setup with a provisioned Neon database. Installs dependencies, provisions database credentials, configures connections, generates schemas, and runs migrations. Results in working code that can immediately connect to and query the database. Use when creating new projects with Drizzle, adding ORM to existing applications, or modifying database schemas.

73
Jan 16, 2026, 01:33 PM

neon-js

Content & Writing

by neondatabase

Sets up the full Neon JS SDK with unified auth and PostgREST-style database queries. Configures auth client, data client, and type generation. Use when building apps that need both authentication and database access in one SDK.

73
Jan 16, 2026, 01:33 PM

neon-serverless

Content & Writing

by neondatabase

Configures Neon Serverless Driver for Next.js, Vercel Edge Functions, AWS Lambda, and other serverless environments. Installs @neondatabase/serverless, sets up environment variables, and creates working API route examples with TypeScript types. Use when users need to connect their application to Neon, fetch or query data from a Neon database, integrate Neon with Next.js or serverless frameworks, or set up database access in edge/serverless environments where traditional PostgreSQL clients don't work.

73
Jan 16, 2026, 01:33 PM

neon-toolkit

Content & Writing

by neondatabase

Creates and manages ephemeral Neon databases for testing, CI/CD pipelines, and isolated development environments. Use when building temporary databases for automated tests or rapid prototyping.

73
Jan 16, 2026, 01:33 PM

otp-thinking

Content & Writing

by georgeguimaraes

This skill should be used when the user asks to "add background processing", "cache this data", "run this async", "handle concurrent requests", "manage state across requests", "process jobs from a queue", "this GenServer is slow", or mentions GenServer, Supervisor, Agent, Task, Registry, DynamicSupervisor, handle_call, handle_cast, supervision trees, fault tolerance, "let it crash", or choosing between Broadway and Oban.

73
Jan 15, 2026, 12:20 AM

phoenix-thinking

Content & Writing

by georgeguimaraes

This skill should be used when the user asks to "add a LiveView page", "create a form", "handle real-time updates", "broadcast changes to users", "add a new route", "create an API endpoint", "fix this LiveView bug", "why is mount called twice?", or mentions handle_event, handle_info, handle_params, mount, channels, controllers, components, assigns, sockets, or PubSub. Covers where to load data (mount vs handle_params) and the LiveView lifecycle.

73
Jan 15, 2026, 12:20 AM

story-quality

Content & Writing

by rohunj

Review user stories for quality, proper sizing, sequencing, and acceptance criteria. Use before converting to prd.json. Triggers on: review stories, check user stories, story quality, validate stories.

73
Jan 18, 2026, 10:21 PM

strict-python-mode

Content & Writing

by Afaneor

Enforces type hints, docstrings, and Python best practices. Use when writing or refactoring Python code, creating new functions, or when user mentions "production-ready" or "type-safe" code.

73
Jan 8, 2026, 03:16 PM

test-and-break

Content & Writing

by rohunj

Autonomous testing skill that opens a deployed app, goes through user flows, tries to break things, and writes detailed bug reports. Use after deploying to staging. Triggers on: test the app, find bugs, QA the deployment, break the app, test staging.

73
Jan 18, 2026, 10:21 PM

testing-web-applications

Content & Writing

by team-mirai-volunteer

Executes browser-based QA tests using agent-browser CLI, covering happy paths and error paths. Use when testing web apps, verifying UI behavior, running E2E tests, or capturing screenshots on localhost.

73
Jan 19, 2026, 03:39 AM

using-elixir-skills

Content & Writing

by georgeguimaraes

This skill should be used when the user works on any .ex or .exs file, mentions Elixir/Phoenix/Ecto/OTP, the project has a mix.exs, or asks "which skill should I use", "new to Elixir", "help with Elixir". Routes to the correct thinking skill BEFORE exploring code. Triggers on "implement", "add", "fix", "refactor" in Elixir projects.

73
Jan 15, 2026, 12:20 AM

design-motion-principles

Content & Writing

by kylezantos

Motion and interaction design expert based on Emil Kowalski, Jakub Krehel, and Jhey Tompkins' techniques. Two modes — build interactive components with purposeful motion, or audit existing animations to catch AI-slop motion patterns (audit emits a branded HTML report with looping demos). Use when creating, adding, animating, or reviewing UI motion: transitions, hover states, micro-interactions, enter/exit animations, or any motion design work in React, Framer Motion, CSS, or HTML. Provides per-designer perspectives with context-aware weighting.

72
Jan 14, 2026, 08:24 AM

srtmarkdown

Content & Writing

by tech-shrimp

把srt字幕文件转换成markdown笔记

72
Jan 7, 2026, 01:07 AM

agents-bootstrap

Content & Writing

by appautomaton

Generate a project-specific AGENTS.md from a user goal, then confirm before overwriting.

71
Dec 26, 2025, 06:02 PM

backend-engineer

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

dev-engineer

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

mcp-tools-catalog

Content & Writing

by appautomaton

Build docs/mcp-tools.md from the active MCP servers and available tool functions.

71
Dec 26, 2025, 06:02 PM

platform-specialist

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

premium-experience

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

prompt-optimizer

Content & Writing

by wasintoh

Advanced prompt optimization and composition system for all prompt types (system prompts, task-specific, creative, technical, agentic). Use when users need to refine, optimize, or transform prompts to achieve better AI outputs. Triggers include requests to improve prompts, make prompts more effective, analyze prompt quality, create prompts from scratch, optimize existing prompts for specific goals, or optimize for Claude 4.x models. Also use when users share prompts that could be improved or ask for prompt engineering guidance.

71
Jan 11, 2026, 08:09 AM

smart-routing

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

ui-first-builder

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

vibe-orchestrator

Content & Writing

by wasintoh

>

71
Jan 11, 2026, 08:09 AM

mermaid

Content & Writing

by xicilion

Create flowcharts, sequence diagrams, state machines, class diagrams, Gantt charts, mindmaps, and more. Best for process flows, API interactions, system architecture, and technical documentation. NOT for data-driven charts (use vega) or quick KPI visuals (use infographic).

8
Jan 18, 2026, 07:49 PM