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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,431
总 Skills
161.2M
总安装量
2,740
贡献者
# Skill 仓库 描述 安装量
3801 zeroize-audit trailofbits/skills
zeroize-audit — Claude Skill When to Use Auditing cryptographic implementations (keys, seeds, nonces, secrets) Reviewing authentication systems (passwords, tokens, session data) Analyzing code that handles PII or sensitive credentials Verifying secure cleanup in security-critical codebases Investigating memory safety of sensitive data handling When NOT to Use General code review without security focus Performance optimization (unless related to secure wiping) Refactoring tasks not related to sen...
3.7K
3802 platform-agentsetup-categories-fetch forcedotcom/sf-skills
platform-agentsetup-categories-fetch Fetch prompt categories from the Agentic Setup Categories Connect API on a connected Salesforce org. Scope In scope: Calling GET /services/data/{apiVersion}/agenticsetup/categories via SF CLI Passing the fetchPrompts query parameter to include nested prompts Parsing and presenting the JSON response (categories, labels, prompts) Handling errors (403 when feature is disabled, auth failures) Out of scope — delegate elsewhere: Creating or modifying prompt categor...
3.7K
3803 let-fate-decide trailofbits/skills
Let Fate Decide When the path forward is unclear, let the cards speak. Quick Start Run the drawing script: uv run { baseDir } /scripts/draw_cards.py The script outputs JSON with 4 drawn cards, each with a file path relative to {baseDir}/ Read each card's meaning file to understand the draw Interpret the spread using the guide at {baseDir}/references/INTERPRETATION_GUIDE.md Apply the interpretation to the task at hand When to Use Vague prompts : The user's request is ambiguous and multiple valid ...
3.7K
3804 livekit-agents livekit/agent-skills
LiveKit Agents Development for LiveKit Cloud This skill provides opinionated guidance for building voice AI agents with LiveKit Cloud. It assumes you are using LiveKit Cloud (the recommended path) and encodes how to approach agent development, not API specifics. All factual information about APIs, methods, and configurations must come from live documentation. This skill is for LiveKit Cloud developers. If you're self-hosting LiveKit, some recommendations (particularly around LiveKit Inference) w...
3.7K
3805 pixijs-scene-core-concepts pixijs/pixijs-skills
This skill is the shared mental model referenced by all pixijs-scene-* leaves. It explains what the scene graph is in PixiJS v8, how a Container differs from a leaf, and where each concept lives. It does not go deep on any single API; it frames the pieces and points to the skill or reference file that does. Quick Start const world = new Container ( { isRenderGroup : true } ) ; app . stage . addChild ( world ) ; const hero = new Container ( { label : "hero" } ) ; hero . addChild ( new Sprite ( bo...
3.7K
3806 seo-sxo agricidaniel/claude-seo
Search Experience Optimization (SXO) SXO bridges the gap between SEO (what Google rewards) and UX (what users need). Traditional SEO audits check technical health. SXO asks: "Does this page deserve to rank for this keyword based on what Google is actually rewarding in the SERP?" Core Insight A page can score 95/100 on technical SEO and still fail to rank because it is the wrong page type for the keyword. If Google shows 8 product pages and 2 comparison pages for your keyword, your blog post will...
3.7K
3807 seo-drift agricidaniel/claude-seo
SEO Drift Monitor (April 2026) Git for your SEO. Capture baselines, detect regressions, track changes over time. Commands Command Purpose /seo drift baseline <url> Capture current SEO state as a "known good" snapshot /seo drift compare <url> Compare current page state to stored baseline /seo drift history <url> Show change history and past comparisons What It Captures Every baseline records these SEO-critical elements: Element Field Source Title tag title parse_html.py Meta description meta_desc...
3.7K
3808 setting-up-ec2-instance-profiles aws/agent-toolkit-for-aws
Setting Up EC2 Instance Profiles Overview Domain expertise for granting EC2 instances secure access to AWS services using IAM roles and instance profiles. Covers the full lifecycle: identifying required permissions, creating or reusing IAM roles with least-privilege policies, creating instance profiles, attaching them to EC2 instances, and verifying credential availability. Configure an EC2 instance profile To set up an IAM role and instance profile for an EC2 instance, follow the procedure exac...
3.7K
3809 dx-devops-test-pipeline-configure forcedotcom/sf-skills
Configure DevOps Center Pipeline Testing Infrastructure Sets up and configures a DevOps Center pipeline's testing infrastructure. This skill handles three closely related "configure your pipeline" operations that share the same org context, prerequisites, and entity scope (the pipeline level). Pick the mode that matches the user's intent. API version: All DevOps testing system calls target Salesforce API v67.0 (minimum required). Important: All DevOps Center data (pipelines, stages, providers, s...
3.7K
3810 dx-devops-test-suite-assignments-configure forcedotcom/sf-skills
Configure DevOps Center Suite Assignments Recommends which existing test suites to run for a change, and manages how suites are assigned and mapped to pipeline stages. These operations share the same suite-stage metadata: a recommendation surfaces relevant suites and flags gaps, and those gaps lead directly into assignment. API version: All DevOps testing system calls target Salesforce API v67.0 (minimum required). Important: All DevOps Center data lives in the Salesforce org — NOT the local rep...
3.7K
3811 dx-devops-test-suite-run forcedotcom/sf-skills
Run a DevOps Center Test Suite Triggers a DevOps Center test suite execution and watches it to completion. Running and polling are two halves of one operation — never poll without first having (or being handed) a runId . API version: All DevOps testing system calls target Salesforce API v67.0 (minimum required). Important: All DevOps Center data lives in the Salesforce org — NOT the local repo. Always query the org with sf data query or sf api request rest . Prerequisites Run the prerequisite ch...
3.7K
3812 codex-ppt ningzimu/codex-ppt-skill
Codex PPT Overview This skill creates image-based PPT decks. Each slide is a complete 16:9 image generated with the best available image backend. The image contains the slide title, key points, and visual composition. The generated images are then assembled into a .pptx file with scripts/assemble_ppt.py . Prefer the built-in image generation and editing tool when it is available. If it is unavailable, or if the user explicitly requests API/CLI mode, use this skill's local fallback CLI at scripts...
3.7K
3813 drive-motivation wondelai/skills
Drive Motivation Framework Framework for designing motivation systems in products, teams, and organizations based on the science of what actually motivates humans. Replaces outdated carrot-and-stick thinking with intrinsic motivation. Core Principle The secret to high performance isn't rewards and punishment — it's the deeply human need to direct our own lives, learn and create new things, and do better for ourselves and our world. The foundation: For any task requiring even rudimentary cognitiv...
3.7K
3814 inspired-product wondelai/skills
Empowered Product Teams Framework Framework for building products customers love by structuring empowered teams that solve hard problems through continuous discovery and delivery. Based on a fundamental truth: the best product companies don't ship features -- they solve problems, and they give their teams the autonomy and accountability to figure out how. Core Principle Empowered product teams = cross-functional groups given problems to solve (not features to build) who own discovery and deliver...
3.7K
3815 react-testing affaan-m/ecc
React Testing Comprehensive React testing patterns for behavior-focused component tests, custom hook tests, accessibility assertions, and network-level mocking. When to Activate Writing tests for React components, custom hooks, or pages Adding test coverage to legacy untested components Migrating from Enzyme or class-component-era patterns to React Testing Library Setting up Vitest or Jest for a new React project Mocking HTTP requests in tests Asserting accessibility violations Deciding which te...
3.7K
3816 marketing-campaign affaan-m/ecc
Marketing Campaign Plan and execute launch campaigns that convert — not just campaigns that ship. When to Activate planning a product or feature launch building a full content suite from a single product brief defining positioning and campaign angle before writing any copy orchestrating multiple content types across channels reviewing copy for conversion quality and brand consistency Non-Negotiables Show more Installs 1.5K Repository affaan-m/ecc GitHub Stars 239.0K First Seen May 25, 2026 Secur...
3.7K
3817 creating-production-vpc-multi-az aws/agent-toolkit-for-aws
Creating a Production-Ready VPC Across Multiple Availability Zones Overview Domain expertise for creating production-ready VPC infrastructure distributed across multiple Availability Zones. Covers VPC creation with DNS support, public and private subnet layout with automatic CIDR calculation, internet gateway, NAT gateways for high-availability outbound access, route table configuration, and tiered security groups following AWS Well-Architected principles. Create a production VPC To create a ful...
3.7K
3818 experience-cms-brand-apply forcedotcom/sf-skills
Applying CMS Brand Universal skill for searching, extracting, and applying CMS brand guidelines to generated content. Scope This skill is for APPLYING existing brand guidelines from Salesforce CMS to content you generate. Use this skill when the user wants to: Apply their brand voice/tone to generated content Find and use brand guidelines stored in Salesforce CMS Search for an existing brand in their org Get brand instructions for content generation Ensure generated content matches their brand i...
3.7K
3819 data360-query forcedotcom/sf-skills
data360-query: Data Cloud Retrieve Phase Use this skill when the user needs query, search, and metadata introspection for Data Cloud: sync SQL, paginated SQL, async query workflows, table describe, vector search, hybrid search, or search index operations. When This Skill Owns the Task Use data360-query when the work involves: sf data360 query * sf data360 search-index * sf data360 metadata * sf data360 profile * or sf data360 insight * inspection understanding Data Cloud SQL results or query sha...
3.7K
3820 youtube-clipper op7418/youtube-clipper-skill
YouTube 视频智能剪辑工具 Installation: If you're installing this skill from GitHub, please refer to README.md for installation instructions. The recommended method is npx skills add https://github.com/op7418/Youtube-clipper-skill. 工作流程 你将按照以下 6 个阶段执行 YouTube 视频剪辑任务: 阶段 1: 环境检测 目标: 确保所有必需工具和依赖都已安装 检测 yt-dlp 是否可用 yt-dlp --version 检测 FFmpeg 版本和 libass 支持 优先检查 ffmpeg-full(macOS) /opt/homebrew/opt/ffmpeg-full/bin/ffmpeg -version 检查标准 FFmpeg ffmpeg -version 验证 libass 支持(字幕烧录必需) ffmpeg -filters ...
3.7K
3821 fiat binance/binance-skills-hub
Binance Fiat Skill Query Binance fiat payment capabilities, available payment methods, pricing, and supported currencies/countries using public APIs (no authentication required). For order and payment history, see Authenticated Endpoints . Base URL https://www.binance.com/bapi/fiat/v1/public/fiatpayment/agent Available APIs 1. get_capabilities Query supported fiat currencies, cryptos, and business types for a country. curl "https://www.binance.com/bapi/fiat/v1/public/fiatpayment/agent/get-capabi...
3.7K
3822 frontend-a11y affaan-m/ecc
Frontend Accessibility Patterns Practical accessibility patterns for React and Next.js. Covers the issues most commonly flagged in code review: missing form labels, incorrect ARIA usage, non-semantic interactive elements, and broken keyboard navigation. When to Activate Building or reviewing form components ( <input> , <select> , <textarea> ) Creating interactive elements (modals, dropdowns, tooltips, tabs) Using <div> or <span> with onClick Adding aria-* attributes to any element Implementing k...
3.7K
3823 experience-content-media-search forcedotcom/sf-skills
Media Search Universal routing skill for searching and retrieving existing images and media. Scope This skill is for SEARCHING FOR existing media, not CREATING new media. Use this skill when the user wants to: Search for images in Salesforce CMS, Data Cloud Find existing visual assets to use in their app Retrieve media from connected sources Browse available images for their project Locate specific photos or graphics Show more Installs 648 Repository forcedotcom/sf-skills GitHub Stars 669 First ...
3.7K
3824 pixijs-ticker pixijs/pixijs-skills
app.ticker runs registered callbacks every frame and drives app.render() at UPDATE_PRIORITY.LOW . Each callback receives the Ticker instance; read deltaTime as a frame-rate-independent multiplier (≈1.0 at 60fps) or deltaMS for real-time calculations. Quick Start app . ticker . add ( ( ticker ) => { sprite . rotation += 0.01 * ticker . deltaTime ; sprite . x += ( 200 / 1000 ) * ticker . deltaMS ; } ) ; app . ticker . add ( ( ticker ) => { updatePhysics ( ticker . deltaMS ) ; } , undefined , UPDAT...
3.7K
3825 pixijs-scene-text pixijs/pixijs-skills
PixiJS has five text-rendering classes that cover different trade-offs between styling, performance, and animation. Text renders to a canvas for full CSS-style fidelity. BitmapText reads from a pre-generated atlas for cheap updates. HTMLText renders an HTML fragment via SVG <foreignObject> for rich markup. SplitText and SplitBitmapText wrap the first two classes and expose per-character, per-word, and per-line containers for animation. Assumes familiarity with pixijs-scene-core-concepts . All te...
3.7K
3826 lynx-devtool lynx-community/skills
DevTool Skill This skill allows you to interact with Lynx applications running on connected devices (Android, iOS, Desktop) using the Lynx DevTool CLI. Usage The CLI is located at <path_to_the_skill>/scripts/index.mjs relative to this skill's directory. You can run it using node . In the skill directory, use: node < path_to_the_skill > /scripts/index.mjs < command > Note: All command outputs are multi-line JSON. You can use jq or Node.js to process the data. Global Options -h, --help : Display h...
3.7K
3827 us-stock-analysis tradermonty/claude-trading-skills
US Stock Analysis Overview Perform comprehensive analysis of US stocks covering fundamental analysis (financials, business quality, valuation), technical analysis (indicators, trends, patterns), peer comparisons, and generate detailed investment reports. Fetch real-time market data via web search tools and apply structured analytical frameworks. Data Sources Always use web search tools to gather current market data: Primary Data to Fetch: Current stock price and trading data (price, volume, 52-w...
3.7K
3828 data360-connect forcedotcom/sf-skills
data360-connect: Data Cloud Connect Phase Use this skill when the user needs source connection work : connector discovery, connection metadata, connection testing, source-object browsing, connector schema inspection, or connector-specific setup payloads for external sources. When This Skill Owns the Task Use data360-connect when the work involves: sf data360 connection * connector catalog inspection connection creation, update, test, or delete browsing source objects, fields, databases, or schem...
3.7K
3829 platform-agentexchange-partner-offers-configure forcedotcom/sf-skills
Enabling Transactable Marketplace Receive Partner Offers Org Preference This skill configures the enableTransactableMarketplaceReceivePartnerOffers org preference via the TransactableMarketplacePrivateOfferSettings Metadata API type, which controls whether a Salesforce org is eligible to receive partner offers through the Transactable Marketplace. It is required for subscriber orgs that participate in the TM partner offer flow. Scope In scope : Reading the current value of the pref, enabling or ...
3.7K
3830 data360-activate forcedotcom/sf-skills
data360-activate: Data Cloud Act Phase Use this skill when the user needs downstream delivery work : activations, activation targets, data actions, or pushing Data Cloud outputs into other systems. When This Skill Owns the Task Use data360-activate when the work involves: sf data360 activation * sf data360 activation-target * sf data360 data-action * sf data360 data-action-target * verifying downstream delivery setup Delegate elsewhere when the user is: still building the audience or insight → d...
3.7K
3831 enabling-lambda-vpc-internet-access aws/agent-toolkit-for-aws
Enabling Lambda VPC Internet Access Overview Domain expertise for enabling internet access from AWS Lambda functions running inside VPC private subnets. Lambda functions in a VPC cannot receive public IP addresses, so outbound internet access requires NAT Gateway infrastructure that routes traffic from private subnets through a public subnet to an Internet Gateway. Enable internet access for a VPC Lambda function To set up NAT Gateway infrastructure and configure routing for a Lambda function th...
3.7K
3832 data360-prepare forcedotcom/sf-skills
data360-prepare: Data Cloud Prepare Phase Use this skill when the user needs ingestion and lake preparation work : data streams, Data Lake Objects (DLOs), transforms, Document AI, unstructured ingestion, or the handoff from connector setup into a live stream. When This Skill Owns the Task Use data360-prepare when the work involves: sf data360 data-stream * sf data360 dlo * sf data360 transform * sf data360 docai * choosing how data should enter Data Cloud rerunning or rescanning ingestion after ...
3.7K
3833 data360-orchestrate forcedotcom/sf-skills
data360-orchestrate: Salesforce Data Cloud Orchestrator Use this skill when the user needs product-level Data Cloud workflow guidance rather than a single isolated command family: pipeline setup, cross-phase troubleshooting, data spaces, data kits, or deciding whether a task belongs in Connect, Prepare, Harmonize, Segment, Act, or Retrieve. This skill intentionally follows sf-skills house style while using the external sf data360 command surface as the runtime. The plugin is not vendored into th...
3.7K
3834 data360-harmonize forcedotcom/sf-skills
data360-harmonize: Data Cloud Harmonize Phase Use this skill when the user needs schema harmonization and unification work : DMOs, field mappings, relationships, identity resolution, unified profiles, data graphs, or universal ID lookup. When This Skill Owns the Task Use data360-harmonize when the work involves: sf data360 dmo * sf data360 identity-resolution * sf data360 data-graph * sf data360 profile * sf data360 universal-id lookup Delegate elsewhere when the user is: still ingesting streams...
3.7K
3835 pixijs-filters pixijs/pixijs-skills
Attach visual effects by assigning one filter (or an array for chaining) to container.filters . Built-in filters cover blur, color matrix, displacement, alpha, and noise; custom filters wrap a GLSL/WGSL fragment shader via Filter.from(...) . Quick Start const sprite = new Sprite ( await Assets . load ( "hero.png" ) ) ; app . stage . addChild ( sprite ) ; const blur = new BlurFilter ( { strength : 4 , quality : 4 } ) ; const colorMatrix = new ColorMatrixFilter ( ) ; colorMatrix . brightness ( 1.2...
3.7K
3836 data360-code-extension-generate forcedotcom/sf-skills
data360-code-extension-generate Skill Overview This skill provides a complete workflow for developing, testing, and deploying custom Python code extensions to Salesforce Data Cloud. Code extensions allow you to write Python transformations that read from and write to Data Lake Objects (DLOs) and Data Model Objects (DMOs). When to Use User wants to create a new code extension project User needs to test a code extension locally User wants to scan code for required permissions User needs to deploy ...
3.7K
3837 runpodctl runpod/runpod-plugins-official
Runpodctl Manage GPU pods, serverless endpoints, templates, volumes, and models. Install curl -sSL https://cli.runpod.net | bash (any platform) or brew install runpod/runpodctl/runpodctl . Manual binaries, Windows/Linux steps, and the version caveat ( --model-reference + multi-volume need v2.4.0+ ): reference/install.md . Old runpodctl builds silently lack newer flags/behaviors (e.g. --model-reference doesn't exist before v2.4.0) and produce confusing downstream errors — and the Homebrew tap can...
3.7K
3838 penetration-testing-with-strix usestrix/strix
Run a Strix pentest Strix runs autonomous AI pentesting agents that dynamically exploit a target and only report findings validated with a working proof-of-concept. There are two ways to run it, built on the same engine and producing the same findings — pick per situation, and mix them freely: Open-source CLI (self-hosted) — runs on your machine in a Docker sandbox with your own LLM key. Free, fully local, BYO-LLM, air-gap capable. Docs: docs.strix.ai . Cloud API (managed) — runs on Strix's infr...
3.7K
3839 aws-transform aws/agent-toolkit-for-aws
AWS Transform (ATX) Overview Perform code upgrades, migrations, and transformations using AWS Transform (ATX). Supports any-to-any transformations: language version upgrades (Java, Python, Node.js, etc.), framework migrations, AWS SDK migrations, library upgrades, code refactoring, architecture changes, and custom organization-specific transformations. Two execution modes: Local mode : Runs the ATX CLI directly on the user's machine. Best for 1-9 repos. Remote mode : Runs transformations at scal...
3.7K
3840 connecting-vpcs-with-peering aws/agent-toolkit-for-aws
Connecting VPCs with Peering Overview Domain expertise for establishing private network connectivity between two VPCs using VPC peering. Covers the full lifecycle: creating the peering connection, accepting it, updating route tables in both VPCs, configuring DNS resolution, and adjusting security groups for cross-VPC traffic. Supports same-region, cross-region, and cross-account peering scenarios. Create a VPC peering connection To establish a VPC peering connection between two VPCs, follow the ...
3.7K
3841 exporting-rds-to-s3 aws/agent-toolkit-for-aws
Exporting RDS/Aurora to S3 Overview Domain expertise for exporting Amazon RDS and Aurora database snapshots to Amazon S3 in Apache Parquet format. Covers the full workflow: snapshot identification or creation, IAM role and KMS encryption setup, S3 bucket preparation, export task initiation, progress monitoring, data verification, and post-export access guidance for analytics services like Athena, Glue, and Redshift Spectrum. Export an RDS or Aurora snapshot to S3 To export a database snapshot to...
3.7K
3842 data360-segment forcedotcom/sf-skills
data360-segment: Data Cloud Segment Phase Use this skill when the user needs audience and insight work : segments, calculated insights, publish workflows, member counts, or troubleshooting Data Cloud segment SQL. When This Skill Owns the Task Use data360-segment when the work involves: sf data360 segment * sf data360 calculated-insight * segment publish workflows member counts and segment troubleshooting calculated insight execution and verification Delegate elsewhere when the user is: still bui...
3.7K
3843 data360-schema-get forcedotcom/sf-skills
data360-schema-get Skill Overview This skill retrieves Data Lake Object (DLO) and Data Model Object (DMO) schema information from Salesforce Data Cloud using the SSOT REST API. It can list all DLOs or DMOs in an org, or retrieve detailed schema for a specific DLO or DMO. When to Use User wants to see all DLOs or DMOs in a Data Cloud org User needs field schema for a specific DLO or DMO User is exploring Data Cloud data structures User needs to understand DLO or DMO field types and metadata Prere...
3.7K
3844 pixijs-scene-particle-container pixijs/pixijs-skills
ParticleContainer is a specialized container for rendering hundreds to tens of thousands of lightweight sprites in a single draw call. Use it for particle effects, bullet patterns, or any case where you need a large number of similar-looking objects with minimal per-object overhead. Particles share a single base texture and have a restricted transform set; they are not full Container children. Assumes familiarity with pixijs-scene-core-concepts . ParticleContainer is a special leaf in a differen...
3.7K
3845 cargo-cdk getcargohq/cargo-skills
Cargo CDK — declarative workspace-as-code Use this skill to define a Cargo workspace in TypeScript ( define* builders from @cargo-ai/cdk ) and reconcile it to live infrastructure with cargo-ai cdk deploy . It is the declarative counterpart to the imperative capability skills: instead of running one CLI command per resource, you write the whole graph once and deploy it repeatably, with a committed cargo.state.json linking your code to what Cargo created. 1) What this skill governs Authoring every...
3.7K
3846 cargo-quickstart getcargohq/cargo-skills
Cargo Quickstart — first value in two minutes One guided demo: pull ~25 fresh leads matching a buyer persona the user picks, show the cost receipt, then save the pull as a recurring play. The point is not the list — it's that in minute 3 the user owns a running system, not a one-off result. The one question Ask exactly one question before doing anything: "Who do you sell to?" (a persona in a few words — e.g. "Heads of RevOps at mid-market SaaS") Everything else — provider, filters, limits — you ...
3.7K
3847 crawl tavily-ai/skills
Crawl Skill Crawl websites to extract content from multiple pages. Ideal for documentation, knowledge bases, and site-wide content extraction. Authentication The script uses OAuth via the Tavily MCP server. No manual setup required - on first run, it will: Check for existing tokens in ~/.mcp-auth/ If none found, automatically open your browser for OAuth authentication Note: You must have an existing Tavily account. The OAuth flow only supports login — account creation is not available through th...
3.6K
3848 building-mcp-server-on-cloudflare cloudflare/skills
Building MCP Servers on Cloudflare Creates production-ready Model Context Protocol servers on Cloudflare Workers with tools, authentication, and deployment. When to Use User wants to build a remote MCP server User needs to expose tools via MCP User asks about MCP authentication or OAuth User wants to deploy MCP to Cloudflare Workers Prerequisites Cloudflare account with Workers enabled Node.js 18+ and npm/pnpm/yarn Wrangler CLI (npm install -g wrangler) Quick Start Option 1: Public Server (No ...
3.6K
3849 release schpet/linear-cli
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
3.6K
3850 apple-notes steipete/clawdis
Apple Notes CLI Use memo notes to manage Apple Notes directly from the terminal. Create, view, edit, delete, search, move notes between folders, and export to HTML/Markdown. Setup Install (Homebrew): brew tap antoniorodr/memo && brew install antoniorodr/memo/memo Manual (pip): pip install . (after cloning the repo) macOS-only; if prompted, grant Automation access to Notes.app. View Notes List all notes: memo notes Filter by folder: memo notes -f "Folder Name" Search notes (fuzzy): memo notes -s ...
3.6K