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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
25,056
总 Skills
108.4M
总安装量
2,604
贡献者
# Skill 仓库 描述 安装量
17301 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
17302 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
17303 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
17304 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
17305 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
17306 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
17307 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
17308 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
17309 x-tweet-fetch b-open-io/prompts
Get a specific tweet by URL or ID. Setup ``` export X_BEARER_TOKEN="your-token" https://developer.x.com/en/portal/dashboard ``` Usage ``` ${CLAUDE_PLUGIN_ROOT}/scripts/fetch.sh <url_or_id> ``` Examples ``` By URL ${CLAUDE_PLUGIN_ROOT}/scripts/fetch.sh "https://x.com/kurtwuckertjr/status/1234567890" By ID ${CLAUDE_PLUGIN_ROOT}/scripts/fetch.sh 1234567890 ``` Response Fields - `text` - Tweet content - `created_at` - Post timestamp - `public_metrics` - Likes, retweets, replies...
63
17310 groove-utilities-memory-doctor andreadellacorte/groove
groove-utilities-memory-doctor Outcome All memory health checks pass. User knows if the memory file structure is correctly configured and accessible. Acceptance Criteria Each check is reported with ✓ or ✗ Each failure includes a specific remediation command Checks cover memory path and directory structure Checks (run in order) .groove/index.md exists at git root memory: key is present and has a valid path Memory base path exists (e.g. .groove/memory/ ) Memory log subdirectories exist: daily/ , w...
63
17311 ddd-hexagonal-architecture teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: [待完善:根据具体工具添加使用场景] How to use this skill [待完善:根据具体工具添加使用指南] Best Practices [待完善:根据具体工具添加最佳实践] Keywords [待完善:根据具体工具添加关键词]
63
17312 writing-user-outputs max-sixty/worktrunk
Output System Architecture Shell Integration Worktrunk uses file-based directive passing for shell integration: Shell wrapper creates a temp file via mktemp Shell wrapper sets WORKTRUNK_DIRECTIVE_FILE env var to the file path wt writes shell commands (like cd '/path' ) to that file Shell wrapper sources the file after wt exits When WORKTRUNK_DIRECTIVE_FILE is not set (direct binary call), commands execute directly and shell integration hints are shown. Output Functions The output system handles ...
63
17313 testcase-generator chyax98/twu
测试用例生成器(testcase-generator) 1. 目标 根据测试点生成结构化测试用例,覆盖正向、反向、边界场景。 2. 输入输出 输入 : test-case/plan.md 、 clarified-requirements/index.md 、 CLAUDE.md 输出 : test-case/{ITEM}/{POINT}.md 、 test-case/all_cases.md 3. 核心原则 策略指导 :提供判断标准,而非强制数量 场景驱动 :基于实际场景复杂度生成用例 数据具体 :测试数据必须具体,不用占位符 可验证性 :预期结果必须明确可验证 触发条件 用户执行 /testcase-gen 命令 test-case/plan.md 存在 4. 核心理论 4.1 等价类划分法 将输入数据划分为若干等价类,从每类中选取代表性数据测试。 应用示例 : POINT: 用户名密码登录 输入项: 用户名、密码 用户名等价类: 有效: [6-20字符,字母数字下划线] → "test_user123" 无效: [<6] "ab" | [>20] "verylongusername...
63
17314 design-brief-generator jamesrochabrun/skills
Design Brief Generator Overview Generate comprehensive, well-structured design briefs that align stakeholders and guide design projects. This skill helps designers create clear project briefs that define scope, goals, constraints, and success criteria. Built for: UX/UI designers Product designers Design leads Design systems teams Brand designers Quick Start 1. Generate Design Brief Run the interactive script: scripts/generate_brief.sh This will guide you through creating a comprehensive d...
63
17315 github-copilot-cli rysweet/amplihack
GitHub Copilot CLI Expert Comprehensive knowledge of GitHub Copilot CLI installation, configuration, usage, and extensibility. Purpose This skill provides expert guidance on: Installing and updating GitHub Copilot CLI Authentication and configuration Core usage patterns and slash commands Extensibility (MCP servers, skills, custom agents) Troubleshooting common issues When I Activate Automatically when you mention: "copilot cli", "github copilot cli", "gh copilot" "install copilot", "update copi...
63
17316 laravel:routes-best-practices jpcaparas/superpowers-laravel
Keep your route files clean and focused on mapping requests to controllers. Routes should never contain business logic, validation, or database operations. Anti-Pattern: Business Logic in Routes ``` // BAD: Business logic directly in routes Route::post('/order/{order}/cancel', function (Order $order) { if ($order->status !== 'pending') { return response()->json(['error' => 'Cannot cancel'], 400); } $order->status = 'cancelled'; $order->cancelled_at = now(); $order...
63
17317 ux-friction-analyzer erichowens/some_claude_skills
UX Friction Analyzer A comprehensive skill for analyzing and optimizing user experience through cognitive psychology, ADHD-friendly design, and flow state engineering. Activation Use this skill when: Designing new interfaces or user flows Auditing existing UX for friction points Optimizing for neurodivergent users (ADHD, autism) Simulating user journeys before building Reducing cognitive load in complex applications Trigger phrases: "analyze UX", "friction audit", "user journey", "ADHD-frie...
63
17318 umbraco-extension-template umbraco/umbraco-cms-backoffice-skills
Umbraco Extension Template What is it? The Umbraco Extension Template is the official .NET template for creating backoffice extensions. It provides a pre-configured project structure with TypeScript/Vite tooling, proper folder structure, and all essential files needed for extension development. Every Umbraco backoffice extension should start with this template. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/development...
63
17319 ast-grep pproenca/dot-skills
ast-grep Code Search Overview This skill helps translate natural language queries into ast-grep rules for structural code search. ast-grep uses Abstract Syntax Tree (AST) patterns to match code based on its structure rather than just text, enabling powerful and precise code search across large codebases. When to Use This Skill Use this skill when users: Need to search for code patterns using structural matching (e.g., "find all async functions that don't have error handling") Want to locate ...
63
17320 mux-video muxinc/skills
Mux Video Platform Comprehensive guide to building video applications with Mux, the developer-first video infrastructure platform. This skill covers video streaming, live streaming, player integrations, analytics with Mux Data, and AI-powered workflows. Whether you are building a video-on-demand platform, live streaming application, or integrating video into an existing product, this documentation provides the patterns and code examples needed to ship quickly. Key Capabilities Video Hosting an...
63
17321 justfile-expert laurigates/claude-plugins
Expert knowledge for Just command runner, recipe development, and task automation with focus on cross-platform compatibility and project standardization. Core Expertise Command Runner Mastery - Justfile syntax and recipe structure - Cross-platform task automation (Linux, macOS, Windows) - Parameter handling and argument forwarding - Module organization for large projects Recipe Development Excellence - Recipe patterns for common operations - Dependency management between recipes - She...
63
17322 agent-slackbot devxoul/agent-messenger
Agent SlackBot A TypeScript CLI tool that enables AI agents and humans to interact with Slack workspaces using bot tokens (xoxb-). Unlike agent-slack which extracts user tokens from the desktop app, agent-slackbot uses standard Slack Bot tokens for server-side and CI/CD integrations. Quick Start Set your bot token agent-slackbot auth set xoxb-your-bot-token Or set with a custom bot identifier for multi-bot setups agent-slackbot auth set xoxb-your-bot-token --bot deploy --name "Deploy Bot" Ver...
63
17323 00-andruia-consultant sickn33/antigravity-awesome-skills
When to Use Use this skill at the very beginning of a project to diagnose the workspace, determine whether it's a "Pure Engine" (new) or "Evolution" (existing) project, and to set the initial technical roadmap and expert squad. 🤖 Andru.ia Solutions Architect - Hybrid Engine (v2.0) Description Soy el Arquitecto de Soluciones Principal y Consultor Tecnológico de Andru.ia. Mi función es diagnosticar el estado actual de un espacio de trabajo y trazar la hoja de ruta óptima, ya sea para una creación ...
63
17324 groove-utilities-task-archive andreadellacorte/groove
groove-utilities-task-archive Outcome All completed and scrapped tasks are archived in the configured backend. The count of archived tasks is reported to the user. Acceptance Criteria All completed/scrapped tasks are moved to archived state in backend User is shown the scope of what will be archived and confirms before running Count of archived tasks is reported after completion Constraints Read tasks: from .groove/index.md to determine backend If tasks: none , no-op with friendly message Always...
63
17325 lore-creation-starting-skill skogai/lore
The lore system stores knowledge as mythology - not dry documentation, but stories that compress meaning and context into memorable narrative form. Every commit can become a chronicle entry, every bug fix a tale of battle. <essential_principles> 1. Three Atomic Units All lore is composed of three JSON structures: Entry - Atomic narrative unit (the story itself) Book - Collection of entries (chronicles, themed collections) Persona - AI character who narrates (voice, traits, perspective) 2. Narrat...
63
17326 skogai-jq skogai/lore
jq-transforms Overview jq-transforms is a schema-driven JSON transformation library built specifically for AI agents. It provides 60+ composable transformations for JSON manipulation, each with clear input/output contracts, comprehensive tests, and minimal implementations. The library emphasizes discoverability through schemas and composability through Unix pipes. When to Use This Skill Use this skill when: Transforming JSON data structures (CRUD operations, nested paths) Filtering or mapping ar...
63
17327 anthropic-prompt-engineer jamesrochabrun/skills
Anthropic Prompt Engineer Master the art and science of prompt engineering with Anthropic's proven techniques. Generate new prompts from scratch or improve existing ones using best practices for Claude AI models (Claude 4.x, Sonnet, Opus, Haiku). What This Skill Does Helps you create and optimize prompts for Claude AI using Anthropic's official techniques: Generate new prompts - Build effective prompts from requirements Improve existing prompts - Optimize prompts for better results Apply bes...
63
17328 qa-test-planner zixun-github/aisdlc
QA Test Planner A comprehensive skill for QA engineers to create test plans, generate manual test cases, build regression test suites, validate designs against Figma, and document bugs effectively. Activation: This skill is triggered only when explicitly called by name (e.g., /qa-test-planner , qa-test-planner , or use the skill qa-test-planner ). Quick Start Create a test plan: "Create a test plan for the user authentication feature" Generate test cases: "Generate manual test cases for the chec...
63
17329 agent-canvas whq25/agent-canvas
Agent Canvas A CLI tool to interact with an Excalidraw canvas for creating diagrams and visualizations. Installation Before using, check if CLI is installed: which agent-canvas && agent-canvas --version If not installed: Ask the user which package manager they prefer (bun or npm), then install: bun add -g @agent-canvas/cli@0.6.0 or npm install -g @agent-canvas/cli@0.6.0 If installed but version differs from 0.5.1: Upgrade using the same package manager: Path contains .bun → bun add -g...
63
17330 pr-walkthrough tldraw/tldraw
PR Walkthrough Create a local static HTML/CSS/JavaScript walkthrough that orients a reviewer to the current branch's pull request as four separate interactive D3 views. The walkthrough should help the reviewer understand the affected code and the PR from four distinct views: System overview view : a concise standalone code overview for the subsystem touched by the PR. It should not feel like a graph. Present it as a small set of expanded component cards that give the reviewer just enough archite...
63
17331 rust-cli-builder davila7/claude-code-templates
Rust CLI Tool Builder When to use Use this skill when you need to: Scaffold a new Rust CLI tool from scratch with clap Add subcommands to an existing CLI application Implement config file loading (TOML/JSON/YAML) Set up proper error handling with anyhow/thiserror Add colored and formatted terminal output Structure a CLI project for distribution via cargo install or GitHub releases Phase 1: Explore (Plan Mode) Enter plan mode. Before writing any code, explore the existing project: If extending an...
63
17332 nuxt-core secondsky/claude-skills
Nuxt 4 Core Fundamentals Project setup, configuration, routing, SEO, and error handling for Nuxt 4 applications. Quick Reference Version Requirements Package Minimum Recommended nuxt 4.0.0 4.2.x vue 3.5.0 3.5.x nitro 2.10.0 2.12.x vite 6.0.0 6.2.x typescript 5.0.0 5.x Key Commands Create new project bunx nuxi@latest init my-app Development bun run dev Build for production bun run build Preview production build bun run preview Type checking bun run postinstall Generates .nuxt directo...
63
17333 1k-architecture onekeyhq/app-monorepo
OneKey Architecture Overview Platform Structure apps/desktop/ - Electron desktop app (Windows, macOS, Linux) apps/mobile/ - React Native mobile app (iOS, Android) apps/ext/ - Browser extension (Chrome, Firefox, Edge, Brave) apps/web/ - Progressive web application apps/web-embed/ - Embeddable wallet components Core Packages packages/core/ - Blockchain protocol implementations, cryptography, hardware wallet communication packages/kit/ - Application logic, state management, API integrations package...
63
17334 makefile itechmeat/llm-code
Guidance for creating and maintaining GNU Make build automation. Quick Navigation | Rules, prerequisites, targets | [syntax.md](https://github.com/itechmeat/llm-code/blob/main/skills/makefile/references/syntax.md) | Variable types and assignment | [variables.md](https://github.com/itechmeat/llm-code/blob/main/skills/makefile/references/variables.md) | Built-in functions | [functions.md](https://github.com/itechmeat/llm-code/blob/main/skills/makefile/references/functions.md) | Special...
63
17335 reactflow-fundamentals thebushidocollective/han
React Flow Fundamentals Build customizable node-based editors and interactive diagrams with React Flow. This skill covers core concepts, setup, and common patterns for creating flow-based interfaces. Installation npm npm install @xyflow/react pnpm pnpm add @xyflow/react yarn yarn add @xyflow/react Basic Setup import { useCallback } from 'react' ; import { ReactFlow , useNodesState , useEdgesState , addEdge , Background , Controls , MiniMap , type Node , type Edge , type OnConnect , } from '@x...
63
17336 spec-driven adeonir/agent-skills
Spec-Driven Development Structured development workflow: Initialize -> Plan -> Tasks -> Implement + Validate. Workflow initialize --> plan --> tasks --> implement --> validate --> archive Project Structure .artifacts/ ├── features/ │ └── {ID}-{name}/ │ ├── spec.md WHAT: Requirements │ ├── plan.md HOW: Architecture │ └── tasks.md WHEN: Tasks └── research/ Research cache (lazy) └── {topic}.md docs/ └── features/ └── {name}.md ...
63
17337 b2c-isml salesforcecommercecloud/b2c-developer-tooling
ISML Skill This skill guides you through creating and working with ISML (Isomorphic Markup Language) templates in Salesforce B2C Commerce. ISML templates combine HTML with dynamic server-side tags. Overview ISML templates are server-side templates that generate HTML. They use special tags prefixed with is and expressions in ${...} syntax to embed dynamic content. File Location Templates reside in the cartridge's templates directory: /my-cartridge /cartridge /templates /default ...
63
17338 groove-admin-install andreadellacorte/groove
groove-admin-install Outcome All groove backends are installed in dependency order, groove-wide companion skills are installed, AGENTS.md contains the session bootstrap, and the repo is ready for use. Acceptance Criteria Task and memory backends installed Companion skills installed (find-skills, agent-browser, pdf-to-markdown) AGENTS.md contains the <!-- groove:prime:start --> session bootstrap AGENTS.md contains a <!-- groove:task:start --> stub (if tasks: beans ) User sees a summary of what wa...
63
17339 lead-research-assistant davepoon/buildwithclaude
Lead Research Assistant This skill helps you identify and qualify potential leads for your business by analyzing your product/service, understanding your ideal customer profile, and providing actionable outreach strategies. When to Use This Skill Finding potential customers or clients for your product/service Building a list of companies to reach out to for partnerships Identifying target accounts for sales outreach Researching companies that match your ideal customer profile Preparing for bus...
63
17340 postgres-query civitai/civitai
PostgreSQL Query Testing Use this skill to run ad-hoc PostgreSQL queries for testing, debugging, and performance analysis. Running Queries Use the included query script: node .claude/skills/postgres-query/query.mjs "SELECT * FROM \"User\" LIMIT 5" Options Flag Description --explain Run EXPLAIN ANALYZE on the query --writable Use primary database instead of read replica (requires user permission) --timeout <s>, -t Query timeout in seconds (default: 30) --file, -f Read query from a file --jso...
63
17341 perf-astro tech-leads-club/agent-skills
Astro Performance Playbook Astro-specific optimizations for 95+ Lighthouse scores. Quick Setup npm install astro-critters @playform/compress // astro.config.mjs import { defineConfig } from 'astro/config' import critters from 'astro-critters' import compress from '@playform/compress' export default defineConfig ( { integrations : [ critters ( ) , compress ( { CSS : true , HTML : true , JavaScript : true , Image : false , SVG : false , } ) , ] , } ) Integrations astro-critters Automatically extra...
63
17342 nuxt-server secondsky/claude-skills
Nuxt 4 Server Development Server routes, API patterns, and backend development with Nitro. Quick Reference File-Based Server Routes server/ ├── api/ API endpoints (/api/*) │ ├── users/ │ │ ├── index.get.ts → GET /api/users │ │ ├── index.post.ts → POST /api/users │ │ ├── [id].get.ts → GET /api/users/:id │ │ ├── [id].put.ts → PUT /api/users/:id │ │ └── [id].delete.ts → DELETE /api/users/:id │ └── health.get.ts → GET...
63
17343 testing-python jlowin/fastmcp
Writing Effective Python Tests Core Principles Every test should be atomic, self-contained, and test single functionality. A test that tests multiple things is harder to debug and maintain. Test Structure Atomic unit tests Each test should verify a single behavior. The test name should tell you what's broken when it fails. Multiple assertions are fine when they all verify the same behavior. Good: Name tells you what's broken def test_user_creation_sets_defaults(): user = User(name="Alic...
63
17344 optimizing-performance cloudai-x/claude-workflow-v2
Optimizing Performance When to Load Trigger : Diagnosing slowness, profiling, caching strategies, reducing load times, bundle size optimization Skip : Correctness-focused work where performance is not a concern Performance Optimization Workflow Copy this checklist and track progress: Performance Optimization Progress: - [ ] Step 1: Measure baseline performance - [ ] Step 2: Identify bottlenecks - [ ] Step 3: Apply targeted optimizations - [ ] Step 4: Measure again and compare - [ ] Step 5: Repea...
63
17345 tauri epicenterhq/epicenter
Tauri Desktop Framework Skill File Organization This skill uses a split structure for HIGH-RISK requirements: SKILL.md: Core principles, patterns, and essential security (this file) references/security-examples.md: Complete CVE details and OWASP implementations references/advanced-patterns.md: Advanced Tauri patterns and plugins references/threat-model.md: Attack scenarios and STRIDE analysis Validation Gates Gate 0.1: Domain Expertise Validation Status: PASSED Expertise Areas: IPC security, c...
63
17346 rnv aaarnv/claude-skills
Chain-of-Verification (CoVe) System You are operating in CoVe Mode - a rigorous verification framework that separates generation from verification to eliminate hallucinations and subtle errors. Core Principle "LLM-assisted code review, not LLM-generated code." Generation is cheap. Verification is where correctness lives. THE 4-STAGE COVE PROTOCOL When given ANY task, you MUST execute all 4 stages in order: ═══════════════════════════════════════════════════════════════ STAGE 1: INITIAL SOLUTION ...
63
17347 1k-git-workflow onekeyhq/app-monorepo
OneKey Git Usage Guidelines Branch Management Main branch: x - This is the primary development branch Workflow: x → create feature branch → develop → PR back to x Do not use onekey, master, or main as the base branch - always use x NEVER work directly on the x branch → ALWAYS create feature branches Branch Naming Feature branches: feat/description or feature/description Bug fixes: fix/description Refactoring: refactor/description Commit Message Format Use Conventional Commits format: feat: - N...
63
17348 saas-architect sitechfromgeorgia/georgian-distribution-system
SaaS Architect - Next.js + Supabase Edition Purpose This skill transforms SaaS ideas into executable technical architectures optimized for Next.js 15 + Supabase stack. It provides comprehensive planning covering database design, authentication flows, subscription logic, file structure, and realistic development timelines for solo developers building subscription products. Core Philosophy 1. Subscription-First Architecture Design for recurring revenue from day one Plan for multiple pricing tier...
63
17349 grove-spec-writing autumnsgrove/groveengine
Grove Spec Writing A comprehensive guide for writing technical specifications in the Grove ecosystem. Use this skill to create new specs that feel like storybook entries, or to validate and standardize existing specs. When to Activate Creating a new technical specification Reviewing an existing spec for completeness Adding ASCII art headers to specs missing them Adding diagrams, mockups, or visual elements to text-heavy specs Standardizing frontmatter across spec files Validating a spec against ...
63
17350 textual-builder ypares/agent-skills
This skill helps you build sophisticated Text User Interfaces (TUIs) using Textual, a Python framework for creating terminal and browser-based applications with a modern web-inspired API. It includes reference documentation, a card game template, and best practices for Textual development. Quick Start Basic Textual App ``` from textual.app import App, ComposeResult from textual.widgets import Header, Footer, Label class MyApp(App): def compose(self) -> ComposeResult: yield Head...
63