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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
16801 health-coach h1an1/health-coach
Health Coach A clinical-grade personal health management skill. Provides nutritional analysis, medical marker interpretation, exercise programming, and longitudinal health tracking. Setup On first use, initialize a user health profile: Copy config/profile.template.md → user workspace as health/profile.md Copy config/goals.template.md → user workspace as health/goals.md Copy config/reminders.template.md → user workspace as health/reminders.md Create health/logs/ directory for daily logs All perso...
55
16802 godot-skill-judge thedivergentai/gd-agentic-skills
Skill Judge The Guardian of Quality. Responsibilities Existence Check : Ensure every skill folder has a SKILL.md . Metadata Validation : Ensure SKILL.md has valid YAML frontmatter with name and description . Script Validation : Scan all .gd files and check for basic parsing errors. Godot 4 Compatibility : Scan for banned Godot 3 keywords ( move_and_slide(vec) , rotation_degrees vector usage errors, etc). Available Scripts skill_validator.gd The core validation engine. Can be run as an EditorScri...
55
16803 swift-concurrency-expert steipete/agent-scripts
Swift Concurrency Expert Overview Review and fix Swift Concurrency issues in Swift 6.2+ codebases by applying actor isolation, Sendable safety, and modern concurrency patterns with minimal behavior changes. Workflow 1. Triage the issue Capture the exact compiler diagnostics and the offending symbol(s). Check project concurrency settings: Swift language version (6.2+), strict concurrency level, and whether approachable concurrency (default actor isolation / main-actor-by-default) is enabled. Id...
55
16804 ln-712-nuget-upgrader levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-710-dependency-upgrader Upgrades .NET NuGet packages with automatic breaking change detection and migration. Overview | Input | Solution/project path | Output | Updated .csproj files, migration report | Supports | .NET 6, 7, 8, 9, 10 Workflow See [diagram.html](https://github.com/levnikolaevich/claude-code-skills/blob/main/ln-712-nuget-upgrader/diagram.html) for visual workflow. Phases: Pre-flight → Find Projects → Securi...
55
16805 architecture-design swiftyjourney/architecture-design-skill
Architecture & Design Principles Skill Transform codebases into maintainable, testable, and scalable architectures using Clean Architecture principles, SOLID design patterns, and industry best practices from the Essential Developer methodology. Overview This skill guides you through a structured 5-step process to: Analyze Requirements → Identify components, responsibilities, and boundaries Apply SOLID Principles → Design with SRP, OCP, LSP, ISP, DIP Define Clean Architecture → Establish layers, ...
55
16806 api-versioning-strategy secondsky/claude-skills
API Versioning Strategy Overview Comprehensive guide to API versioning approaches, deprecation strategies, backward compatibility techniques, and migration planning for REST APIs, GraphQL, and gRPC services. When to Use Designing new APIs with versioning from the start Adding breaking changes to existing APIs Deprecating old API versions Planning API migrations Ensuring backward compatibility Managing multiple API versions simultaneously Creating API documentation for different versions Implem...
55
16807 course creator eddiebe147/claude-settings
Course Creator Design educational courses and curriculum with learning objectives and assessments When to Use This Skill Use this skill when you need to: Create compelling written content Develop clear messaging and communication Structure information effectively Not recommended for: Tasks requiring technical implementation complex data analysis Quick Reference Action Command/Trigger Create course creator create course Review and optimize review course creator Get best practices course creator b...
55
16808 bun drizzle integration secondsky/claude-skills
Drizzle ORM provides type-safe database access with Bun's SQLite driver. Quick Start ``` bun add drizzle-orm bun add -D drizzle-kit ``` Schema Definition ``` // src/db/schema.ts import { sqliteTable, text, integer } from "drizzle-orm/sqlite-core"; export const users = sqliteTable("users", { id: integer("id").primaryKey({ autoIncrement: true }), name: text("name").notNull(), email: text("email").notNull().unique(), createdAt: integer("created_at", { mode: "timestamp" }) .notNu...
55
16809 pytest prowler-cloud/prowler
pytest - Professional Python Testing Overview pytest is the industry-standard Python testing framework, offering powerful features like fixtures, parametrization, markers, plugins, and seamless integration with FastAPI, Django, and Flask. It provides a simple, scalable approach to testing from unit tests to complex integration scenarios. Key Features: Fixture system for dependency injection Parametrization for data-driven tests Rich assertion introspection (no need for self.assertEqual) Plugi...
55
16810 code-semantic-search oimiragieo/agent-studio
Code Semantic Search Overview Semantic code search using Phase 1 vector embeddings and Phase 2 hybrid search (semantic + structural). Find code by meaning, not just keywords. Core principle: Search code by what it does, not what it's called. Phase 2: Hybrid Search This skill now supports three search modes: Hybrid (Default) : Combines semantic + structural search Best accuracy (95%+) Slightly slower but still <150ms Recommended for all searches Semantic-Only : Uses only Phase 1 semantic vectors ...
55
16811 segment-anything-model orchestra-research/ai-research-skills
Segment Anything Model (SAM) Comprehensive guide to using Meta AI's Segment Anything Model for zero-shot image segmentation. When to use SAM Use SAM when: Need to segment any object in images without task-specific training Building interactive annotation tools with point/box prompts Generating training data for other vision models Need zero-shot transfer to new image domains Building object detection/segmentation pipelines Processing medical, satellite, or domain-specific images Key feature...
55
16812 weights-and-biases orchestra-research/ai-research-skills
Weights & Biases: ML Experiment Tracking & MLOps When to Use This Skill Use Weights & Biases (W&B) when you need to: Track ML experiments with automatic metric logging Visualize training in real-time dashboards Compare runs across hyperparameters and configurations Optimize hyperparameters with automated sweeps Manage model registry with versioning and lineage Collaborate on ML projects with team workspaces Track artifacts (datasets, models, code) with lineage Users: 200,000+ ML practitioners...
55
16813 general-writing z0gsh1u/oh-my-writing-skill
你是一个专业的内容创作助手,负责整合各类素材,创作高质量的图文内容。 核心能力 - 用户需求确认:通过交互明确文章立场、受众、风格 - 素材整合:整合研究资料、配图等素材 - 结构化写作:产出清晰、有逻辑的文章结构 - 中间体产出:生成标准化格式,便于后续平台转换 工作流程 阶段 1:素材收集 根据选题,调用相关 Skill 收集素材: 1.1 深度研究 使用 [深度研究 Skill](https://github.com/z0gsh1u/oh-my-writing-skill/blob/main/.claude/skills/general-writing/../deep-research/SKILL.md) 收集背景资料: ``` python .claude/skills/deep-research/scripts/research.py "选题关键词" --max_results 20 --output research.md ``` 1.2 图片搜索 使用 [图片搜索 Skill](https://github.com/z0gsh1u/o...
55
16814 chaos-engineering-resilience proffesor-for-testing/agentic-qe
Chaos Engineering & Resilience Testing <default_to_action> When testing system resilience or injecting failures: DEFINE steady state (normal metrics: error rate, latency, throughput) HYPOTHESIZE system continues in steady state during failure INJECT real-world failures (network, instance, disk, CPU) OBSERVE and measure deviation from steady state FIX weaknesses discovered, document runbooks, repeat Quick Chaos Steps: Start small: Dev → Staging → 1% prod → gradual rollout Define clear rollbac...
55
16815 moai-workflow-loop modu-ai/moai-adk
Ralph Engine Automated feedback loop system integrating LSP diagnostics, AST-grep security scanning, and test validation for continuous code quality improvement. Quick Reference Core Capabilities: LSP Integration: Real-time diagnostics from language servers AST-grep Scanning: Structural code analysis and security checks Feedback Loop: Iterative error correction until completion conditions met Hook System: PostToolUse and Stop hooks for seamless Claude Code integration Key Components: post_...
55
16816 typescript-best-practices ofershap/typescript-best-practices
TypeScript Best Practices Pair with React Best Practices When working with React components (.tsx, .jsx files or @react imports), always load react-best-practices alongside this skill. This skill covers TypeScript fundamentals; React-specific patterns (effects, hooks, refs, component design) are in the dedicated React skill. Type-First Development Types define the contract before implementation. Follow this workflow: Define the data model - types, interfaces, and schemas first Define functio...
55
16817 letta-api-client letta-ai/skills
Letta API Client Skill Build applications on top of the Letta API — a model-agnostic, stateful API for building persistent agents with memory and long-term learning. The Letta API powers Letta Code and the Learning SDK . This skill covers the core patterns for creating agents, managing memory, building custom tools, and handling multi-user scenarios. When to Use This Skill Building applications that need persistent, stateful AI agents Creating chatbots, assistants, or autonomous agents with memo...
55
16818 ln-710-dependency-upgrader levnikolaevich/claude-code-skills
ln-710-dependency-upgrader Type: L2 Domain Coordinator Category: 7XX Project Bootstrap Parent: ln-700-project-bootstrap Coordinates dependency upgrades by detecting package managers and delegating to appropriate L3 workers. Overview Aspect Details Input Detected stack from ln-700 Output All dependencies upgraded to latest compatible versions Workers ln-711 (npm), ln-712 (nuget), ln-713 (pip) Workflow See diagram.html for visual workflow. Phases: Pre-flight → Detect → Security Audit → Delega...
55
16819 messaging-agents letta-ai/letta-code
Messaging Agents This skill enables you to send messages to other agents on the same Letta server using the thread-safe conversations API. When to Use This Skill You need to ask another agent a question You want to query an agent that has specialized knowledge You need information that another agent has in their memory You want to coordinate with another agent on a task What the Target Agent Can and Cannot Do The target agent CANNOT: Access your local environment (read/write files in your codeba...
55
16820 d3js-visualization bbeierle12/skill-mcp-claude
D3.js Visualization Core Concepts Selection and Data Binding // Select elements const svg = d3.select('chart') .append('svg') .attr('width', width) .attr('height', height); // Bind data to elements svg.selectAll('rect') .data(data) .join('rect') .attr('x', (d, i) => i * barWidth) .attr('y', d => height - scale(d.value)) .attr('width', barWidth - 1) .attr('height', d => scale(d.value)); Scales // Linear scale (continuous → continuous) const xScale = d3.scaleLinear() .domain(...
55
16821 string-manipulation-mastery josiahsiegel/claude-plugin-marketplace
CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Bash String Manipulation Mastery (2025) Overview Comprehensive guide to string manipulation in bash using parameter expansion, pattern matching, regular expressions, and built-in transformations. Master these techniques to avoid spawning external processes like sed, awk, o...
55
16822 verification-before-completion oimiragieo/agent-studio
Verification Before Completion Overview Claiming work is complete without verification is dishonesty, not efficiency. Core principle: Evidence before claims, always. Violating the letter of this rule is violating the spirit of this rule. The Iron Law NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE If you haven't run the verification command in this message, you cannot claim it passes. The Gate Function BEFORE claiming any status or expressing satisfaction: 1. IDENTIFY: What command prov...
55
16823 docker-optimization pluginagentmarketplace/custom-plugin-docker
Docker Optimization Skill Comprehensive optimization techniques for Docker images and containers covering size reduction, build caching, and runtime performance. Purpose Reduce image size, improve build times, and optimize container performance using 2024-2025 industry best practices. Parameters Parameter Type Required Default Description target enum No all size/build/runtime/all base_image string No - Current base image current_size string No - Current image size Optimization Strategies 1. Imag...
55
16824 research-ideation meleantonio/awesome-econ-ai-stuff
Research Ideation Purpose This skill helps economists generate and refine research questions by applying economic thinking frameworks. It guides the process from observing phenomena to formulating testable hypotheses. When to Use Starting a new research project Brainstorming dissertation topics Finding angles for policy analysis Developing extensions of existing work Instructions Step 1: Understand the Starting Point Ask the user: Do you have a phenomenon, puzzle, or data source in mind? What fi...
55
16825 rfc-generator patricio0312rev/skills
RFC Generator Create comprehensive technical proposals with RFCs. RFC Template RFC-042: Implement Read Replicas for Analytics Status: Draft | In Review | Accepted | Rejected | Implemented Author: Alice (alice@example.com) Reviewers: Bob, Charlie, David Created: 2024-01-15 Updated: 2024-01-20 Target Date: Q1 2024 Summary Add PostgreSQL read replicas to separate analytical queries from transactional workload, improving database performance and enabling new analytics features. Problem Stat...
55
16826 socratic-teaching-scaffolds lyndonkl/claude
Socratic Teaching Scaffolds guide learners to discover knowledge through strategic questioning and progressive support removal. This skill transforms passive explanation into active discovery, corrects misconceptions by revealing contradictions, and builds durable understanding through self-generated insights. When to Use Invoke this skill when you need to: - Teach complex concepts where understanding beats memorization (algorithms, scientific theories, philosophical ideas) - Correct deep m...
55
16827 cypress-advanced thebushidocollective/han
cypress advanced Master advanced Cypress features including custom commands, plugins, and network stubbing. This skill provides comprehensive coverage of essential concepts, patterns, and best practices for professional Cypress development. Overview Cypress is a powerful tool for javascript development, providing robust capabilities for maintaining code quality and ensuring reliable software delivery. This skill covers the fundamental through advanced aspects of working with Cypress. Install...
55
16828 prd-doc-writer yunshu0909/yunshu_skillshub
PRD文档梳理提示词 你是一个顶级的、以开发者为中心的产品经理和需求工程师。但更重要的,你是用户的“伙伴”(Partner/搭子) 。你的工作方式 绝不 是单向输出,而是通过持续的提问、沟通和阶段性确认,与用户 共同构建 PRD。每一步关键进展都 必须获得用户的明确认可。 核心理念:PRD即故事集,万物皆可归于故事 故事是唯一载体 : 整个PRD的主体是一系列按逻辑顺序排列的用户故事。 故事必须自包含 : 每个故事卡片都必须包含实现该功能所需的 需求信息 ,包括业务逻辑、用户可见行为(页面/状态/提示文案)、边界约束和验收标准。执行方阅读一张卡片即可理解“用户要什么、系统应如何表现、如何验收”。 叙事逻辑高于一切 : 功能点不能孤立存在。你必须首先引导用户建立一个宏观的"用户旅程地图"或"业务主流程",然后将所有用户故事串联在这条主线上,形成一个连贯的、分阶段的开发蓝图。 视觉对齐是必须 : 对于任何涉及用户界面(UI)的用户故事, 必须 使用 ASCII 线框图 (ASCII Wireframe) 进行布局草稿的绘制与确认。纯文本描述不足以对齐视觉层面的共识,此环节是讨论UI故事的 ...
55
16829 brand-style mediar-ai/screenpipe
Screenpipe Brand Style Guide Philosophy "Black & White Geometric Minimalism" No color. Sharp corners. Clean typography. Core Values Value Description Privacy First 100% local, data never leaves your machine Open Source Inspect, modify, own Simplicity Clean, minimal interface Transparency "You own your data" Developer-Focused APIs, extensibility, power users Typography Font Stack Purpose Font Fallbacks Headings (sans) Space Grotesk system-ui, sans-serif Body (serif) Crimson Text Baskerville, Time...
55
16830 social post creator eddiebe147/claude-settings
Social Post Creator The Social Post Creator skill helps you craft engaging, platform-optimized social media posts that drive engagement and achieve your communication goals. Whether you're sharing company updates on LinkedIn, engaging with your community on Twitter/X, building brand awareness on Instagram, or driving discussion on Threads, this skill ensures your content fits the platform and resonates with your audience. This skill understands that each social platform has its own culture, form...
55
16831 lambda-labs-gpu-cloud orchestra-research/ai-research-skills
Lambda Labs GPU Cloud Comprehensive guide to running ML workloads on Lambda Labs GPU cloud with on-demand instances and 1-Click Clusters. When to use Lambda Labs Use Lambda Labs when: Need dedicated GPU instances with full SSH access Running long training jobs (hours to days) Want simple pricing with no egress fees Need persistent storage across sessions Require high-performance multi-node clusters (16-512 GPUs) Want pre-installed ML stack (Lambda Stack with PyTorch, CUDA, NCCL) Key feature...
55
16832 sentence-transformers orchestra-research/ai-research-skills
Sentence Transformers - State-of-the-Art Embeddings Python framework for sentence and text embeddings using transformers. When to use Sentence Transformers Use when: Need high-quality embeddings for RAG Semantic similarity and search Text clustering and classification Multilingual embeddings (100+ languages) Running embeddings locally (no API) Cost-effective alternative to OpenAI embeddings Metrics: 15,700+ GitHub stars 5000+ pre-trained models 100+ languages supported Based on PyTorch/Tra...
55
16833 senior-product-marketer ncklrs/startup-os-skills
Senior Product Marketer Expert guidance for the three pillars of SaaS product-led growth: Trial Acquisition - Getting qualified users to sign up Time to First Value - Activating users quickly to their "aha moment" Freemium to Paid Conversion - Turning free users into paying customers Philosophy Product marketing is the intersection of product, positioning, and psychology. The best product marketing: Sells the outcome, not the feature - Users don't want software; they want results Reduces frictio...
55
16834 ui-components elie222/inbox-zero
UI Components Comprehensive patterns for building accessible UI component libraries with shadcn/ui and Radix Primitives. Covers CVA variants, OKLCH theming, cn() utility, component extension, asChild composition, dialog/menu patterns, and data-attribute styling. Each category has individual rule files in rules/ loaded on-demand. Quick Reference Category Rules Impact When to Use shadcn/ui 3 HIGH CVA variants, component customization, form patterns, data tables Radix Primitives 3 HIGH Dialogs, pol...
55
16835 adding-models letta-ai/letta-code
Adding Models This skill guides you through adding a new LLM model to Letta Code. Quick Reference Key files : src/models.json - Model definitions (required) .github/workflows/ci.yml - CI test matrix (optional) src/tools/manager.ts - Toolset detection logic (rarely needed) Workflow Step 1: Find Valid Model Handles Query the Letta API to see available models: curl -s https://api.letta.com/v1/models/ | jq '.[] | .handle' Or filter by provider: curl -s https://api.letta.com/v1/models/ | jq '.[] | se...
55
16836 newsletter openclaudia/openclaudia-skills
Newsletter Growth Skill You are a newsletter growth strategist. Help plan content, grow subscribers, improve engagement, and monetize newsletters. Newsletter Fundamentals Subject Lines Formulas that work: Formula Example Open Rate Impact Number + Benefit "7 tools that saved me 10hrs/week" High Question "Are you making this SEO mistake?" High How-to + Specific "How I grew to 10K subs in 6 months" High Curiosity gap "The strategy nobody talks about" Medium-High News/Urgency "Breaking: Google just ...
55
16837 outlines orchestra-research/ai-research-skills
Outlines: Structured Text Generation When to Use This Skill Use Outlines when you need to: Guarantee valid JSON/XML/code structure during generation Use Pydantic models for type-safe outputs Support local models (Transformers, llama.cpp, vLLM) Maximize inference speed with zero-overhead structured generation Generate against JSON schemas automatically Control token sampling at the grammar level GitHub Stars: 8,000+ | From: dottxt.ai (formerly .txt) Installation Base installation pip install...
55
16838 workers-runtime-apis secondsky/claude-skills
Master the Workers runtime APIs: Fetch, Streams, Crypto, Cache, WebSockets, and text encoding. Quick Reference | Fetch | HTTP requests | External APIs, proxying | Streams | Data streaming | Large files, real-time | Crypto | Cryptography | Hashing, signing, encryption | Cache | Response caching | Performance optimization | WebSockets | Real-time connections | Chat, live updates | Encoding | Text encoding | UTF-8, Base64 Quick Start: Fetch API ``` export default { as...
55
16839 readme-generator patricio0312rev/skills
Readme Generator Purpose This skill provides automated assistance for readme generator tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "readme generator" in your request Ask about readme generator patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for readme generator Follows industry be...
55
16840 content-writing eyadsibai/ltk
Collaborative writing partner for articles, blog posts, and documentation. Workflow Overview - Outline - Structure ideas collaboratively - Research - Find sources and add citations - Write - Draft section by section - Feedback - Get review on each section - Polish - Final review and refinement File Organization ``` ~/writing/article-name/ ├── outline.md Structure ├── research.md Sources and citations ├── draft-v1.md First draft ├── draft-v2.md Revis...
55
16841 sharex architecture and porting sharex/xerahs
Platform Abstractions and Native Code Rules All platform specific functionality must be isolated behind platform abstraction interfaces. No code outside XerahS.Platform.* projects may reference: NativeMethods NativeConstants, NativeEnums, NativeStructs Win32 P/Invoke System.Windows.Forms Windows specific handles or messages Direct calls to Windows APIs are forbidden in Common, Core, Uploaders, Media, or other backend projects. Required Architecture Define platform neutral interfaces in XerahS.Pl...
55
16842 long-context orchestra-research/ai-research-skills
Long Context: Extending Transformer Context Windows When to Use This Skill Use Long Context techniques when you need to: Process long documents (32k, 64k, 128k+ tokens) with transformer models Extend context windows of pre-trained models (LLaMA, Mistral, etc.) Implement efficient positional encodings (RoPE, ALiBi) Train models with length extrapolation capabilities Deploy models that handle variable-length inputs efficiently Fine-tune existing models for longer contexts with minimal compute K...
55
16843 miniapp-develop lotosbin/claude-skills
No SKILL.md available for this skill. View on GitHub
55
16844 modal-serverless-gpu orchestra-research/ai-research-skills
Modal Serverless GPU Comprehensive guide to running ML workloads on Modal's serverless GPU cloud platform. When to use Modal Use Modal when: Running GPU-intensive ML workloads without managing infrastructure Deploying ML models as auto-scaling APIs Running batch processing jobs (training, inference, data processing) Need pay-per-second GPU pricing without idle costs Prototyping ML applications quickly Running scheduled jobs (cron-like workloads) Key features: Serverless GPUs: T4, L4, A10G,...
55
16845 database-testing proffesor-for-testing/agentic-qe
Database Testing <default_to_action> When testing database operations: VALIDATE schema (tables, columns, constraints exist as expected) TEST data integrity (unique, foreign key, check constraints) VERIFY migrations (forward works, rollback works, data preserved) CHECK transaction isolation (ACID properties, concurrent access) MEASURE query performance (indexes used, execution time) Quick DB Testing Checklist: Schema matches specification Unique constraints prevent duplicates Foreign keys prevent...
55
16846 copilot-sdk sickn33/antigravity-awesome-skills
GitHub Copilot SDK Embed Copilot's agentic workflows in any application using Python, TypeScript, Go, or .NET. Overview The GitHub Copilot SDK exposes the same engine behind Copilot CLI: a production-tested agent runtime you can invoke programmatically. No need to build your own orchestration - you define agent behavior, Copilot handles planning, tool invocation, file edits, and more. Prerequisites GitHub Copilot CLI installed and authenticated ( Installation guide ) Language runtime : Node.js 1...
55
16847 product-ux-expert majiayu000/claude-arsenal
Product UX Expert Core Principles Reduce Cognitive Load — Minimize mental effort required for every interaction Accessibility First — WCAG 2.2 AA is the baseline, not an afterthought Evidence-Based — Decisions backed by user research, not assumptions Anticipatory Design — Predict user needs before they ask Ethical Design — No dark patterns, transparent data practices Mobile First — Design for smallest screens, enhance for larger Quick Reference Nielsen's 10 Heuristics Heuristic Key Question 1 V...
55
16848 diagram-to-image sugarforever/01coder-agent-skills
Diagram to Image Convert Mermaid diagrams and Markdown tables to PNG images via the mermaid-red API (diagramless.xyz). Produces high-quality, styled output with custom themes — no heavy local dependencies needed. When to Use Use this skill when: User has a Mermaid diagram that needs to be converted to an image User has a Markdown table that needs to be converted to an image User is writing content for X/Twitter and needs visual exports User asks to "convert to image", "export as PNG", "make this...
55
16849 physics-intuition dylantarre/animation-principles
Physics Intuition Think like a physicist watching the world move. Every object has mass. Every motion has cause and consequence. Core Mental Model Before animating anything, ask: What does this weigh? A feather and a bowling ball both fall, but they tell completely different stories. Your job is to make the audience feel that weight without thinking about it. The 12 Principles Through Physics Squash & Stretch — Mass is conserved. When something compresses, it must bulge. A bouncing ball fl...
55
16850 typo3-ddev dirnbauer/webconsulting-skills
TYPO3 DDEV Local Development Compatibility: TYPO3 v13.x and v14.x (v14 preferred) All configurations in this skill support both TYPO3 v13 and v14. Container Priority Always check for existing containers first: Check .ddev/ exists → use ddev exec Check docker-compose.yml exists → use docker compose exec Only use system tools if no container environment Critical: Use the project's configured PHP version, not system PHP. 1. Project Initialization New TYPO3 Project (v14 - Preferred) Create pr...
55