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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,399
总 Skills
87.6M
总安装量
2,573
贡献者
# Skill 仓库 描述 安装量
23801 ios-simulator-skill onejs/one
iOS Simulator Skill Build, test, and automate iOS applications using accessibility-driven navigation and structured data instead of pixel coordinates. Quick Start 1. Check environment bash scripts/sim_health_check.sh 2. Launch app python scripts/app_launcher.py --launch com.example.app 3. Map screen to see elements python scripts/screen_mapper.py 4. Tap button python scripts/navigator.py --find-text "Login" --tap 5. Enter text python scripts/navigator.py --find-type TextField --enter-...
36
23802 swapper-integration shapeshift/web
Swapper Integration Skill You are an expert at integrating DEX aggregators, swappers, and bridge protocols into ShapeShift Web. This skill guides you through the complete process from API research to production-ready implementation. When This Skill Activates Use this skill when the user wants to: "Integrate [SwapperName] swapper" "Add support for [Protocol]" "Implement [DEX] integration" "Add [Aggregator] as a swapper" "Integrate [new swapper]" Overview ShapeShift Web is a decentralized crypto e...
36
23803 session-share asheshgoplani/agent-deck
Session Share Share Claude Code sessions between developers through portable file export/import. Version: 1.0 | Privacy: Files are never uploaded to cloud unless you choose to share them Script Path Resolution (IMPORTANT) This skill includes helper scripts in its scripts/ subdirectory. When Claude Code loads this skill, it shows a line like: Base directory for this skill: /path/to/.../skills/session-share You MUST use that base directory path to resolve all script references. Store it as SKILL_D...
36
23804 magento-deployment-engineer maxnorm/magento2-agent-skills
Magento 2 Deployment Engineer Expert specialist in designing and implementing robust, scalable deployment pipelines and infrastructure solutions for enterprise e-commerce applications. When to Use Setting up CI/CD pipelines Automating deployments Managing infrastructure Implementing DevOps practices Containerizing applications Planning disaster recovery Deployment Architecture CI/CD Pipelines Continuous Integration : Design comprehensive build and test pipelines Continuous Deployment : Implement...
36
23805 product-management travisjneuman/.claude
Product Management (Jan 2026) This skill turns the assistant into an operator, not a lecturer. Everything here is: Executable: templates, checklists, decision flows Decision-first: measurable outcomes, explicit trade-offs, clear ownership Organized: resources for depth; templates for immediate copy-paste Modern Best Practices (Jan 2026): Evidence quality beats confidence: label signals strong/medium/weak; write what would change your mind. Outcomes > output: roadmaps are bets with measurabl...
36
23806 peon-ping-log peonping/peon-ping
peon-ping-log Log exercise reps for the Peon Trainer. Usage The user provides a number and exercise type. Run the following command using the Bash tool: bash ~/.claude/hooks/peon-ping/peon.sh trainer log < count > < exercise > Where: <count> is the number of reps (e.g. 25 ) <exercise> is pushups or squats Examples bash ~/.claude/hooks/peon-ping/peon.sh trainer log 25 pushups bash ~/.claude/hooks/peon-ping/peon.sh trainer log 30 squats Report the output to the user. The command will print the upd...
36
23807 fastapi teachingai/full-stack-skills
FastAPI Official FastAPI skill to write code with best practices, keeping up to date with new versions and features. Use the fastapi CLI Run the development server on localhost with reload: fastapi dev Run the production server: fastapi run Add an entrypoint in pyproject.toml FastAPI CLI will read the entrypoint in pyproject.toml to know where the FastAPI app is declared. [ tool.fastapi ] entrypoint = "my_app.main:app" Use fastapi with a path When adding the entrypoint to pyproject.toml is not p...
36
23808 tanstack-frontend blogic-cz/blogic-marketplace
TanStack Frontend Patterns Overview Implement TanStack Router routes with proper TRPC integration, query prefetching, type inference, and form handling following the project's frontend architecture patterns. When to Use This Skill Use this skill when: Creating new routes with TanStack Router Implementing data prefetching in loaders Optimizing route loading performance Building forms with TanStack Form and TRPC Need type-safe TRPC patterns Core Patterns 1. Route Definition with Loader Standard pa...
36
23809 video-prompting-guide inference-sh/agent-skills
Video Prompting Guide Best practices for writing effective AI video generation prompts via inference.sh . Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login Well-structured video prompt infsh app run google/veo-3-1-fast --input '{ "prompt": "Cinematic tracking shot of a red sports car driving through Tokyo at night, neon lights reflecting on wet streets, rain falling, 4K, shallow depth of field" }' Prompt St...
36
23810 nano-banana nicepkg/ai-workflow
Nano Banana - Gemini Native Image Generation Generate images with Google Gemini native image models via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Get installation instructions: npx skills add inference-sh/skills@agent-tools infsh login infsh app run google/gemini-3-pro-image-preview --input '{"prompt": "a banana in space, photorealistic"}' Models Model App ID Speed Quality Gemini 3 Pro Image google/gemini-3-pro-image-preview Slower Best Gemini 2.5 Flash Image google/gemi...
36
23811 signals-and-flutter-hooks rodydavis/skills
Signals and Flutter Hooks When working with data in Flutter , on of the first things you are exposed to is setState . setState import 'package:flutter/material.dart'; void main() { runApp(const MaterialApp(debugShowCheckedModeBanner: false, home: Counter())); } class Counter extends StatefulWidget { const Counter({super.key}); @override State<Counter> createState() => _CounterState(); } class _CounterState extends State<Counter> { int count = 0; void increment() { if (mounted) { setState(() { co...
36
23812 agent-browser dmmulroy/overseer
Browser Automation with agent-browser The CLI uses Chrome/Chromium via CDP directly. Install via npm i -g agent-browser , brew install agent-browser , or cargo install agent-browser . Run agent-browser install to download Chrome. Core Workflow Every browser automation follows this pattern: Navigate : agent-browser open <url> Snapshot : agent-browser snapshot -i (get element refs like @e1 , @e2 ) Interact : Use refs to click, fill, select Re-snapshot : After navigation or DOM changes, get fresh r...
36
23813 codex-wrapped openai/skills
Codex Wrapped Use this skill whenever the user wants a Codex Wrapped report or usage insights. Render text-only output (no image generation). The report must be year-agnostic and should highlight last 30 days and last 7 days, while still calling out all-time focus hours. Quick Commands (run in order) Compute stats python3 .codex/skills/codex-wrapped/scripts/get_codex_stats.py \ --output /tmp/wrapped_stats.json (Defaults to the system timezone; override --timezone only if the user requests it.) R...
36
23814 ag-grid joabgonzalez/ai-agents-framework
AG Grid React data tables with sorting, filtering, pagination, inline editing, and Excel-like features. TypeScript typing, accessibility, and virtualization. Examples use ag-grid-react . Column config API ( ColDef , onGridReady ) is framework-agnostic — adapt cell renderers to your framework's component syntax for Angular/Vue. When to Use Data tables with sorting/filtering/pagination Editable grids with inline editing Complex grids with grouping/aggregation High-performance with virtualization E...
36
23815 create-agent-adapter paperclipai/paperclip
Creating a Paperclip Agent Adapter An adapter bridges Paperclip's orchestration layer to a specific AI agent runtime (Claude Code, Codex CLI, a custom process, an HTTP endpoint, etc.). Each adapter is a self-contained package that provides implementations for three consumers : the server, the UI, and the CLI. 1. Architecture Overview packages/adapters/<name>/ src/ index.ts Shared metadata (type, label, models, agentConfigurationDoc) server/ index.ts Server exports: execute,...
36
23816 design-system-generator qodex-ai/ai-agent-skills
Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: A cohesive color palette with hex codes Complementary font pairings for headers and body text A distinct visual identity suitable for different context...
36
23817 turso itechmeat/llm-code
SQLite-compatible embedded database for modern applications, AI agents, and edge computing. Quick Navigation | Installation | [installation.md](https://github.com/itechmeat/llm-code/blob/main/skills/turso/references/installation.md) | Encryption | [encryption.md](https://github.com/itechmeat/llm-code/blob/main/skills/turso/references/encryption.md) | Authorization | [auth.md](https://github.com/itechmeat/llm-code/blob/main/skills/turso/references/auth.md) | Sync | [sync.md](https://...
36
23818 skill-creator andrelandgraf/fullstackrecipes
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
36
23819 shader-router bbeierle12/skill-mcp-claude
Shader Router Routes to 4 specialized GLSL shader skills based on task requirements. Routing Protocol Classify — Identify what visual result is needed Match — Find skill(s) with highest signal match Combine — Most shaders need 2-3 skills together Load — Read matched SKILL.md files before implementation Quick Route Tier 1: Core (Always Consider) Task Type Skill Primary Signal Words Writing shaders shader-fundamentals GLSL, vertex, fragment, uniform, varying, coordinate Organic patterns shader-n...
36
23820 ingestion-pipeline-doctor-nodejs posthog/posthog
Pipeline Doctor Quick reference for PostHog's ingestion pipeline framework and its convention-checking agents. Architecture overview The ingestion pipeline processes events through a typed, composable step chain: Kafka message → messageAware() → parse headers/body → sequentially() for preprocessing → filterMap() to enrich context (e.g., team lookup) → teamAware() → groupBy(token:distinctId) → concurrently() for per-entity processing → gather() → pipeBatch() for batch operations → handleIngestion...
36
23821 creativity altshiftstudio/skills
Creativity This skill uses Distribution-level Sampling to bypass "mode collapse" and surface high-quality, non-obvious ideas (p < 0.10). State the goal for using this skill, and align the outcome to it. Creative Workflow Follow these phases thoroughly. Show your reasoning to the user. Phase 1: Explore semantic space Conduct a reasoning-first exploration of the semantic space. Identify the most "obvious" or stereotypical answers and explicitly discard them. Announce a list of discarded ide...
36
23822 precommit-setup athola/claude-night-market
Table of Contents Use When Philosophy: Three-Layer Defense Standard Hooks (Layer 1) Python Projects Basic Quality Checks Configuration Rust Projects TypeScript Projects Component-Specific Checks (Layer 2) Python Monorepo/Plugin Architecture 1. Lint Changed Components (scripts/run-component-lint.sh) 2. Type Check Changed Components (scripts/run-component-typecheck.sh) 3. Test Changed Components (scripts/run-component-tests.sh) Add to Pre-commit Configuration Validation Hooks (Layer 3) Example: Pl...
36
23823 newsletter-creation-curation brianrwagner/ai-marketing-skills
Newsletter Creation & Curation Skill Use this skill to create B2B newsletters that match business context, not generic content templates. Deep strategic guidance is in PLAYBOOK.md . Use this file as the executable operating manual. Mode Detect from context or ask: "Outline only, full edition, or full edition + calendar?" Mode What you get Best for quick Edition outline + 3 lead story angles, no writing Planning, editorial direction standard Full newsletter edition, all sections written Publishin...
36
23824 understanding-tauri-lifecycle-security dchuk/claude-code-tauri-skills
Security in Tauri applications depends on systematic protection across all lifecycle stages. The weakest link in your application lifecycle essentially defines your security posture. Core Security Principle Tauri implements a two-tier security model: - Rust Core: Full system access - WebView Frontend: Access only through controlled IPC layer Any code executed in the WebView has only access to exposed system resources via the well-defined IPC layer. Development Phase Threats Upstream De...
36
23825 ai-tech-summary tiangong-ai/skills
AI Tech Summary Core Goal Pull the right records and fields for a requested time range. Package evidence into a compact JSON context for RAG. Let the agent synthesize final summary text from retrieved evidence. Support daily, weekly, monthly, and custom time windows. Triggering Conditions Receive requests for daily, weekly, or monthly digests. Receive requests for arbitrary date-range summaries. Need evidence-grounded summary output from RSS entries/fulltext. Need agent-generated summary style r...
36
23826 youtube-data kenneth-liao/ai-launchpad-marketplace
YouTube Data YouTube data access via TranscriptAPI.com — lightweight alternative to Google's YouTube Data API. Setup If $TRANSCRIPT_API_KEY is not set, help the user create an account (100 free credits, no card): Step 1 — Register: Ask user for their email. node ./scripts/tapi-auth.js register --email USER_EMAIL → OTP sent to email. Ask user: "Check your email for a 6-digit verification code." Step 2 — Verify: Once user provides the OTP: node ./scripts/tapi-auth.js verify --token TOKEN_FROM_STEP...
36
23827 library-ebooks montagao/skills
My Amazon (Kindle) Library Ebook Lookup & Download Overview Internal tool to search and download ebooks from my personal Amazon (Kindle) library, i.e., titles I’ve purchased/added to my account (plus any personal documents synced into my library), across available formats. Note: This skill is meant for my own licensed content. It does not bypass DRM. If a title can’t be downloaded in an accessible file format, use Amazon’s official reading/export options instead. Prerequisites IMPORTANT: Dow...
36
23828 linear-metrics finesssee/linear-cli
Metrics Cycle metrics (velocity, burndown) linear-cli mt cycle CYCLE_ID linear-cli mt cycle CYCLE_ID --output json Project progress linear-cli mt project PROJECT_ID linear-cli mt project PROJECT_ID --output json Team velocity over time linear-cli mt velocity TEAM_KEY linear-cli mt velocity ENG --cycles 5 Last 5 cycles Flags Flag Purpose --cycles N Number of cycles --output json JSON output
36
23829 game-programming-languages pluginagentmarketplace/custom-plugin-game-developer
Game Programming Languages C (Unity) Easiest to learn, most used for game dev // ✅ Production-Ready: Unity MonoBehaviour Template public class GameEntity : MonoBehaviour { [SerializeField] private float _speed = 5f; [SerializeField] private int _health = 100; public event Action<int> OnHealthChanged; public event Action OnDeath; private Rigidbody _rb; private bool _isInitialized; private void Awake() { _rb = GetComponent<Rigidbody>(); _isIniti...
36
23830 ahrefs-python ahrefs/ahrefs-api-skills
Ahrefs Python SDK Skill Overview The Ahrefs API provides programmatic access to Ahrefs SEO data. The official Python SDK ( ahrefs-python ) provides typed request and response models for all endpoints, auto-generated from the OpenAPI spec. Key capabilities: Site Explorer - Backlinks, organic keywords, domain rating, traffic, referring domains Keywords Explorer - Keyword research, volumes, difficulty, related terms Management — Rank Tracker project, keyword list, and competitor management (create,...
36
23831 square-automation davepoon/buildwithclaude
Square Automation via Rube MCP Automate Square payment processing, order management, and invoicing through Composio's Square toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/square Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Square connection via RUBE_MANAGE_CONNECTIONS with toolkit square Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API k...
36
23832 android-development travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
36
23833 browser-automation different-ai/opencode-browser
Browser Automation You are a browser automation expert who has debugged thousands of flaky tests and built scrapers that run for years without breaking. You've seen the evolution from Selenium to Puppeteer to Playwright and understand exactly when each tool shines. Your core insight: Most automation failures come from three sources - bad selectors, missing waits, and detection systems. You teach people to think like the browser, use the right selectors, and let Playwright's auto-wait do its job....
36
23834 running-nodejs-sidecar-in-tauri dchuk/claude-code-tauri-skills
Package and run Node.js applications as sidecar processes in Tauri desktop applications, leveraging the Node.js ecosystem without requiring users to install Node.js. Why Use a Node.js Sidecar - Bundle existing Node.js tools and libraries with your Tauri application - No external Node.js runtime dependency for end users - Leverage npm packages that have no Rust equivalent - Isolate Node.js logic from the main Tauri process - Cross-platform support (Windows, macOS, Linux) Prerequisites -...
36
23835 m365-agents-ts sickn33/antigravity-awesome-skills
Microsoft 365 Agents SDK (TypeScript) Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft 365 Agents SDK with Express hosting, AgentApplication routing, streaming responses, and Copilot Studio client integrations. Before implementation Use the microsoft-docs MCP to verify the latest API signatures for AgentApplication, startServer, and CopilotStudioClient. Confirm package versions on npm before wiring up samples or templates. Installation npm install @microso...
36
23836 docs-react imgly/agent-skills
Documentation Index <-- IMGLY-AGENTS-MD-START -->[CE.SDK React Docs Index]|root: .|IMPORTANT: Prefer retrieval-led reasoning over pre-training-led reasoning for any CE.SDK tasks. Consult the local docs directory before using pre-trained knowledge.|actions.md|animation:{create,edit.md,overview.md,types.md}|animation/create:{base.md,text.md}|api-reference:{overview.md}|automation:{auto-resize.md,batch-processing.md,data-merge.md,design-generation.md,overview.md}|browser-support.md|colors:{adjust.m...
36
23837 recovery-social-features erichowens/some_claude_skills
Recovery-Focused Social Features Build privacy-first social features for addiction recovery apps. These patterns prioritize anonymity, safety, and the unique relationship structures in recovery communities. When to Use ✅ USE this skill for: Sponsor/sponsee relationship systems Recovery-focused group features (meeting groups, accountability circles) Privacy-first friend connections with mutual consent Safe messaging between recovery peers Anonymity-preserving profile systems ❌ DO NOT use for...
36
23838 clickup membranedev/application-skills
ClickUp Interact with ClickUp tasks and documents via the API. Get task information, view comments, create tasks, manage assignments, post updates, and create/edit documents. Setup Copy .env-example to .env in this skill directory Add your ClickUp Personal API Token (starts with pk_ ) Generate token at: ClickUp Settings > Apps > API Token cp .claude/skills/clickup/.env-example .claude/skills/clickup/.env Edit .env and add your token Team ID and User ID are auto-detected and cached on first use....
36
23839 realitykit-visionos-developer tomkrikorian/visionosagents
RealityKit visionOS Developer Description and Goals This skill provides comprehensive guidance for implementing RealityKit-based spatial experiences on visionOS. RealityKit uses an Entity Component System (ECS) architecture where entities are lightweight containers, behavior comes from components, and systems drive per-frame updates. Goals Enable developers to build immersive 3D experiences on visionOS using RealityKit Provide clear guidance on when to use each component and system Help develo...
36
23840 unix-goto-development manutej/luxor-claude-marketplace
unix-goto Development Expert Comprehensive development expertise for the unix-goto shell navigation system - a high-performance Unix navigation tool with natural language support, sub-100ms cached navigation, and 100% test coverage. When to Use This Skill Use this skill when: Developing new features for unix-goto shell navigation system Implementing cache-based navigation optimizations Adding bookmarks, history, or navigation commands Following the standard 9-step feature addition workflow I...
36
23841 linux-administration bagelhole/devops-security-agent-skills
Linux Administration Core Linux system administration skills. Package Management Debian/Ubuntu apt update && apt upgrade -y apt install nginx apt remove nginx apt autoremove RHEL/CentOS dnf update dnf install nginx dnf remove nginx System Information uname -a Kernel info hostnamectl System info lscpu CPU info free -h Memory usage df -h Disk usage ip addr Network interfaces Log Management journalctl -u nginx Service logs journalctl -f Follow logs tail -f /var/log/syslog System logs dme...
36
23842 react-native teachingai/full-stack-skills
@json-render/react-native React Native renderer that converts JSON specs into native mobile component trees with standard components, data binding, visibility, actions, and dynamic props. Quick Start import { defineCatalog } from "@json-render/core" ; import { schema } from "@json-render/react-native/schema" ; import { standardComponentDefinitions , standardActionDefinitions , } from "@json-render/react-native/catalog" ; import { defineRegistry , Renderer , type Components } from "@json-render/r...
36
23843 json-canvas julianobarbosa/claude-code-skills
JSON Canvas Skill This skill enables skills-compatible agents to create and edit valid JSON Canvas files (.canvas) used in Obsidian and other applications. Overview JSON Canvas is an open file format for infinite canvas data. Canvas files use the .canvas extension and contain valid JSON following the JSON Canvas Spec 1.0. File Structure A canvas file contains two top-level arrays: { "nodes": [], "edges": [] } nodes (optional): Array of node objects edges (optional): Array of edge obje...
36
23844 openclaw-customizer petekp/claude-code-setup
OpenClaw Customizer Help the user configure, customize, and creatively leverage their OpenClaw instance. Approach Be imaginative and inventive. OpenClaw is a flexible system — suggest non-obvious combinations of features that solve real problems. Think beyond basic chat: cron jobs, multi-agent routing, hooks, channel-specific personas, memory pipelines, and automation patterns. When the user asks about a specific area, load the relevant reference file before responding. Reference Files Load thes...
36
23845 error-detective htlin222/dotfiles
Use this skill when Working on error detective tasks or workflows Needing guidance, best practices, or checklists for error detective Do not use this skill when The task is unrelated to error detective You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You ar...
36
23846 roo-conflict-resolution roocodeinc/roo-code
Roo Code Conflict Resolution Skill When to Use This Skill Use this skill when the task involves: Resolving merge conflicts for a specific pull request Rebasing a branch that has conflicts with the target branch Understanding and analyzing conflicting code changes Making intelligent decisions about which changes to keep, merge, or discard Using git history to inform conflict resolution decisions When NOT to Use This Skill Do NOT use this skill when: There are no merge conflicts to resolve The tas...
36
23847 ru dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
RU - Repo Updater A comprehensive Bash CLI for synchronizing dozens or hundreds of GitHub repositories. Beyond basic sync, RU includes a full AI-assisted code review system and agent-sweep capability for automatically processing uncommitted changes across your entire projects directory. Why This Exists When you work with 47+ repos (personal projects, forks, dependencies), keeping them synchronized manually is tedious. But synchronization is just the beginning—RU also orchestrates AI coding ag...
36
23848 pyspark-transformer jeremylongshore/claude-code-plugins-plus-skills
Pyspark Transformer Purpose This skill provides automated assistance for pyspark transformer tasks within the Data Pipelines domain. When to Use This skill activates automatically when you: Mention "pyspark transformer" in your request Ask about pyspark transformer patterns or best practices Need help with data pipeline skills covering etl, data transformation, workflow orchestration, and streaming data processing. Capabilities Provides step-by-step guidance for pyspark transformer Follows indus...
36
23849 caam dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
CAAM — Coding Agent Account Manager A Go CLI for instant account switching between fixed-cost AI coding subscriptions (Claude Max, GPT Pro, Gemini Ultra). When you hit rate limits, swap accounts in ~50ms instead of 30-60 seconds of browser OAuth friction. Why This Exists You're paying $200-275/month for fixed-cost AI coding subscriptions. These plans have rolling usage limits—not billing caps, but rate limits that reset over time. When you hit them mid-flow: The Problem: /login → browser op...
36
23850 openclaw-inter-instance aaaaqwq/claude-code-skills
OpenClaw 实例间通信 当使用此技能 需要给另一个 OpenClaw 实例发消息 跨机器远程执行命令 多 agent 协作任务 同步仓库/文件到远程实例 通信方式优先级 按可靠性和实时性排序,依次尝试: 1. sessions_send(最优,需配置) 直接 agent-to-agent 消息,实时双向。 前提 : 双方配置中开启: // ~/.openclaw/openclaw.json "tools" : { "agentToAgent" : { "enabled" : true } } 用法 : sessions_send(sessionKey="agent:<target-agent>:main", message="...") 优点 : 实时、双向、最简洁 缺点 : 默认禁用,需要两端都开启 2. nodes.run(远程命令执行) 通过已配对的 node 在远程机器上执行命令。 前提 : 目标机器已配对为 node 且在线( nodes status 检查) 用法 : nodes(action="run", node="<node-name>", command=["...
36