Content & Writing

Page 4 of 56

Browse skills in this category.

4001 skills · Showing 217-288
Sort by:

guidelines-advisor

Content & Writing

by trailofbits

Comprehensive smart contract development advisor based on Trail of Bits' best practices. Analyzes codebase to generate documentation/specifications, review architecture, check upgradeability patterns, assess implementation quality, identify pitfalls, review dependencies, and evaluate testing. Provides actionable recommendations. (project, gitignored)

6.9K
Jan 26, 2026, 01:31 AM

harness-writing

Content & Writing

by trailofbits

Designs and improves fuzzing harnesses for C/C++ and Rust. Covers mapping raw bytes onto a target API, generating structured inputs, avoiding non-determinism and false crashes, and deciding what to fuzz together. Use when writing a first LLVMFuzzerTestOneInput or fuzz_target! harness, when a campaign finds nothing or reports crashes that will not reproduce, or when the target API needs structured rather than raw input.

6.9K
Aug 26, 2026, 02:18 PM

by trailofbits

Interprets Culture Index (CI) surveys, behavioral profiles, and personality assessment data. Supports individual profile interpretation, team composition analysis (gas/brake/glue), burnout detection, profile comparison, hiring profiles, manager coaching, interview transcript analysis for trait prediction, candidate debrief, onboarding planning, and conflict mediation. Accepts extracted JSON or PDF input via OpenCV extraction script.

6.9K
Aug 19, 2026, 05:39 PM

libafl

Content & Writing

by trailofbits

Builds custom fuzzers with LibAFL, the modular Rust fuzzing library. Covers composing observers, feedbacks, mutators, schedulers, and executors into a fuzzer for targets the standard tools do not fit. Use when writing a bespoke fuzzer or mutator, fuzzing a non-standard target or architecture, implementing a fuzzing research idea, or when libFuzzer and AFL++ lack the control you need.

6.9K
Aug 26, 2026, 02:18 PM

libfuzzer

Content & Writing

by trailofbits

Sets up and runs libFuzzer, the coverage-guided fuzzer built into LLVM, on C/C++ code that compiles with Clang. Covers harness structure, -fsanitize=fuzzer builds, corpus and dictionary management, sanitizer integration, and campaign triage. Use when writing or debugging an LLVMFuzzerTestOneInput harness, starting fuzzing on a C/C++ library, choosing between libFuzzer and AFL++, or working out why a libFuzzer run finds nothing.

6.9K
Aug 26, 2026, 02:18 PM

ossfuzz

Content & Writing

by trailofbits

Enrolls a project in OSS-Fuzz, Google's free continuous fuzzing service for open source, and drives it locally. Covers project.yaml, Dockerfile and build.sh setup, the helper scripts, reproducing OSS-Fuzz crash reports, and the acceptance criteria. Use when setting up continuous fuzzing for an open-source project, reproducing an OSS-Fuzz bug report, or testing an OSS-Fuzz build before submitting it.

6.9K
Aug 26, 2026, 02:18 PM

property-based-testing

Content & Writing

by trailofbits

Writes, reviews, and debugs property-based tests — Hypothesis, fast-check, proptest, jqwik, rapid, and Echidna or Medusa for Solidity invariants. Use whenever tests should cover a whole input domain instead of a hand-picked list of examples: encode/decode and serialize/deserialize pairs, parsers, canonicalizers and normalizers, validators, numeric and Decimal types, comparators and sort order, data structures, and smart-contract state invariants. Also use when adding cases to an existing @given, fast-check, or proptest suite, when judging whether existing property tests assert anything real, and when a generator has shrunk a counterexample and you need to tell a wrong property from a genuine bug. Not for coverage-guided binary fuzzing (libFuzzer, AFL), mutation-testing campaigns, static analysis, benchmarking, or end-to-end UI tests.

6.9K
Aug 17, 2026, 12:34 PM

ruzzy

Content & Writing

by trailofbits

Sets up and runs Ruzzy, Trail of Bits' coverage-guided Ruby fuzzer and the only production-ready one for the language. Covers harness structure, fuzzing pure Ruby and the native C extensions in gems, and sanitizer builds. Use when fuzzing a Ruby library or gem, testing a Ruby C extension for memory safety, or asking how to fuzz Ruby at all.

6.9K
Aug 26, 2026, 02:18 PM

sarif-parsing

Content & Writing

by trailofbits

>-

6.9K
Aug 19, 2026, 09:38 PM

semgrep

Content & Writing

by trailofbits

>-

6.9K
Aug 19, 2026, 05:39 PM

semgrep-rule-creator

Content & Writing

by trailofbits

Creates custom Semgrep rules for detecting security vulnerabilities, bug patterns, and code patterns. Use when writing Semgrep rules or building custom static analysis detections.

6.9K
Jun 10, 2026, 07:34 PM

sharp-edges

Content & Writing

by trailofbits

Identifies error-prone APIs, dangerous configurations, and footgun designs that enable security mistakes. Use when reviewing API designs, configuration schemas, cryptographic library ergonomics, or evaluating whether code follows 'secure by default' and 'pit of success' principles. Triggers: footgun, misuse-resistant, secure defaults, API usability, dangerous configuration.

6.9K
Apr 29, 2026, 01:10 AM

spec-to-code-compliance

Content & Writing

by trailofbits

Check code against the documentation that specifies it - which requirements hold, which the code contradicts, which are absent, and what the code does that no document mentions. Use when comparing an implementation against a whitepaper, protocol spec, or design document.

6.9K
Aug 5, 2026, 01:37 PM

by trailofbits

Generates Claude Code skills from the Trail of Bits Testing Handbook (appsec.guide), analyzing handbook pages and emitting SKILL.md files with the structure each skill type requires. Use when creating or refreshing a skill from handbook content, or when the user names the testing handbook or appsec.guide. Not for answering security testing questions — the generated skills cover those.

6.9K
Aug 26, 2026, 02:18 PM

variant-analysis

Content & Writing

by trailofbits

Hunts for the other instances of a bug already found — the variants of one root cause across a codebase. Use immediately after a vulnerability, logic bug, or bad pattern turns up in a specific file and the question becomes where else it occurs, including the bare conversational form ("are there others like this?", "is this the same bug?"). Also for generalizing one known instance into a CodeQL or Semgrep query for its whole pattern family, and for triaging a set of look-alike candidates against a known root cause. Not for initial discovery with no bug in hand.

6.9K
Aug 5, 2026, 01:13 PM

wycheproof

Content & Writing

by trailofbits

Validates cryptographic implementations against Project Wycheproof's test vectors, which encode known attacks and edge cases across AES, RSA, ECDSA, ECDH, and more. Covers loading test vectors, mapping result flags onto pass and fail expectations, and reading a failure. Use when testing a crypto implementation against known attacks, checking a library against standard test vectors, or investigating why two implementations disagree on the same input.

6.9K
Aug 26, 2026, 02:18 PM

by muratcankoylan

Ensure thorough validation, error recovery, and transparent reasoning in research tasks with multiple tool calls

6.4K
Jan 12, 2026, 02:03 AM

context-degradation

Content & Writing

by muratcankoylan

This skill should be used when the user asks to "diagnose context problems", "fix lost-in-middle issues", "debug agent failures", "understand context poisoning", or mentions context degradation, attention patterns, context clash, context confusion, or agent performance degradation. Provides patterns for recognizing and mitigating context failures.

6.4K
Jan 12, 2026, 02:03 AM

digital-brain

Content & Writing

by muratcankoylan

This skill should be used when the user asks to "write a post", "check my voice", "look up contact", "prepare for meeting", "weekly review", "track goals", or mentions personal brand, content creation, network management, or voice consistency.

6.4K
Jan 12, 2026, 02:03 AM

by microsoft

Guidelines for writing and reviewing Insiders and Stable release notes for Visual Studio Code.

6.3K
Jan 11, 2026, 08:23 PM

creating-integration-docs

Content & Writing

by NangoHQ

Use when adding documentation for a new Nango integration - creates main page, setup guide, and updates docs.json and providers.yaml following established patterns

6.3K
Jan 9, 2026, 09:13 PM

git-commit

Content & Writing

by ThinkInAIXYZ

Generate well-formatted git commit messages following conventional commit standards

6.3K
Jan 13, 2026, 09:22 AM

cli-e2e-testing

Content & Writing

by dotnet

Guide for writing Aspire CLI end-to-end tests using Hex1b terminal automation. Use this when asked to create, modify, or debug CLI E2E tests.

6.3K
May 27, 2026, 10:55 AM

ld-permissions

Content & Writing

by lightdash

Guide for Lightdash's CASL-based authorization system. Use when working with scopes, custom roles, abilities, permissions, ForbiddenError, authorization, or access control. Helps with adding new scopes, debugging permission issues, understanding the permission flow, and creating custom roles.

6.1K
Aug 26, 2026, 04:19 PM

moonbit-agent-guide

Content & Writing

by loro-dev

Guide for writing, refactoring, and testing MoonBit projects. Use when working in MoonBit modules or packages, organizing MoonBit files, using moon tooling (build/check/test/doc/ide), or following MoonBit-specific layout, documentation, and testing conventions.

6.1K
Jan 16, 2026, 10:26 AM

website-preview

Content & Writing

by missing-semester

Take screenshots and interact with the rendered Jekyll website

6.0K
Jan 15, 2026, 04:40 AM

data-layer

Content & Writing

by ethereum

This skill provides patterns for working with the data-layer module. Use when creating/editing files in src/data-layer/, src/lib/data/, or adding new data sources.

6.0K
Aug 21, 2026, 05:17 PM

json-canvas

Content & Writing

by kepano

Create and edit JSON Canvas files (.canvas) with nodes, edges, groups, and connections. Use when working with .canvas files, creating visual canvases, mind maps, flowcharts, or when the user mentions Canvas files in Obsidian.

5.5K
Jan 11, 2026, 08:13 PM

obsidian-markdown

Content & Writing

by kepano

Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.

5.5K
Jan 11, 2026, 08:13 PM

writing-skill

Content & Writing

by agentscope-ai

A skill for writing and content creation

5.4K
Jan 14, 2026, 01:38 AM

clinical-decision-support

Content & Writing

by K-Dense-AI

Generate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.

5.2K
Jan 9, 2026, 04:57 PM

clinical-reports

Content & Writing

by K-Dense-AI

Write comprehensive clinical reports including case reports (CARE guidelines), diagnostic reports (radiology/pathology/lab), clinical trial reports (ICH-E3, SAE, CSR), and patient documentation (SOAP, H&P, discharge summaries). Full support with templates, regulatory compliance (HIPAA, FDA, ICH-GCP), and validation tools.

5.2K
Jan 9, 2026, 04:57 PM

hypothesis-generation

Content & Writing

by K-Dense-AI

Structured hypothesis formulation from observations. Use when you have experimental observations or data and need to formulate testable hypotheses with predictions, propose mechanisms, and design experiments to test them. Follows scientific method framework. For open-ended ideation use scientific-brainstorming; for automated LLM-driven hypothesis testing on datasets use hypogenic.

5.2K
Jan 9, 2026, 04:57 PM

iso-13485-certification

Content & Writing

by K-Dense-AI

Comprehensive toolkit for preparing ISO 13485 certification documentation for medical device Quality Management Systems. Use when users need help with ISO 13485 QMS documentation, including (1) conducting gap analysis of existing documentation, (2) creating Quality Manuals, (3) developing required procedures and work instructions, (4) preparing Medical Device Files, (5) understanding ISO 13485 requirements, or (6) identifying missing documentation for medical device certification. Also use when users mention medical device regulations, QMS certification, FDA QMSR, EU MDR, or need help with quality system documentation.

5.2K
Jan 9, 2026, 04:57 PM

market-research-reports

Content & Writing

by K-Dense-AI

Generate comprehensive market research reports (50+ pages) in the style of top consulting firms (McKinsey, BCG, Gartner). Features professional LaTeX formatting, extensive visual generation with scientific-schematics and generate-image, deep integration with research-lookup for data gathering, and multi-framework strategic analysis including Porter Five Forces, PESTLE, SWOT, TAM/SAM/SOM, and BCG Matrix.

5.2K
Jan 9, 2026, 04:57 PM

peer-review

Content & Writing

by K-Dense-AI

Structured manuscript/grant review with checklist-based evaluation. Use when writing formal peer reviews with specific criteria methodology assessment, statistical validity, reporting standards compliance (CONSORT/STROBE), and constructive feedback. Best for actual review writing, manuscript revision. For evaluating claims/evidence quality use scientific-critical-thinking; for quantitative scoring frameworks use scholar-evaluation.

5.2K
Jan 9, 2026, 04:57 PM

pytorch-lightning

Content & Writing

by K-Dense-AI

Deep learning framework (PyTorch Lightning). Organize PyTorch code into LightningModules, configure Trainers for multi-GPU/TPU, implement data pipelines, callbacks, logging (W&B, TensorBoard), distributed training (DDP, FSDP, DeepSpeed), for scalable neural network training.

5.2K
Jan 9, 2026, 04:57 PM

research-grants

Content & Writing

by K-Dense-AI

Write competitive research proposals for NSF, NIH, DOE, DARPA, and Taiwan NSTC. Agency-specific formatting, review criteria, budget preparation, broader impacts, significance statements, innovation narratives, and compliance with submission requirements.

5.2K
Jan 9, 2026, 04:57 PM

scholar-evaluation

Content & Writing

by K-Dense-AI

Systematically evaluate scholarly work using the ScholarEval framework, providing structured assessment across research quality dimensions including problem formulation, methodology, analysis, and writing with quantitative scoring and actionable feedback.

5.2K
Jan 9, 2026, 04:57 PM

scientific-writing

Content & Writing

by K-Dense-AI

Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process with (1) section outlines with key points using research-lookup then (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), for research papers and journal submissions.

5.2K
Jan 9, 2026, 04:57 PM

treatment-plans

Content & Writing

by K-Dense-AI

Generate concise (3-4 page), focused medical treatment plans in LaTeX/PDF format for all clinical specialties. Supports general medical treatment, rehabilitation therapy, mental health care, chronic disease management, perioperative care, and pain management. Includes SMART goal frameworks, evidence-based interventions with minimal text citations, regulatory compliance (HIPAA), and professional formatting. Prioritizes brevity and clinical actionability.

5.2K
Jan 9, 2026, 04:57 PM

venue-templates

Content & Writing

by K-Dense-AI

Access comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.

5.2K
Jan 9, 2026, 04:57 PM

zenml-backport

Content & Writing

by zenml-io

Backport docs/examples changes to a pre-existing ZenML release. Use when changes merged to `develop` need to be reflected in a live release version. Triggers include "backport", "cherry-pick to release", "update release docs", or when docs/examples changes need to be applied to an existing release branch.

5.1K
Jan 10, 2026, 12:32 PM

code-formatting

Content & Writing

by pollinations

Format code on the current branch using Biome. Use when asked to format, lint, or clean up code before committing or creating a PR.

5.0K
Jul 13, 2026, 04:23 PM

create-pattern

Content & Writing

by nibzard

Analyze sources (blog posts, PDFs, YouTube videos, codebases, pasted text) for agentic patterns, match against 105+ existing patterns, create new patterns or update existing with new sources and insights.

4.9K
Jan 14, 2026, 02:42 AM

by Agenta-AI

Use this skill to create and publish changelog announcements for new features, improvements, or bug fixes. This skill handles the complete workflow - creating detailed changelog documentation pages, adding sidebar announcement cards, and ensuring everything follows project standards. Use when the user mentions adding changelog entries, documenting new features, creating release notes, or announcing product updates.

4.6K
Jul 29, 2026, 07:15 PM

update-api-docs

Content & Writing

by Agenta-AI

Update the API reference documentation by downloading the latest OpenAPI spec from production and regenerating the Docusaurus API docs

4.6K
Jul 29, 2026, 07:14 PM

coding-tutor

Content & Writing

by EveryInc

Personalized coding tutorials that build on your existing knowledge and use your actual codebase for examples. Creates a persistent learning trail that compounds over time using the power of AI, spaced repetition and quizes.

4.5K
Jan 9, 2026, 04:07 PM

compound-docs

Content & Writing

by EveryInc

Capture solved problems as categorized documentation with YAML frontmatter for fast lookup

4.5K
Jan 9, 2026, 04:07 PM

creating-agent-skills

Content & Writing

by EveryInc

Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills, or understanding skill structure and best practices.

4.5K
Jan 9, 2026, 04:07 PM

every-style-editor

Content & Writing

by EveryInc

This skill should be used when reviewing or editing copy to ensure adherence to Every's style guide. It provides a systematic line-by-line review process for grammar, punctuation, mechanics, and style guide compliance.

4.5K
Jan 9, 2026, 04:07 PM

by OTRF

Research system internals and adversary tradecraft to ground a threat hunt in real system behavior and realistic abuse patterns. Use this skill at the start of hunt planning, when you are given a high-level hunt topic but lack a clear understanding of how the system normally operates or how adversaries are known to abuse it. This skill informs early hunt direction by producing candidate abuse patterns, key assumptions, and cited sources, and should be used before defining a concrete hunt hypothesis or selecting data sources.

4.4K
Jan 12, 2026, 12:17 AM

ciso-assistant-bootstrap

Content & Writing

by intuitem

Bootstrap CISO Assistant for new users by guiding them through initial setup. Use when:(1) User wants to set up CISO Assistant from scratch(2) User mentions "bootstrap", "initial setup", "getting started", or "onboarding" with CISO Assistant(3) User needs help creating their organizational structure, loading frameworks, or configuring risk assessmentsCovers: domains/folders, perimeters, industry-based framework selection, assets, risk assessment type (qualitative vs quantitative), third-party entities and solutions, and compliance vs risk focus.

4.4K
Jan 16, 2026, 11:50 AM

art

Content & Writing

by danielmiessler

Visual content generation with Excalidraw hand-drawn aesthetic. USE WHEN user wants diagrams, visualizations, comics, or editorial illustrations.

4.4K
Jan 11, 2026, 11:51 PM

createskill

Content & Writing

by danielmiessler

Create and validate skills. USE WHEN create skill, new skill, skill structure, canonicalize. SkillSearch('createskill') for docs.

4.4K
Jan 11, 2026, 11:51 PM

upgrades

Content & Writing

by danielmiessler

Track PAI upgrade opportunities. USE WHEN upgrades, improvement tracking. SkillSearch('upgrades') for docs.

4.4K
Jan 11, 2026, 11:51 PM

tanstack-router-migration

Content & Writing

by redpanda-data

Migrate React applications from React Router to TanStack Router with file-based routing. Use when user requests: (1) Router migration, (2) TanStack Router setup, (3) File-based routing implementation, (4) React Router replacement, (5) Type-safe routing, or mentions 'migrate router', 'tanstack router', 'file-based routes'.

4.3K
Jan 15, 2026, 11:24 AM

doc-gen

Content & Writing

by phodal

Generate comprehensive documentation from code

4.3K
Jan 12, 2026, 12:12 AM

buck2-rule-basics

Content & Writing

by facebook

Guide users through writing their first Buck2 rule to learn fundamental concepts including rules, actions, targets, configurations, analysis, and select(). Use this skill when users want to learn Buck2 basics hands-on or need help understanding rule writing.

4.2K
Jan 11, 2026, 03:28 AM

tdd-migrate

Content & Writing

by parcadei

TDD workflow for migrations - orchestrate agents, zero main context growth

3.9K
Jan 14, 2026, 10:54 AM

tdd-migration-pipeline

Content & Writing

by parcadei

Orchestrator-only workflow for migrating/rewriting codebases with full TDD and agent delegation

3.9K
Jan 14, 2026, 10:54 AM

session-investigator

Content & Writing

by evalstate

Investigate fast-agent session and history files to diagnose issues. Use when a session ended unexpectedly, when debugging tool loops, when correlating sub-agent traces with main sessions, or when analyzing conversation flow and timing. Covers session.json metadata, history JSON format, message structure, tool call/result correlation, and common failure patterns.

3.9K
Jul 22, 2026, 08:05 PM

documentation

Content & Writing

by EpicenterHQ

Technical writing, README guidelines, and punctuation rules. Use when writing documentation, READMEs, technical articles, or any prose that should avoid AI-generated feel.

3.9K
Jan 11, 2026, 04:33 AM

readme-writing

Content & Writing

by EpicenterHQ

Guidelines for writing folder READMEs. Use when creating README.md files for directories.

3.9K
Jan 11, 2026, 04:33 AM

positron-intake-rotation

Content & Writing

by posit-dev

This skill should be used when handling issue intake rotation duties for the Positron repository. It provides workflows for reviewing and organizing new issues, responding to discussions, handling support tickets, and searching for related content. Use this skill when on intake rotation duty, when helping someone with intake tasks, or when learning the intake rotation process.

3.9K
Jan 12, 2026, 04:37 AM

positron-issue-creator

Content & Writing

by posit-dev

This skill should be used when drafting GitHub issues for the Positron repository. It provides workflows for searching duplicates, selecting appropriate labels, gathering complete context through questioning, and writing terse, fluff-free issues that precisely describe what is needed or wrong. The skill prepares issues for manual submission by the user. Use this skill when the user asks to draft or prepare an issue for Positron.

3.9K
Jan 12, 2026, 04:37 AM

positron-notebooks

Content & Writing

by posit-dev

This skill should be used when developing, debugging, or maintaining Positron Notebooks - the React-based feature-flagged notebook editor. Load this skill when tasks involve notebook cells, execution, selection state, context keys, or notebook editor features.

3.9K
Jan 12, 2026, 04:37 AM

positron-qa-verify

Content & Writing

by posit-dev

Generates clear, actionable verification guides for QA testing of Positron bug fixes and features

3.9K
Jan 12, 2026, 04:37 AM

update-pr-body

Content & Writing

by allenai

Update the body of a GitHub pull request. Use when the user asks to update, edit, or modify a PR description/body.

3.9K
Feb 5, 2026, 06:05 PM

skill-creator

Content & Writing

by MoonshotAI

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Kimi's capabilities with specialized knowledge, workflows, or tool integrations.

3.8K
Jan 9, 2026, 02:45 PM

docs-sync

Content & Writing

by openai

Analyze main branch implementation and configuration to find missing, incorrect, or outdated documentation in docs/. Use when asked to audit doc coverage, sync docs with code, or propose doc updates/structure changes. Only update English docs (docs/src/content/docs/**) and never touch translated docs under docs/src/content/docs/ja, ko, or zh. Provide a report and ask for approval before editing docs.

3.7K
Feb 3, 2026, 10:02 AM

test-coverage-improver

Content & Writing

by openai

Improve test coverage in the OpenAI Agents JS monorepo: run `pnpm test:coverage`, inspect coverage artifacts, identify low-coverage files and branches, propose high-impact tests, and confirm with the user before writing tests.

3.7K
Feb 3, 2026, 10:02 AM