Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,474
总 Skills
91.3M
总安装量
2,583
贡献者
# Skill 仓库 描述 安装量
16701 job-application-optimizer erichowens/some_claude_skills
Job Application Optimizer Tailor your job application materials and prepare for interviews with AI-powered optimization. Instructions When a user needs help with job applications: Identify Task Type : Resume tailoring for specific job Cover letter generation Interview preparation Skills gap analysis Application strategy Gather Information : From User : Current resume (text or structured format) Target job posting (full description) LinkedIn profile (optional) Career goals and preferences Specifi...
63
16702 groove-admin-doctor andreadellacorte/groove
groove-admin-doctor Outcome All groove sub-skill health checks are run and a consolidated summary is reported. User knows exactly what is working, what is misconfigured, and what action to take for any failure. Acceptance Criteria /groove-utilities-task-doctor and /groove-utilities-memory-doctor are run Companion skill presence is checked directly Results are shown per sub-skill with pass/fail per check Overall status is shown: all healthy, or N issues found Each failure includes a specific reme...
63
16703 wiki-page-writer sickn33/antigravity-awesome-skills
Wiki Page Writer You are a senior documentation engineer that generates comprehensive technical documentation pages with evidence-based depth. When to Activate User asks to document a specific component, system, or feature User wants a technical deep-dive with diagrams A wiki catalogue section needs its content generated Depth Requirements (NON-NEGOTIABLE) TRACE ACTUAL CODE PATHS — Do not guess from file names. Read the implementation. EVERY CLAIM NEEDS A SOURCE — File path + function/class name...
63
16704 godot-ui-containers thedivergentai/gd-agentic-skills
UI Containers Container auto-layout, size flags, anchors, and split ratios define responsive UI systems. Available Scripts responsive_layout_builder.gd Expert container builder with breakpoint-based responsive layouts. responsive_grid.gd Auto-adjusting GridContainer that changes column count based on available width. Essential for responsive inventory screens and resizing windows. NEVER Do in UI Containers NEVER set child position/size manually in Container — child.position = Vector2(10, 10) ins...
63
16705 technical-specification secondsky/claude-skills
Create comprehensive technical specifications that define system requirements, architecture, implementation details, and acceptance criteria for software projects. When to Use - Feature specifications - System design documents - Requirements documentation (PRD) - Architecture decision records (ADR) - Technical proposals - RFC (Request for Comments) - API design specs - Database schema designs Technical Specification Template ``` Technical Specification: [Feature Name] Document Sta...
63
16706 jupyter openhands/skills
Jupyter Notebook Guide Notebooks are JSON files. Cells are in nb['cells'], each has source (list of strings) and cell_type ('code', 'markdown', or 'raw'). Modifying Notebooks import json with open('notebook.ipynb') as f: nb = json.load(f) Modify nb['cells'][i]['source'], then: with open('notebook.ipynb', 'w') as f: json.dump(nb, f, indent=1) Executing & Converting jupyter nbconvert --to notebook --execute --inplace notebook.ipynb Execute in place jupyter nbconvert --to html noteboo...
63
16707 devops-expert cin12211/orca-q
DevOps Expert You are an advanced DevOps expert with deep, practical knowledge of CI/CD pipelines, containerization, infrastructure management, monitoring, security, and performance optimization based on current industry best practices. When invoked: If the issue requires ultra-specific expertise, recommend switching and stop: Docker container optimization, multi-stage builds, or image management → docker-expert GitHub Actions workflows, matrix builds, or CI/CD automation → github-actions-ex...
63
16708 code formatting openshift/hypershift
Code Quality, Formatting and Conventions Code Formatting and Linting Use make lint-fix after writing Go code to automatically fix most linting issues Run make verify to verify both linting and tests pass before committing For markdown files , use make verify-codespell to catch spelling errors Test Conventions - MANDATORY NON-NEGOTIABLE RULE : Every Go test name MUST follow this exact format: name : "When <condition>, it should <expected behavior>" Examples: name : "When NodePool has valid image ...
63
16709 go-testing autumnsgrove/groveengine
Go Testing Guidelines for writing clear, maintainable Go tests following Google's style. Useful Test Failures Normative: Test failures must be diagnosable without reading the test source. Every failure message should include: What caused the failure The function inputs The actual result (got) The expected result (want) Failure Message Format Use the standard format: YourFunc(%v) = %v, want %v // Good: if got := Add(2, 3); got != 5 { t.Errorf("Add(2, 3) = %d, want %d", got, 5) } // Ba...
63
16710 docx jim60105/copilot-prompt
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
63
16711 vueuse-components-skilld harlan-zw/vue-ecosystem-skills
vueuse/vueuse @vueuse/components Renderless components for VueUse Version: 14.2.1 (Feb 2026) Deps: @vueuse/shared@14.2.1, @vueuse/core@14.2.1 Tags: next: 5.0.0 (Jun 2021), alpha: 14.0.0-alpha.3 (Sep 2025), beta: 14.0.0-beta.1 (Sep 2025), latest: 14.2.1 (Feb 2026) References: Docs — API reference, guides API Changes This section documents version-specific API changes for @vueuse/components — prioritize recent major/minor releases. BREAKING: @vueuse/components v14+ requires Vue 3.5+, following cor...
63
16712 release max-sixty/worktrunk
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
63
16713 powershell-security-hardening 404kidwiz/claude-supercode-skills
PowerShell Security Hardening Purpose Provides expertise in Windows security hardening and PowerShell security configuration. Specializes in securing automation scripts, implementing Just Enough Administration (JEA), enforcing least privilege, and aligning with enterprise security baselines. When to Use Configuring PowerShell security policies Implementing Constrained Language Mode Setting up Just Enough Administration (JEA) Enabling PowerShell logging and auditing Securing automation credenti...
63
16714 uv-run laurigates/claude-plugins
Run Python scripts with uv - no manual venv activation needed. Core Capabilities - Direct execution: `uv run script.py` handles environment automatically - Temporary dependencies: `uv run --with requests script.py` for one-off needs - Inline dependencies: PEP 723 metadata blocks for self-contained scripts - Ephemeral tools: `uvx tool` runs CLI tools without installation Essential Commands Running Scripts ``` Run script (uv manages environment automatically) uv run script.py Run wit...
63
16715 jira-task gentleman-programming/gentleman-skills
When to Use Use this skill when creating Jira tasks for: Bug reports Feature requests Refactoring tasks Documentation tasks Multi-Component Work: Split into Multiple Tasks IMPORTANT: When work requires changes in multiple components (API, UI, SDK), create separate tasks for each component instead of one big task. Why Split? Different developers can work in parallel Easier to review and test Better tracking of progress API needs to be done before UI (dependency) Bug vs Feature: Different Stru...
63
16716 drawio-diagrams-enhanced nilecui/skillsbase
Enhanced Draw.io Diagram Creation Skill with PMP/PMBOK Integration & Visual Asset Libraries This skill enables Claude to create professional, pixel-perfect diagrams in draw.io's native XML format with enterprise-grade capabilities including project management methodologies, extensive icon libraries, and industry-standard templates. Core Capabilities 1. Standard Diagram Types Flowcharts: Basic flowcharts, decision trees, process flows Cross-Functional Flowcharts (CFF): Swimlane diagrams showing...
63
16717 string-reviewer google-gemini/gemini-cli
String Reviewer Instructions Act as a Senior UX Writer. Look for user-facing strings that are too long, unclear, or inconsistent. This includes inline text, error messages, and other user-facing text. Do NOT automatically change strings without user approval. You must only suggest changes and do not attempt to rewrite them directly unless the user explicitly asks you to do so. Core voice principles The system prioritizes deterministic clarity over conversational fluff. We provide telemetry, not ...
63
16718 godot-tilemap-mastery thedivergentai/gd-agentic-skills
TileMap Mastery TileMapLayer grids, TileSet atlases, terrain autotiling, and custom data define efficient 2D level systems. Available Scripts tilemap_data_manager.gd Expert TileMap serialization and chunking manager for large worlds. NEVER Do in TileMaps NEVER use set_cell() in loops without batching — 1000 tiles × set_cell() = 1000 individual function calls = slow. Use set_cells_terrain_connect() for bulk OR cache changes, apply once. NEVER forget source_id parameter — set_cell(pos, atlas_coord...
63
16719 b2c-slas salesforcecommercecloud/b2c-developer-tooling
B2C SLAS Skill Use the b2c CLI plugin to manage SLAS (Shopper Login and API Access Service) API clients and credentials. Important: SLAS is for shopper (customer) authentication used by storefronts and headless commerce. For admin tokens (OCAPI, Admin APIs), use b2c auth token - see b2c-config skill . Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli slas client list ). When to Use Common scenarios requiring SLAS client management: Testing ...
63
16720 swan-design autumnsgrove/groveengine
Swan Design 🦢 The swan doesn't rush. It glides across still water with purpose and grace. Each movement is deliberate. Every feather is in place. When the swan creates, it weaves technical precision with poetic vision — specs that feel like opening a beautifully illustrated field guide to the forest. When to Activate User asks to "write a spec" or "create a specification" User says "document this feature" or "design this system" User calls /swan-design or mentions swan/designing specs Creating t...
63
16721 jujutsu knoopx/pi
Jujutsu (JJ) is a Git-compatible VCS with a focus on concurrent development and ease of use. Key Commands | `jj st` | Show working copy status | `jj log` | Show change log | `jj diff` | Show changes in working copy | `jj new` | Create new change | `jj desc` | Edit change description | `jj squash` | Move changes to parent | `jj split` | Split current change | `jj rebase -s src -d dest` | Rebase changes | `jj absorb` | Move changes into stack of mutable revisions | `j...
63
16722 cloudflare-dns julianobarbosa/claude-code-skills
Cloudflare DNS Skill Complete Cloudflare DNS operations via REST API with focus on Azure integration. Overview This skill covers Cloudflare DNS management for Azure-hosted workloads, including: API token configuration and security DNS record management (A, AAAA, CNAME, TXT, MX) Proxy settings (orange/gray cloud) External-DNS integration for Kubernetes Troubleshooting and monitoring Authentication API Token (Recommended) Create scoped API tokens instead of using Global API Key: Required Per...
63
16723 groove-utilities-memory-log-weekly andreadellacorte/groove
groove-utilities-memory-log-weekly Outcome <memory>/weekly/YYYY-Www.md is created or updated with a roll-up of the week's daily files. Sections cover themes, key outcomes, and learnings — no raw detail duplication. Acceptance Criteria File exists at <memory>/weekly/YYYY-Www.md (ISO week format, e.g. 2026-W09 ) Themes section identifies recurring topics from daily entries Key outcomes section lists significant completions from the week Learnings section synthesises patterns and insights across th...
63
16724 cto-advisor shipshitdev/library
CTO Advisor Technical leadership frameworks for architecture, engineering teams, technology strategy, and technical decision-making. Keywords CTO, chief technology officer, tech debt, technical debt, architecture, engineering metrics, DORA, team scaling, technology evaluation, build vs buy, cloud migration, platform engineering, AI/ML strategy, system design, incident response, engineering culture Quick Start python scripts/tech_debt_analyzer.py Assess technical debt severity and remediation pl...
63
16725 help yonatangross/orchestkit
/help - Workspace Discovery Guide users through the capabilities of this workspace setup. Usage /help Interactive guided discovery /help workflows Workflow orchestration skills /help agents Specialist agents catalog /help tools CLI tools (tldr, prove, recall) /help hooks Active hooks and what they do /help advanced MCP, frontmatter, customization /help <name> Deep dive on specific skill/agent Behavi...
63
16726 docker-expert shipshitdev/library
Docker Expert You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices. When invoked: If the issue requires ultra-specific expertise outside Docker, recommend switching and stop: Kubernetes orchestration, pods, services, ingress → kubernetes-expert (future) GitHub Actions CI/CD with containers → ...
63
16727 query-optimization josiahsiegel/claude-plugin-marketplace
Query Optimization Comprehensive guide to T-SQL query optimization techniques. Quick Reference SARGable vs Non-SARGable Patterns Non-SARGable (Bad) SARGable (Good) WHERE YEAR(Date) = 2024 WHERE Date >= '2024-01-01' AND Date < '2025-01-01' WHERE LEFT(Name, 3) = 'ABC' WHERE Name LIKE 'ABC%' WHERE Amount * 1.1 > 1000 WHERE Amount > 1000 / 1.1 WHERE ISNULL(Col, 0) = 5 WHERE Col = 5 OR Col IS NULL WHERE VarcharCol = 123 WHERE VarcharCol = '123' Join Types Performance Join Type Best For Characteristic...
63
16728 monitoring-setup shipshitdev/library
Monitoring Setup Expert Overview This skill enables AI assistants to set up comprehensive monitoring for NestJS and Next.js applications, including Sentry for error tracking and Google Analytics for user analytics. When to Use This Skill This skill activates when users: Need to set up error tracking (Sentry) Want to configure Google Analytics Need monitoring for production applications Want to track application errors and user behavior Sentry Setup NestJS Backend Install: npm install @sentry/nod...
63
16729 jenkins checkmk/checkmk
Commands you can use to interact with Jenkins Fetch the Jenkins job results jenkins_build_data.py <Jenkins job URL> --include=stages You can download test results and console output: jenkins_build_data.py <Jenkins stage job URL> --include=console,tests In case the truncated console log does not provide enough information, download the full log jenkins_build_data.py <Jenkins stage job URL> --include=full-console in case the jenkins job/build is still BUILDING, you can poll until it is finishe...
63
16730 groove-daily-end andreadellacorte/groove
groove-daily-end Outcome The workday is wrapped up: git changes are analysed, memory files are written in order, tasks are analysed, and the end hook is executed if present. Acceptance Criteria Git memory file written at <memory>/git/YYYY-MM-DD-GIT-N.md Daily memory file written at <memory>/daily/YYYY-MM-DD.md Weekly memory file written if today is the last weekday of the week Monthly memory file written if today is the last weekday of the month Tasks are analysed and summary is included in dail...
63
16731 nx-plugins nrwl/nx
Finding and Installing new plugins List plugins: pnpm nx list Install plugins pnpm nx add <plugin> . Example: pnpm nx add @nx/react .
63
16732 eagle-architect autumnsgrove/groveengine
Eagle Architect 🦅 The eagle doesn't rush into the trees. It rises above, surveying the entire forest. From this height, patterns emerge—rivers that connect valleys, ridges that separate domains, clearings where new growth can thrive. The eagle sees not just what IS, but what COULD BE. When to Activate User asks to "design the architecture" or "plan the system" User says "how should these components interact?" or "map this out" User calls /eagle-architect or mentions eagle/architecture Planning a...
63
16733 remotion-best-practices connorads/dotfiles
When to use Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge. Captions When dealing with captions or subtitles, load the ./rules/subtitles.md file for more information. Using FFmpeg For some video operations, such as trimming videos or detecting silence, FFmpeg should be used. Load the ./rules/ffmpeg.md file for more information. Audio visualization When needing to visualize audio (spectrum bars, waveforms, bass-reactive effects), load the ./rul...
63
16734 openclaw-setup iofficeai/aionui
OpenClaw 使用专家 你是 OpenClaw 使用专家,可以帮助用户安装、部署、配置和使用 OpenClaw 个人 AI 助手。 ⚠️ 重要提示:文档时效性 当前文档基于某个历史版本编写,OpenClaw 是一个持续更新的开源项目。 优先参考最新文档 :当遇到不确定的问题时,请访问 OpenClaw GitHub 仓库 查看最新的 README 和文档 官方文档 :访问 docs.openclaw.ai 获取最新的官方文档 本技能的作用 :提供基础知识和常见操作指南,但遇到新功能或变更时,应查阅最新资料 🔍 首先:环境诊断(每次响应前必做) 在回答任何 OpenClaw 问题之前,先执行环境诊断,确认工具可以被找到: 1. 检查 AionUi 工作进程中实际可用的 PATH node -e "console.log('PATH entries:', process.env.PATH.split(require('path').delimiter).length); console.log('First 3:', process.env.PATH.split(require('p...
63
16735 peon-ping-toggle peonping/peon-ping
peon-ping-toggle Toggle peon-ping sounds on or off. Also handles any peon-ping configuration changes. Toggle sounds On Unix, run the following command using the Bash tool: bash " ${CLAUDE_CONFIG_DIR :- $HOME / .claude} " /hooks/peon-ping/peon.sh toggle On Windows, use the PowerShell tool: $claudeDir = $env :CLAUDE_CONFIG_DIR if ( -not $claudeDir -or $claudeDir -eq "" ) { $claudeDir = Join-Path $HOME ".claude" } & ( Join-Path $claudeDir "hooks/peon-ping/peon.ps1" ) toggle Report the output to the...
63
16736 umbraco-routing umbraco/umbraco-cms-backoffice-skills
Umbraco Routing What is it? Routing in Umbraco's backoffice enables navigation between sections, dashboards, and workspaces using pathname-based URLs. Sections serve as primary organizational dividers with entry points via section views, dashboards, or custom elements. Custom routing can be built using umb-router-slot with route definitions that support parameters and redirects. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/custo...
63
16737 check-vault-onchain tradingstrategy-ai/web3-ethereum-defi
Check vault onchain This script will run against a deployed smart contract and see if it detects out as one of our supported vaults. This skill will run a Python script and get you the output back. Required inputs Smart ctonract chain and address: User gives this either a link (check the page and blockchain explorer) or directly Script source Get the script source code from `scripts/erc-4626/check-vault-onchain.py Running the script Clone the script and replace spec to be the correct chain ...
63
16738 beads-workflow dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
Beads Workflow — From Plan to Actionable Tasks Core Principle: "Check your beads N times, implement once" — where N is as many as you can stomach. Beads are so detailed and polished that you can mechanically unleash a big swarm of agents to implement them, and it will come out just about perfectly. What Are Beads? Beads are epics/tasks/subtasks with dependency structure, optimized for AI coding agents. Think of them as Jira or Linear, but designed for machines. Key properties: Self-contain...
63
16739 angular-development manutej/luxor-claude-marketplace
Angular Development You are an Angular, SASS, and TypeScript expert focused on creating scalable and high-performance web applications. Key Development Principles Type Safety with Interfaces Define data models using interfaces for explicit types Maintain strict typing to avoid any Use TypeScript's type system to define specific types Component Composition Favor component composition over inheritance Enhance modularity, enabling reusability and easy maintenance Meaningful Naming Use descriptive v...
63
16740 b2c-scapi-schemas salesforcecommercecloud/b2c-developer-tooling
B2C SCAPI Schemas Skill Use the b2c CLI plugin to browse and retrieve SCAPI OpenAPI schema specifications. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli scapi schemas list ). Required: Tenant ID The --tenant-id flag is required for all commands. The tenant ID identifies your B2C Commerce instance. Important: The tenant ID is NOT the same as the organization ID: Tenant ID : zzxy_prd (used with commands that require --tenant-id ) Organiza...
63
16741 presentation-builder qodex-ai/ai-agent-skills
Presentation Builder Use slides-grab when the user needs a real slide deck artifact, not just an outline. The workflow is HTML-first: plan the deck, generate slide HTML, review visually, then export to PPTX/PDF. When to use this skill Create a presentation from a topic, document, or brief Iterate on slide design visually instead of editing raw PPT manually Export approved decks to .pptx or .pdf Maintain multi-deck workspaces under decks/<deck-name>/ Preflight Install and verify slides-grab befor...
63
16742 ticket-triage jwilger/agent-skills
Ticket Triage Skill You are an expert at rapidly categorizing, prioritizing, and routing customer support tickets. You assess issues systematically, identify urgency and impact, and ensure tickets reach the right team with the right context. Category Taxonomy Assign every ticket a primary category and optionally a secondary category : Category Description Signal Words Bug Product is behaving incorrectly or unexpectedly Error, broken, crash, not working, unexpected, wrong, failing How-to Customer...
63
16743 tailwind-4 gentleman-programming/gentleman-skills
Styling Decision Tree Tailwind class exists? → className="..." Dynamic value? → style={{ width: `${x}%` }} Conditional styles? → cn("base", condition && "variant") Static only? → className="..." (no cn() needed) Library can't use class?→ style prop with var() constants Critical Rules Never Use var() in className // ❌ NEVER: var() in className <div className="bg-[var(--color-primary)]" /> <div className="text-[var(--text-color)]" /> // ✅ ALWAYS: Use Tailwind semantic cl...
63
16744 particles-gpu bbeierle12/skill-mcp-claude
GPU Particles Render massive particle counts (10k-1M+) efficiently using GPU instancing and custom shaders. Quick Start import { useRef, useMemo } from 'react'; import { useFrame } from '@react-three/fiber'; import * as THREE from 'three'; function Particles({ count = 10000 }) { const points = useRef<THREE.Points>(null!); const positions = useMemo(() => { const pos = new Float32Array(count * 3); for (let i = 0; i < count; i++) { pos[i * 3] = (Math.random() - 0.5) * 10; ...
63
16745 fastf1 machina-sports/sports-skills
FastF1 — Formula 1 Data Quick Start Prefer the CLI — it avoids Python import path issues: sports-skills f1 get_race_schedule --year = 2025 sports-skills f1 get_race_results --year = 2025 --event = Monza Python SDK (alternative): from sports_skills import f1 schedule = f1 . get_race_schedule ( year = 2025 ) results = f1 . get_race_results ( year = 2025 , event = "Monza" ) Choosing the Year Derive the current year from the system prompt's date (e.g., currentDate: 2026-02-16 → current year is 2026)...
63
16746 podcast-to-content-suite onewave-ai/claude-skills
Podcast to Content Suite Convert podcast episodes into a complete content marketing ecosystem. When to Use This Skill Activate when the user: Provides a podcast transcript Asks to "repurpose this podcast" Wants to create content from audio Mentions podcast marketing or content distribution Needs blog posts from podcast episodes Wants social media content from podcasts Asks for podcast show notes Instructions Analyze Podcast Content Identify main topic and subtopics Extract key insights and...
63
16747 paper-self-review galaxy-dawn/claude-scholar
Paper Self-Review A systematic paper quality checking tool that helps researchers conduct comprehensive self-review before submission. Core Features 1. Structure Review Check whether all sections of the paper are complete and conform to academic standards: Does the Abstract include problem, method, results, and contributions? Does the Introduction clearly articulate research motivation and background? Is the Method detailed enough to be reproducible? Do the Results sufficiently support the concl...
63
16748 prisma-migration-assistant patricio0312rev/skills
Prisma Migration Assistant Plan and execute safe Prisma migrations with confidence. Migration Planning Workflow // 1. Update schema.prisma model User { id Int @id @default(autoincrement()) email String @unique // NEW: Split name into firstName and lastName firstName String? lastName String? // OLD: name String // Will remove this createdAt DateTime @default(now()) } // 2. Create migration // npx prisma migrate dev --name split_user_name --create-only //...
63
16749 security-ownership-map davila7/claude-code-templates
Security Ownership Map Overview Build a bipartite graph of people and files from git history, then compute ownership risk and export graph artifacts for Neo4j/Gephi. Also build a file co-change graph (Jaccard similarity on shared commits) to cluster files by how they move together while ignoring large, noisy commits. Requirements Python 3 networkx (required; community detection is enabled by default) Install with: pip install networkx Workflow Scope the repo and time window (optional --since/--u...
63
16750 diagramming-expert erichowens/some_claude_skills
Diagramming Expert Master of text-based visual communication. Proactively creates diagrams to enhance understanding of complex concepts, systems, processes, and relationships. Core Philosophy "Above all else, show the data." — Edward Tufte Diagrams should: Reduce cognitive load — not add to it Maximize signal — minimize noise (data-ink ratio) Be maintainable — easy to update as understanding evolves Work everywhere — monospace text renders universally When to Use This Skill Use for: Syste...
63