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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,399
总 Skills
87.6M
总安装量
2,573
贡献者
# Skill 仓库 描述 安装量
23901 nano-banana-use cnemri/google-genai-skills
Nano Banana Use Use this skill to generate, edit, and compose images using Gemini's Nano Banana models ( gemini-2.5-flash-image and gemini-3-pro-image-preview ). This skill uses portable Python scripts managed by uv . Prerequisites Ensure you have one of the following authentication methods configured in your environment: API Key : GOOGLE_API_KEY or GEMINI_API_KEY Vertex AI : GOOGLE_CLOUD_PROJECT GOOGLE_CLOUD_LOCATION GOOGLE_GENAI_USE_VERTEXAI=1 Usage Generate an Image Step 1: Confirm Parameters...
35
23902 security-review yeachan-heo/oh-my-codex
Security Review Skill This skill ensures all code follows security best practices and identifies potential vulnerabilities. When to Activate Implementing authentication or authorization Handling user input or file uploads Creating new API endpoints Working with secrets or credentials Implementing payment features Storing or transmitting sensitive data Integrating third-party APIs Security Checklist 1. Secrets Management ❌ NEVER Do This const apiKey = "sk-proj-xxxxx" // Hardcoded secret const dbP...
35
23903 multi-source-data-merger letta-ai/skills
Multi Source Data Merger Overview This skill guides the process of merging data from multiple sources with different formats into a unified dataset. It covers reading heterogeneous file formats, applying field name mappings, resolving conflicts using priority ordering, and generating comprehensive output files including conflict reports. Workflow Step 1: Analyze Requirements and Source Files Before writing any code, thoroughly understand the task: Identify all source files and their formats (JSO...
35
23904 bird liewcf/agent-skills
Bird - X/Twitter CLI Guide for using the bird CLI tool to interact with X/Twitter content. Quick Start Install bird globally: npm install -g @steipete/bird or pnpm add -g @steipete/bird or bun add -g @steipete/bird one-shot (no install) bunx @steipete/bird whoami or brew install steipete/tap/bird Verify authentication: bird whoami Show logged-in account bird check Check available credentials Common Tasks Read Tweets and Threads Read a single tweet bird read < tweet-url-or-id > bird < twee...
35
23905 xai-x-search adaptationio/skrillz
Real-time Twitter/X search using Grok's native X integration - a capability unique to xAI. Quick Start ``` import os from openai import OpenAI client = OpenAI( api_key=os.getenv("XAI_API_KEY"), base_url="https://api.x.ai/v1" ) Simple X search response = client.chat.completions.create( model="grok-4-1-fast", messages=[{ "role": "user", "content": "Search X for what people are saying about Tesla stock today" }] ) print(response.choices[0].message.content) ...
35
23906 data-table-filters openstatushq/data-table-filters
Data Table Filters A shadcn registry for building filterable, sortable data tables with infinite scroll and virtualization. Start with the core block, then extend with optional blocks for command palette, cell renderers, sheet panels, store adapters, schema generation, Drizzle ORM helpers, and React Query integration. Registry Blocks Install any block via npx shadcn@latest add <url> . The CLI handles dependencies, path rewriting, and CSS variable injection. Block Install URL What it adds data-ta...
35
23907 competitor-monitor guia-matthieu/clawfu-skills
Competitor Monitor Track competitor websites for changes and get alerts - stay informed about pricing, features, and content updates. When to Use This Skill Pricing intelligence - Track competitor price changes Feature tracking - Monitor new feature announcements Content watch - Track new blog posts or pages Change alerts - Get notified of website updates Competitive analysis - Regular competitor audits What Claude Does vs What You Decide Claude Does You Decide Structures analysis frameworks Str...
35
23908 skill-architect tech-leads-club/agent-skills
Skill Architect: The Authoritative Meta-Skill The unified authority for creating expert-level Agent Skills. Combines systematic workflow from skill-creator with domain expertise encoding from skill-coach. Philosophy Great skills are progressive disclosure machines that encode real domain expertise (shibboleths), not just surface instructions. They activate precisely, teach efficiently, and make users productive immediately. When to Use This Skill ✅ Use for: Creating new skills from scratch...
35
23909 moneydevkit openagentsinc/openagents
Money Dev Kit Overview Integrate Lightning payment workflows using Money Dev Kit. Use this skill when tasks involve setting up @moneydevkit/agent-wallet for autonomous agents, wiring @moneydevkit/nextjs or @moneydevkit/replit checkout flows, bootstrapping credentials via @moneydevkit/create , validating MDK environment variables, or applying hybrid architecture constraints (hosted API plus self-custodial node). Environment Requires bash , curl , and Node.js 20+. Requires internet access to npm a...
35
23910 test-reporting-triage-skill patricio0312rev/skills
Test Reporting & Triage Skill Automatically triage test failures and suggest next actions. Failure Categorization // types/test-failure.ts export type FailureCategory = | "timeout" | "assertion" | "network" | "database" | "authentication" | "permission" | "configuration" | "flaky" | "infrastructure" | "unknown"; export interface TestFailure { testName: string; category: FailureCategory; errorMessage: string; stackTrace: string; suggestedOwner: string; suggested...
35
23911 m365-agents-py sickn33/antigravity-awesome-skills
Microsoft 365 Agents SDK (Python) Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft Agents SDK with aiohttp hosting, AgentApplication routing, streaming responses, and MSAL-based authentication. Before implementation Use the microsoft-docs MCP to verify the latest API signatures for AgentApplication, start_agent_process, and authentication options. Confirm package versions on PyPI for the microsoft-agents-* packages you plan to use. Important Notice - Impor...
35
23912 pdf teachingai/full-stack-skills
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
35
23913 stripe-integration yusuketsunoda/ppt-trans
Stripe Integration Master Stripe payment processing integration for robust, PCI-compliant payment flows including checkout, subscriptions, webhooks, and refunds. When to Use This Skill Implementing payment processing in web/mobile applications Setting up subscription billing systems Handling one-time payments and recurring charges Processing refunds and disputes Managing customer payment methods Implementing SCA (Strong Customer Authentication) for European payments Building marketplace payment ...
35
23914 mteb-retrieve letta-ai/skills
This skill provides guidance for text embedding retrieval tasks that involve encoding documents and queries using embedding models, computing similarity scores, and retrieving or ranking documents based on semantic similarity. Workflow Step 1: Inspect and Parse Data Before writing any code, carefully inspect the raw data format: - Read the data file and examine actual line contents - Identify formatting artifacts such as: Line number prefixes (e.g., `1→`, `2→`, `1.`, `1:`) - Whitespace ...
35
23915 conflict-resolution troykelly/claude-skills
Conflict Resolution Overview Handle merge conflicts systematically to maintain code integrity. Core principle: Conflicts require careful resolution, not just picking one side. Announce at start: "I'm using conflict-resolution to handle these merge conflicts." When Conflicts Occur Conflicts happen when: Situation Example Rebasing on updated main git rebase origin/main Merging main into branch git merge origin/main Cherry-picking commits git cherry-pick [sha] Pulling with local changes git p...
35
23916 update-packages blogic-cz/agent-tools
Update Packages Step 0: Update Skills + Create Branch (MANDATORY) Before touching any packages, update skills and create a dedicated branch. Update all skills from skills-lock.json (reads sources + skill names from lock) bun run .agents/skills/update-packages/references/skills-update-local.ts Dry run to see what would be executed bun run .agents/skills/update-packages/references/skills-update-local.ts --dry-run Create a fresh branch git checkout -b chore/update-packages- $( date +%y%m%d-%H%M ...
35
23917 beads-task-tracker tdimino/claude-code-minoan
Beads Task Tracker Overview Beads is a git-versioned, dependency-aware issue tracker designed specifically for AI coding agents. It solves the "amnesia problem" where agents lose context between sessions by providing a persistent, queryable task database that agents can use to orient themselves, find ready work, and track dependencies across long-horizon projects. Use Beads when: Working on projects with multiple interconnected tasks Tasks span multiple agent sessions (>10 minutes) Need to track...
35
23918 path-tracing letta-ai/skills
Path Tracing and Ray Tracing Implementation This skill provides guidance for implementing path tracers and ray tracers, particularly for image reconstruction tasks where a target image must be matched within a similarity threshold. When to Use This Skill Implementing ray tracers or path tracers in C/C++ Reconstructing images by reverse-engineering scene parameters Building rendering systems with geometric primitives (spheres, planes) Tasks requiring image similarity matching (L2 norm, cosine sim...
35
23919 kubernetes-operations nodnarbnitram/claude-code-extensions
Kubernetes Operations Expert knowledge for Kubernetes cluster management, deployment, and troubleshooting with mastery of kubectl and cloud-native patterns. Core Expertise Kubernetes Operations Workload Management : Deployments, StatefulSets, DaemonSets, Jobs, and CronJobs Networking : Services, Ingress, NetworkPolicies, and DNS configuration Configuration & Storage : ConfigMaps, Secrets, PersistentVolumes, and PersistentVolumeClaims Troubleshooting : Debugging pods, analyzing logs, and inspecti...
35
23920 brand-positioning-theory mike-coulbourn/claude-vibes
Brand Positioning Theory Framework Quick reference for positioning a brand using methodologies from Al Ries, Jack Trout, and Marty Neumeier. "Marketing is not a battle of products, it's a battle of perceptions." — Al Ries & Jack Trout "When everybody zigs, zag." — Marty Neumeier Ries & Trout's 5 Core Principles Positioning happens in the mind: You don't position products; you position perceptions. The only reality that counts is what's already in the prospect's mind. The mind is limited: I...
35
23921 attack-surface-analyzer jeremylongshore/claude-code-plugins-plus-skills
Attack Surface Analyzer Purpose This skill provides automated assistance for attack surface analyzer tasks within the Security Advanced domain. When to Use This skill activates automatically when you: Mention "attack surface analyzer" in your request Ask about attack surface analyzer patterns or best practices Need help with advanced security skills covering penetration testing, compliance frameworks, threat modeling, and enterprise security. Capabilities Provides step-by-step guidance for attac...
35
23922 letta conversations api letta-ai/skills
Letta Conversations API The Conversations API allows multiple isolated message threads on a single agent. Each conversation maintains its own message history while sharing the agent's memory blocks and tools. When to Use This Skill Building multi-user chat applications (each user gets their own conversation) Implementing session management with separate contexts A/B testing agent responses across isolated conversations Any scenario where you need multiple independent chat threads with one agent ...
35
23923 xiaohongshu-creation-workflow cyhzzz/finance_aigc_skills
小红书图文笔记创作工作流 任务目标 本Skill提供从需求到成品的完整小红书图文笔记创作工作流,专为 财经证券领域官方/员工账号 设计。 核心目标 :智能模式判断、两阶段创作(内容创作+风格适配)、爆款评估、专业输出、视觉化呈现、用户全程控制。 核心工作流 用户输入 → Phase 0(模式判断) → Phase 1(初稿创作) → Phase 1.5(审校优化) → Phase 2(IP风格迁移+平台适配) → Phase 2.5(爆款评分≥80分自动继续) → Phase 3(HTML预览) → 最终输出 关键变化 : Phase 1 :纯粹的选题探讨、优质初稿创作(不考虑IP风格和平台格式) Phase 1.5 :审校优化(非可选,正式的质量检查步骤) Phase 2 :IP风格迁移 + 平台格式适配(自动选择账号风格) Phase 2.5 :评分≥80分自动进入Phase 3 Phase 3 :默认生成HTML预览,可选手动调用baoyu生成PNG图集 ⚡ 自动执行原则 本工作流采用 智能自动执行 策略,大幅减少人工确认步骤: 自动执行的步骤 : ✅ Phase 1 所有步骤(...
35
23924 pr-resolver zenobi-us/dotfiles
Automate the process of addressing pull request review feedback by processing ALL comments, making code fixes, resolving EVERY conversation thread, and fixing ALL failing CI checks. This skill does NOT skip any comments. Every unresolved thread must be addressed and resolved. Prerequisites ``` Verify gh CLI is installed and authenticated gh auth status If not authenticated, run: gh auth login ``` Token requires `repo` scope for full repository access. Workflow Overview - Fetch PR con...
35
23925 epic-react-patterns epicweb-dev/epic-stack
Epic Stack: React Patterns and Guidelines When to use this skill Use this skill when you need to: Write efficient React components in Epic Stack applications Optimize performance and bundle size Follow React Router patterns and conventions Avoid common React anti-patterns Implement proper code splitting Optimize re-renders and data fetching Use React hooks correctly Philosophy Following Epic Web principles: Make it work, make it right, make it fast - In that order. First make it functional, ...
35
23926 ansible-validator akin-ozer/cc-devops-skills
Ansible Validator Overview Comprehensive toolkit for validating, linting, and testing Ansible playbooks, roles, and collections. This skill provides automated workflows for ensuring Ansible code quality, syntax validation, dry-run testing with check mode and molecule, and intelligent documentation lookup for custom modules and collections with version awareness. Default behavior: When validating any Ansible role with a molecule/ directory, attempt Molecule automatically using bash scripts/test_r...
35
23927 code-review smallnest/langgraphgo
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
35
23928 nginx-ingress-manager jeremylongshore/claude-code-plugins-plus-skills
Nginx Ingress Manager Purpose This skill provides automated assistance for nginx ingress manager tasks within the DevOps Advanced domain. When to Use This skill activates automatically when you: Mention "nginx ingress manager" in your request Ask about nginx ingress manager patterns or best practices Need help with advanced devops skills covering kubernetes, terraform, advanced ci/cd, monitoring, and infrastructure as code. Capabilities Provides step-by-step guidance for nginx ingress manager Fo...
35
23929 pwa-development travisjneuman/.claude
PWA Development Skill Load with: base.md Purpose: Build Progressive Web Apps that work offline, install like native apps, and deliver fast, reliable experiences across all devices. Core PWA Requirements ┌─────────────────────────────────────────────────────────────────┐ │ THE THREE PILLARS OF PWA │ │ ───────────────────────────────────────────────────────────── │ │ │ │ 1. HTTPS ...
35
23930 tuzi-video-gen tuziapi/tuzi-skills
Video Generation (AI SDK) Tuzi API video generation backend. Default model: veo3.1. Script Directory Agent Execution : SKILL_DIR = this SKILL.md file's directory Script path = ${SKILL_DIR}/scripts/main.ts Step 0: Load Preferences ⛔ BLOCKING CRITICAL : This step MUST complete BEFORE any video generation. Do NOT skip or defer. 0.1 Check API Key echo " ${TUZI_API_KEY :- not_set} " grep -s TUZI_API_KEY .tuzi-skills/.env " $HOME /.tuzi-skills/.env" Result Action Key found Continue to Step 0.2 Key NOT...
35
23931 install-windows-3.11 letta-ai/skills
Install Windows 3.11 in QEMU Overview This skill provides procedural knowledge for installing and running Windows 3.11 in a QEMU virtual machine with VNC and web-based access. Windows 3.11 is a legacy 16-bit operating system that requires specific QEMU configuration for proper operation. Pre-Installation Checklist Before starting, verify the following: Check for expected file paths and naming conventions - Tests or acceptance criteria may expect specific paths (e.g., /tmp/qemu-monitor.sock vs /t...
35
23932 markdownlint-integration thebushidocollective/han
Markdownlint Integration Master integrating markdownlint into development workflows including CLI usage, programmatic API (sync/async/promise), CI/CD pipelines, pre-commit hooks, and editor integration. Overview Markdownlint can be integrated into various parts of your development workflow to ensure consistent markdown quality. This includes command-line tools, programmatic usage in Node.js, continuous integration pipelines, Git hooks, and editor plugins. Command-Line Interface markdownlint-cli ...
35
23933 track17 tristanmanchester/agent-skills
track17 (17TRACK parcel tracking) This skill lets Clawdbot keep a local list of your parcels, track their state via the 17TRACK Tracking API v2.2 , and summarise changes. It stores everything in a small SQLite DB under your workspace (by default: <workspace>/packages/track17/track17.sqlite3 ). <workspace> is auto-detected as the parent directory of the nearest skills/ directory that contains this skill. For example, if you install it at /clawd/skills/track17/ , data will be stored at /clawd/pack...
35
23934 hotel-finder barneyjm/camino-skills
Installation Companion Skills : This is part of the Camino AI location intelligence suite. Install all available skills (query, places, relationship, context, route, journey, real-estate, hotel-finder, ev-charger, school-finder, parking-finder, fitness-finder, safety-checker, travel-planner) for comprehensive coverage. Install all skills from repo npx skills add https://github.com/barneyjm/camino-skills Or install specific skills npx skills add https://github.com/barneyjm/camino-skills --skill...
35
23935 gluestack-components thebushidocollective/han
gluestack-ui - Components Expert knowledge of gluestack-ui's universal component library for building accessible, performant UI across React and React Native platforms. Overview gluestack-ui provides 50+ unstyled, accessible components that work seamlessly on web and mobile. Components are copy-pasteable into your project and styled with NativeWind (Tailwind CSS for React Native). Key Concepts Component Installation Add components using the CLI: Initialize gluestack-ui in your project npx glues...
35
23936 solidjs-expert oimiragieo/agent-studio
Solidjs Expert solidjs complex state management When reviewing or writing code, apply these guidelines: Utilize createStore() for complex state management. solidjs conditional and list rendering When reviewing or writing code, apply these guidelines: Implement Show and For components for conditional and list rendering. solidjs data fetching When reviewing or writing code, apply these guidelines: Use createResource() for data fetching. solidjs derived values management When reviewing or wr...
35
23937 mermaid-er-diagram-creator jeremylongshore/claude-code-plugins-plus-skills
Mermaid Er Diagram Creator Purpose This skill provides automated assistance for mermaid er diagram creator tasks within the Visual Content domain. When to Use This skill activates automatically when you: Mention "mermaid er diagram creator" in your request Ask about mermaid er diagram creator patterns or best practices Need help with visual content skills covering diagrams, charts, presentations, and visual documentation tools. Capabilities Provides step-by-step guidance for mermaid er diagram c...
35
23938 sap-hana-cloud-data-intelligence secondsky/sap-skills
SAP HANA Cloud Data Intelligence Skill This skill provides comprehensive guidance for developing with SAP Data Intelligence Cloud, including pipeline creation, operator development, data integration, and machine learning scenarios. Table of Contents When to Use This Skill Core Concepts Quick Start Patterns Common Tasks Bundled Resources When to Use This Skill Use this skill when: Creating or modifying data processing graphs/pipelines Developing custom operators (Gen1 or Gen2) Integrating ABAP-ba...
35
23939 using-superpowers nickcrew/claude-ctx-plugin
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT. This is not negotiable. This is not optional. You cannot rationalize your way out of this. Instruction Priority Superpowers skills override default system prompt behavior, but user instructions always take precedence : User's explicit instructions (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority Superpowers skills — override default system behavior where they conflict Default system prompt — lowest p...
35
23940 host-panel wyattowalsh/agents
Host Panel Surface real tensions, frameworks, and disagreements through simulated expert discourse — not theatrical roleplay. This panel explores a complex topic from multiple angles — surfacing frameworks and genuine disagreements, not producing consensus or truth. Invocation: /host-panel "topic" [format] [num-experts] Format Purpose Best for roundtable Open multi-perspectival exploration Broad topics, brainstorming, mapping a field oxford Binary debate with formal sides Policy decisions, testi...
35
23941 deep-research zenobi-us/dotfiles
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
35
23942 tiny-vue-skill opentiny/agent-skills
No SKILL.md available for this skill. View on GitHub
35
23943 generate-tests iskysun96/aptos-agent-skills
Generate Tests Skill Overview This skill generates comprehensive test suites for Move contracts with 100% line coverage requirement. Tests verify: ✅ Happy paths (functionality works) ✅ Access control (unauthorized users blocked) ✅ Input validation (invalid inputs rejected) ✅ Edge cases (boundaries, limits, empty states) Critical Rule: NEVER deploy without 100% test coverage. Core Workflow Step 1: Create Test Module [test_only] module my_addr::my_module_tests { use my_addr::my_module::{Self, MyOb...
35
23944 azure-sdk-mgmt-pr-review azure/azure-sdk-for-net
Azure .NET Mgmt SDK PR Review Review Azure SDK for .NET management library pull requests against the official API review guidelines. The review is split into three sequential phases: Phase 1: Versioning Review (gate), Phase 2: API Review , and Phase 3: Breaking Change Detection . Each phase must pass before proceeding to the next. Phase 1: Versioning Review This phase checks version-related rules that are simple and rule-based. If any violation is found in this phase, stop the review immediately...
35
23945 dead-code-detector curiouslearner/devkit
Dead Code Detector Find and remove unused code across Python, TypeScript, and Rust codebases. Tools by Language Language Tool Detects Python vulture v2.14+ Unused imports, functions, classes, variables TypeScript knip v5.0+ Unused exports, dependencies, files Rust cargo clippy + rustc lints Unused functions, imports, dead_code warnings Why these tools? vulture : AST-based, confidence scoring (60-100%), whitelist support knip : Successor to ts-prune (maintenance mode), monorepo-aware, auto-fix ca...
35
23946 django-expert personamanagmentlayer/pcl
Django Expert Overview This skill provides expert guidance for Django backend development with comprehensive coverage of models, views, Django REST Framework, forms, authentication, testing, and performance optimization. It follows official Django best practices and modern Python conventions to help you build robust, maintainable applications. Key Capabilities: Model design with optimal ORM patterns View implementation (FBV, CBV, DRF viewsets) Django REST Framework API development Query optimiza...
35
23947 gardening-mindset coowoolf/insighthunt-skills
The Gardening Mindset Overview A shift from the "Builder" mindset (rigid plans, top-down control) to a "Gardener" mindset (creating conditions for growth, ecosystem curation). Plant many cheap "seeds" and invest in the ones that show organic traction. Core principle: Don't try to predict the winner. Look for signals of natural growth. Builder vs Gardener ┌─────────────────────────────────────────────────────────────────┐ │ BUILDER MINDSET │ GARDENER MINDSET │ ├───────...
35
23948 youtube-plan-new-video kenneth-liao/ai-launchpad-marketplace
YouTube Video Planning Overview This skill generates complete video plans by orchestrating specialized skills to create optimized titles, thumbnails, and hooks. It takes research as input and produces a production-ready plan with all creative elements needed to maximize video performance. Core Principle : Leverage specialized skills to ensure proven patterns for CTR (title/thumbnail) and retention (hook). Never generate these elements manually. When to Use Use this skill when: Research has been ...
35
23949 zod-patterns mx-space/core
Zod Schema Patterns Basic Pattern import { z } from 'zod' import { createZodDto } from 'nestjs-zod' // Define Schema export const MySchema = z . object ( { name : z . string ( ) . min ( 1 ) , email : z . string ( ) . email ( ) , age : z . number ( ) . int ( ) . positive ( ) . optional ( ) , } ) // Create DTO class export class MyDto extends createZodDto ( MySchema ) { } // Partial DTO for updates export class PartialMyDto extends createZodDto ( MySchema . partial ( ) ) { } Project Custom Validat...
35
23950 animation principles - absolute beginner dylantarre/animation-principles
Your First Look at Animation Magic Animation makes drawings move in ways that feel real and fun. Disney animators discovered 12 tricks that make animation look great. Here they are in simple words: 1. Squash and Stretch Things squish when they hit something and stretch when they move fast. Drop a ball - it flattens on the ground, then bounces back round. 2. Anticipation Before a big move, there's a small move the other way. Before jumping up, you crouch down first. 3. Staging Put important thing...
35