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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,465
总 Skills
91.0M
总安装量
2,582
贡献者
# Skill 仓库 描述 安装量
4801 microcopy lobehub/lobehub
LobeHub UI Microcopy Guidelines Brand: Where Agents Collaborate - Focus on collaborative agent system, not just "generation". Fixed Terminology Chinese English 空间 Workspace 助理 Agent 群组 Group 上下文 Context 记忆 Memory 连接器 Integration 技能 Skill 助理档案 Agent Profile 话题 Topic 文稿 Page 社区 Community 资源 Resource 库 Library 模型服务商 Provider 评测 Evaluation 基准 Benchmark 数据集 Dataset 用例 Test Case Brand Principles Create : One sentence → usable Agent; clear next step Collaborate : Multi-agent; shared Context; controlled...
1.2K
4802 humanizer blader/humanizer
Humanizer: Remove AI Writing Patterns You are a writing editor that identifies and removes signs of AI-generated text to make writing sound more natural and human. This guide is based on Wikipedia's "Signs of AI writing" page, maintained by WikiProject AI Cleanup. Your Task When given text to humanize: Identify AI patterns - Scan for the patterns listed below Rewrite problematic sections - Replace AI-isms with natural alternatives Preserve meaning - Keep the core message intact Maintain voice - ...
1.2K
4803 wiki-switch ar9av/obsidian-wiki
Wiki Switch — Manage Multiple Vault Profiles Each vault is a complete config file at ~/.obsidian-wiki/config.<name> . The active vault is whichever file ~/.obsidian-wiki/config symlinks to. Switching vaults means re-pointing that symlink. Dispatch Parse the invocation and route to the right section: Invocation Action /wiki-switch <name> → Switch /wiki-switch list → List /wiki-switch show [name] → Show /wiki-switch new <name> → New /wiki-switch (no args) → List (treat as list) Show more
1.2K
4804 agentic-os affaan-m/everything-claude-code
Agentic OS Treat Claude Code as a persistent runtime / operating system rather than a chat session. This skill codifies the architecture used by production agentic setups: a kernel config that routes tasks to specialist agents, persistent file-based memory, scheduled automation, and a JSON/markdown data layer. When to Activate Building a multi-agent workflow inside Claude Code Setting up persistent Claude Code automation that survives session restarts Creating a "personal OS" or "agentic OS" for...
1.2K
4805 homelab-network-readiness affaan-m/everything-claude-code
Homelab Network Readiness Use this skill before changing a home or small-lab network that mixes VLANs, Pi-hole or another local DNS resolver, firewall rules, and remote VPN access. This is a planning and review skill. Do not turn it into copy-paste router, firewall, or VPN configuration unless the target platform, current topology, rollback path, console access, and maintenance window are all known. When to Use Show more
1.2K
4806 code-quality tursodatabase/turso
Code Quality Review Review $ARGUMENTS (or the whole app if no argument is given) for code quality issues. Work through every step below in order and report all findings with file paths and line numbers. Step 1 — Run the linter first Before reading any code manually, get a baseline from the automated tools: pnpm run lint List every error and warning. Fix all errors before proceeding — lint errors are not negotiable. Warnings should be reviewed and resolved unless there is a documented exception. ...
1.2K
4807 session-wrap ai-native-camp/camp-2
Session Wrap Skill Comprehensive session wrap-up workflow with multi-agent analysis. Execution Flow ┌─────────────────────────────────────────────────────┐ │ 1. Check Git Status │ ├─────────────────────────────────────────────────────┤ │ 2. Phase 1: 4 Analysis Agents (Parallel) │ │ ┌─────────────────┬─────────────────┐ │ │ │ doc-updater │ automation- │ │ │ │ (docs update) │ scout │ │ │ ├─...
1.2K
4808 acquisition-channel-advisor deanpeters/product-manager-skills
Purpose Guide product managers through evaluating whether to scale, test, or kill an acquisition channel based on unit economics (CAC, LTV, payback), customer quality (retention, NRR), and scalability (magic number, volume potential). Use this to make data-driven go-to-market decisions and optimize channel mix for sustainable growth. This is not a channel strategy framework—it's a financial lens for channel evaluation that helps you avoid scaling unprofitable channels or killing channels with fi...
1.2K
4809 ai-shaped-readiness-advisor deanpeters/product-manager-skills
Purpose Assess whether your product work is "AI-first" (using AI to automate existing tasks faster) or "AI-shaped" (fundamentally redesigning how product teams operate around AI capabilities). Use this to evaluate your readiness across 5 essential PM competencies for 2026 , identify gaps, and get concrete recommendations on which capability to build first. Key Distinction: AI-first is cute (using Copilot to write PRDs faster). AI-shaped is survival (building a durable "reality layer" that both h...
1.2K
4810 recommendation-canvas deanpeters/product-manager-skills
Purpose Evaluate and propose AI product solutions using a structured canvas that assesses business outcomes, customer outcomes, problem framing, solution hypotheses, positioning, risks, and value justification. Use this to build a comprehensive, defensible recommendation for stakeholders and decision-makers—especially when proposing AI-powered features or products that carry higher uncertainty and risk. This is not a feature spec—it's a strategic proposal that articulates why this AI solution is...
1.2K
4811 add-provider-doc lobehub/lobehub
Adding New AI Provider Documentation Complete workflow for adding documentation for a new AI provider. Overview Create usage documentation (EN + CN) Add environment variable documentation (EN + CN) Update Docker configuration files Update .env.example Prepare image resources Step 1: Create Provider Usage Documentation Required Files docs/usage/providers/{provider-name}.mdx (English) docs/usage/providers/{provider-name}.zh-CN.mdx (Chinese) Key Requirements 5-6 screenshots showing the process Cove...
1.2K
4812 vitest-midscene-e2e web-infra-dev/midscene-skills
Vitest Midscene E2E Modules Module Role Vitest TypeScript test framework. Provides describe / it / expect /hooks for test organization, assertions, and lifecycle. Midscene AI-driven UI automation. Interacts with UI elements via natural language — no fragile selectors. Core API: aiAct . Supported platforms: Web — WebTest (Playwright Chromium): ctx.agent + ctx.page Android — AndroidTest (ADB + scrcpy): ctx.agent only iOS — IOSTest (WebDriverAgent): ctx.agent only Workflow Step 1: Clone boilerplate...
1.2K
4813 unit-test-scheduled-async giuseppe-trisciuoglio/developer-kit
Unit Testing @Scheduled and @Async Methods Overview This skill provides patterns for unit testing @Scheduled and @Async methods using JUnit 5. It covers testing async logic without actual async executors, verifying CompletableFuture results, using Awaitility for async assertions, mocking scheduled task execution, and testing async error handling without waiting for real scheduling intervals. When to Use Use this skill when: Testing @Scheduled method logic Testing @Async method behavior Verifying...
1.2K
4814 unit-test-mapper-converter giuseppe-trisciuoglio/developer-kit
Unit Testing Mappers and Converters Overview This skill provides patterns for unit testing MapStruct mappers and custom converter classes. It covers testing field mapping accuracy, null handling, type conversions, nested object transformations, bidirectional mapping, enum mapping, and partial updates for comprehensive mapping test coverage. When to Use Use this skill when: Testing MapStruct mapper implementations Testing custom entity-to-DTO converters Testing nested object mapping Verifying nul...
1.2K
4815 unit-test-caching giuseppe-trisciuoglio/developer-kit
Unit Testing Spring Caching Overview This skill provides patterns for unit testing Spring caching annotations (@Cacheable, @CacheEvict, @CachePut) without full Spring context. It covers testing cache behavior, hits/misses, invalidation strategies, cache key generation, and conditional caching using in-memory cache managers. When to Use Use this skill when: Testing @Cacheable method caching Testing @CacheEvict cache invalidation Testing @CachePut cache updates Verifying cache key generation Testi...
1.2K
4816 turborepo-monorepo giuseppe-trisciuoglio/developer-kit
Turborepo Monorepo Overview Provides comprehensive guidance for working with Turborepo monorepos in TypeScript/JavaScript projects. Turborepo is a high-performance build system written in Rust that optimizes task execution through intelligent caching, parallelization, and dependency graph analysis. This skill covers workspace creation, task configuration, framework integration (Next.js, NestJS, Vite), testing setup, CI/CD pipelines, and performance optimization. When to Use Use this skill when: ...
1.2K
4817 angular-developer affaan-m/everything-claude-code
Angular Developer Guidelines Always analyze the project's Angular version before providing guidance, as best practices and available features can vary significantly between versions. If creating a new project with Angular CLI, do not specify a version unless prompted by the user. When generating code, follow Angular's style guide and best practices for maintainability and performance. Use the Angular CLI for scaffolding components, services, directives, pipes, and routes to ensure consistency. O...
1.2K
4818 plan-orchestrate affaan-m/everything-claude-code
Plan Orchestrate Bridge a plan document to /orchestrate custom by emitting one ready-to-paste invocation per step. The skill is generative only — it never executes /orchestrate . The user pastes each line when ready. When to Activate User has a multi-step plan document (PRD, RFC, implementation plan) and wants to drive it through /orchestrate . User says "orchestrate this plan", "give me orchestrate prompts for each step", "compose chains for this plan". A step-by-step plan exists but the user d...
1.2K
4819 ecc-guide affaan-m/everything-claude-code
ECC Guide Use this skill when a user needs help understanding, navigating, installing, or choosing parts of Everything Claude Code. When To Use Use this skill when the user: asks what ECC includes wants help finding a skill, command, agent, hook, rule, or install profile is new to the repository and needs a guided path asks "how do I do X with ECC?" asks which ECC components fit a project needs a lightweight explanation of how commands, skills, agents, hooks, and rules relate is confused by inst...
1.2K
4820 rover apollographql/skills
Apollo Rover CLI Guide Rover is the official CLI for Apollo GraphOS. It helps you manage schemas, run composition locally, publish to GraphOS, and develop supergraphs on your local machine. Quick Start Step 1: Install macOS/Linux curl -sSL https://rover.apollo.dev/nix/latest | sh npm (cross-platform) npm install -g @apollo/rover Windows PowerShell iwr 'https://rover.apollo.dev/win/latest' | iex Step 2: Authenticate Interactive authentication (opens browser) rover config auth Or set en...
1.2K
4821 langchain4j-ai-services-patterns giuseppe-trisciuoglio/developer-kit
LangChain4j AI Services Patterns This skill provides guidance for building declarative AI Services with LangChain4j using interface-based patterns, annotations for system and user messages, memory management, tools integration, and advanced AI application patterns that abstract away low-level LLM interactions. When to Use Use this skill when: Building declarative AI-powered interfaces with minimal boilerplate code Creating type-safe AI services with Java interfaces and annotations Implementing c...
1.2K
4822 unit-test-config-properties giuseppe-trisciuoglio/developer-kit
Unit Testing Configuration Properties and Profiles Overview This skill provides patterns for unit testing @ConfigurationProperties bindings, environment-specific configurations, and property validation using JUnit 5. It covers testing property name mapping, type conversions, validation constraints, nested structures, and profile-specific configurations without full Spring context startup. When to Use Use this skill when: Testing @ConfigurationProperties property binding Testing property name map...
1.2K
4823 langchain4j-vector-stores-configuration giuseppe-trisciuoglio/developer-kit
LangChain4J Vector Stores Configuration Configure vector stores for Retrieval-Augmented Generation applications with LangChain4J. Overview Vector stores are essential components for RAG (Retrieval-Augmented Generation) systems, enabling efficient storage and retrieval of document embeddings for semantic search. LangChain4J provides a unified abstraction over multiple vector database backends including PostgreSQL/pgvector, Pinecone, MongoDB Atlas, Milvus, Neo4j, and in-memory stores for developme...
1.2K
4824 push-to-registry hashicorp/agent-skills
Configure Packer templates to push build metadata to HCP Packer registry. Reference: [HCP Packer Registry](https://developer.hashicorp.com/hcp/docs/packer) Note: HCP Packer is free for basic use. Builds push metadata only (not actual images), adding minimal overhead (<1 minute). Basic Registry Configuration ``` packer { required_version = ">= 1.7.7" } variable "image_name" { type = string default = "web-server" } locals { timestamp = regex_replace(timestamp(), "[- TZ:]", "") } ...
1.2K
4825 gget affaan-m/everything-claude-code
gget Use this skill when a task needs quick bioinformatics lookup across genomic reference databases with the gget CLI or Python package. When to Use Finding Ensembl IDs, gene metadata, transcript details, or sequences. Running quick BLAST or BLAT lookups without building a full local pipeline. Fetching reference genome links and annotations from Ensembl. Querying protein structure, pathway, cancer, expression, or disease-association modules through a single interface. Creating a reproducible fi...
1.2K
4826 posthog-instrumentation posthog/posthog-for-claude
PostHog Instrumentation Skill Help users add PostHog analytics, event tracking, and feature flags to their code. When to Use User asks to "add PostHog" or "add analytics" User wants to track events or user actions User needs to implement feature flags User asks about instrumenting their code Workflow Identify the framework (React, Next.js, Python, Node.js, etc.) Check for existing PostHog setup Add appropriate instrumentation Code Patterns JavaScript/TypeScript // Event tracking posthog.captur...
1.2K
4827 langchain4j-mcp-server-patterns giuseppe-trisciuoglio/developer-kit
LangChain4j MCP Server Implementation Patterns Implement Model Context Protocol (MCP) servers with LangChain4j to extend AI capabilities with standardized tools, resources, and prompt templates. Overview The Model Context Protocol (MCP) is a standardized protocol for connecting AI applications to external data sources and tools. LangChain4j provides MCP server implementation patterns that enable AI systems to dynamically discover and execute tools, access resources, and use prompt templates thro...
1.2K
4828 unit-test-application-events giuseppe-trisciuoglio/developer-kit
Unit Testing Application Events Overview This skill provides comprehensive patterns for testing Spring ApplicationEvent publishers and event listeners using JUnit 5. It covers testing event publishing, listener execution, event propagation, and both synchronous and asynchronous event handling without requiring full Spring context startup. When to Use Use this skill when: Testing ApplicationEventPublisher event publishing Testing @EventListener method invocation Verifying event listener logic and...
1.2K
4829 product-strategy phuryn/pm-skills
Product Strategy Canvas Metadata Name : product-strategy Description : Generate a comprehensive product strategy using the 9-section Product Strategy Canvas. Covers vision, market segments, costs, value propositions, trade-offs, metrics, growth, capabilities, and defensibility. Triggers : product strategy, strategy canvas, strategic plan, product strategy document Instructions You are an experienced product strategist developing a comprehensive product strategy for $ARGUMENTS. Your task is to cr...
1.2K
4830 gtm-strategy phuryn/pm-skills
GTM Strategy Overview Create a comprehensive go-to-market strategy for a product launch. This skill covers marketing channels, messaging development, success metrics definition, and launch planning. When to Use Planning a product launch Creating a GTM plan from scratch Defining a launch strategy for a new market Developing product-to-market fit strategy Preparing a product go-live roadmap How It Works Step 1: Gather Research Data The system will help you load and analyze early research about you...
1.2K
4831 motion-advanced affaan-m/everything-claude-code
Motion Advanced Complex, interactive, and physics-based animation patterns. Requires motion-foundations to be set up first. Use these when motion-patterns is not enough. When to Activate Building drag-to-dismiss sheets, swipe gestures, or reorderable lists Animating text word-by-word, character-by-character, or as a live counter Drawing SVG paths, morphing icons, or animating circular progress Writing a custom animation hook ( useScrollReveal , magnetic button, cursor follower) Sequencing multi-...
1.2K
4832 tts marswaveai/skills
tts Convert any text into speech audio. Supports two backends (Kokoro local, Noiz cloud), two modes (simple or timeline-accurate), and per-segment voice control. Triggers text to speech / tts / speak / say voice clone / dubbing epub to audio / srt to audio / convert to audio 语音 / 说 / 讲 / 说话 Simple Mode — text to audio speak is the default — the subcommand can be omitted: Basic usage (speak is implicit) python3 skills/tts/scripts/tts.py -t "Hello world" add -o path to save python3 skills/tts/sc...
1.2K
4833 add-setting-env lobehub/lobehub
Adding Environment Variable for User Settings Add server-side environment variables to configure default values for user settings. Priority : User Custom > Server Env Var > Hardcoded Default Steps 1. Define Environment Variable Create src/envs/<domain>.ts : import { createEnv } from '@t3-oss/env-nextjs' ; import { z } from 'zod' ; export const get < Domain > Config = ( ) => { return createEnv ( { server : { YOUR_ENV_VAR : z . coerce . number ( ) . min ( MIN ) . max ( MAX ) . optional ( ) , } , r...
1.2K
4834 asc-cli-usage rudrankriyam/asc-skills
asc cli usage Use this skill when you need to run or design asc commands for App Store Connect. Command discovery Always use --help to discover commands and flags. asc --help asc builds --help asc builds list --help Flag conventions Use explicit long flags (e.g., --app , --output ). No interactive prompts; destructive operations require --confirm . Use --paginate when the user wants all pages. Output formats Default output is minified JSON. Use --output table or --output markdown only for human-...
1.2K
4835 uspto-database affaan-m/everything-claude-code
USPTO Database Use this skill when a task needs official United States patent or trademark records from USPTO systems. When to Use Searching granted patents or pre-grant publications. Checking patent application status, file-wrapper data, assignments, or public prosecution history. Looking up trademark status, documents, or assignment history. Building reproducible prior-art, portfolio, or IP landscape research logs. Comparing USPTO records with secondary tools such as Google Patents, Lens.org, ...
1.2K
4836 mle-workflow affaan-m/everything-claude-code
Machine Learning Engineering Workflow Use this skill to turn model work into a production ML system with clear data contracts, repeatable training, measurable quality gates, deployable artifacts, and operational monitoring. When to Activate Planning or reviewing a production ML feature, model refresh, ranking system, recommender, classifier, embedding workflow, or forecasting pipeline Converting notebook code into a reusable training, evaluation, batch inference, or online inference pipeline Des...
1.2K
4837 motion-foundations affaan-m/everything-claude-code
Motion Foundations The base layer of the motion system. Defines every value, constraint, and rule that downstream skills ( motion-patterns , motion-advanced ) inherit. Load this skill before any animation work begins. When to Activate Starting any animated component from scratch Setting up tokens, spring presets, or easing values Implementing prefers-reduced-motion support Debugging hydration mismatches from animation initial states Evaluating whether an animation should exist at all Outputs Thi...
1.2K
4838 motion-patterns affaan-m/everything-claude-code
Motion Patterns Copy-paste patterns for the most common UI animation needs. Every pattern here is built on motion-foundations tokens and springs. Do not define new duration or easing values here — import them. When to Activate Animating a button, card, modal, or toast notification Building list entrances with stagger Setting up page transitions in Next.js App Router Adding entrance or exit animations to conditional content Implementing scroll-reveal, scroll-linked progress, or sticky story secti...
1.2K
4839 pixijs-migration-v8 pixijs/pixijs-skills
This skill is a breaking-change checklist for bringing a v7 codebase up to v8. Work top-down through the categories; the list maps each v7 pattern to its v8 replacement. Quick Start Install the single package, then port in this order: imports → Application init → Graphics → Text → events → shaders/filters → cleanup. const app = new Application ( ) ; await app . init ( { width : 800 , height : 600 } ) ; document . body . appendChild ( app . canvas ) ; const g = new Graphics ( ) . rect ( 0 , 0 , 1...
1.2K
4840 keyid-agent-kit-mcp aradotso/trending-skills
KeyID Agent Kit — MCP Email Tools for AI Agents Skill by ara.so — Daily 2026 Skills collection. KeyID Agent Kit gives AI agents (Claude, Cursor, or any MCP client) a real, working email address with 27 tools via the Model Context Protocol. No signup, no API keys to acquire manually, no cost. Powered by KeyID.ai . What It Does Provisions a real email address for your AI agent automatically Exposes 27 MCP tools: send, receive, reply, forward, search, contacts, drafts, webhooks, auto-reply, signatu...
1.2K
4841 sf-ai-agentforce-testing jaganpro/sf-skills
Expert testing engineer specializing in Agentforce agent testing, topic/action coverage analysis, and agentic fix loops. Execute agent tests, analyze failures, and automatically fix issues via sf-ai-agentscript (or sf-ai-agentforce-legacy for existing agents). Core Responsibilities - Test Execution: Run agent tests via `sf agent test run` with coverage analysis - Test Spec Generation: Create YAML test specifications for agents - Coverage Analysis: Track topic selection accuracy, action invo...
1.2K
4842 pol-probe-advisor deanpeters/product-manager-skills
Purpose Guide product managers through selecting the right Proof of Life (PoL) probe type (of 5 flavors) based on their hypothesis, risk, and available resources. Use this when you need to eliminate a specific risk or test a narrow hypothesis, but aren't sure which validation method to use. This interactive skill ensures you match the cheapest prototype to the harshest truth—not the prototype you're most comfortable building. This is not a tool for deciding if you should validate (you should). I...
1.2K
4843 swot-analysis phuryn/pm-skills
SWOT Analysis Metadata Name : swot-analysis Description : Perform a detailed SWOT analysis for a product. Identifies strengths, weaknesses, opportunities, and threats with actionable recommendations. Triggers : SWOT analysis, strengths weaknesses, SWOT matrix, strategic assessment Instructions You are a strategic analyst conducting a SWOT analysis for $ARGUMENTS. Your task is to thoroughly evaluate the internal and external factors that will impact product success and competitive positioning. In...
1.2K
4844 single-cell-rna-qc anthropics/knowledge-work-plugins
Single-Cell RNA-seq Quality Control Automated QC workflow for single-cell RNA-seq data following scverse best practices. When to Use This Skill Use when users: Request quality control or QC on single-cell RNA-seq data Want to filter low-quality cells or assess data quality Need QC visualizations or metrics Ask to follow scverse/scanpy best practices Request MAD-based filtering or outlier detection Supported input formats: .h5ad files (AnnData format from scanpy/Python workflows) .h5 files (10X G...
1.2K
4845 provider-test-patterns hashicorp/agent-skills
Provider Acceptance Test Patterns Patterns for writing acceptance tests using terraform-plugin-testing with the Plugin Framework . Source: HashiCorp Testing Patterns References (load when needed): references/checks.md — statecheck, plancheck, knownvalue types, tfjsonpath, comparers references/sweepers.md — sweeper setup, TestMain, dependencies references/ephemeral.md — ephemeral resource testing, echoprovider, multi-step patterns Test Lifecycle The framework runs each TestStep through: plan → ap...
1.2K
4846 threejs-webgl freshtechbro/claudedesignskills
Three.js WebGL/WebGPU Development Overview Three.js is the industry-standard JavaScript library for creating 3D graphics in web browsers using WebGL and WebGPU. This skill provides comprehensive guidance for building performant, interactive 3D experiences including scenes, cameras, renderers, geometries, materials, lights, textures, and animations. Core Concepts Scene Graph Architecture Three.js uses a hierarchical scene graph where all 3D objects are organized in a tree structure: Scene ├── Cam...
1.2K
4847 make-interfaces-feel-better affaan-m/everything-claude-code
Details that make interfaces feel better Great interfaces rarely come from a single thing. It's usually a collection of small details that compound into a great experience. Apply these principles when building or reviewing UI code. Quick Reference Category When to Use Typography Text wrapping, font smoothing, tabular numbers Layout & Spacing Border radius, optical alignment, shadows, image outlines Animations Interruptible animations, enter/exit transitions, icon animations Core Principles 1. Co...
1.2K
4848 react-three-fiber vercel-labs/json-render
@json-render/react-three-fiber React Three Fiber renderer for json-render. 19 built-in 3D components. Two Entry Points Entry Point Exports Use For @json-render/react-three-fiber/catalog threeComponentDefinitions Catalog schemas (no R3F dependency, safe for server) @json-render/react-three-fiber threeComponents , ThreeRenderer , ThreeCanvas , schemas R3F implementations and renderer Usage Pattern Pick the 3D components you need from the standard definitions: import { defineCatalog } from "@json-r...
1.2K
4849 skill-authoring-workflow deanpeters/product-manager-skills
Purpose Create or update PM skills without chaos. This workflow turns rough notes, workshop content, or half-baked prompt dumps into compliant skills/<skill-name>/SKILL.md assets that actually pass validation and belong in this repo. Use it when you want to ship a new skill without "looks good to me" roulette. Key Concepts Dogfood First Use repo-native tools and standards before inventing a custom process: scripts/find-a-skill.sh scripts/add-a-skill.sh scripts/build-a-skill.sh scripts/test-a-ski...
1.2K
4850 strategy-compare marketcalls/vectorbt-backtesting-skills
Create a strategy comparison script. Arguments Parse $ARGUMENTS as: symbol followed by strategy names $0 = symbol (e.g., SBIN, RELIANCE, NIFTY) Remaining args = strategies to compare (e.g., ema-crossover rsi donchian) If only a symbol is given with no strategies, compare: ema-crossover, rsi, donchian, supertrend. If "long-vs-short" is one of the strategies, compare longonly vs shortonly vs both for the first real strategy. Instructions Read the vectorbt-expert skill rules for reference patterns ...
1.2K