███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 15551 | slides-generator | hummingbot/skills |
slides-generator Create Hummingbot-branded presentation slides in PDF format from markdown content. Features two-column layouts and Mermaid diagram rendering for technical architecture and flowcharts. Workflow Step 1: Get Markdown Content Ask the user to provide a markdown file or paste markdown content. The content should follow this format: Presentation Title 1. First Slide Title Content for the first slide. Can include: - Bullet points - Bold text and * italic text * - Code blocks 2. Sec...
|
224 |
| 15552 | gpd-cli | rudrankriyam/app-store-connect-cli-skills |
Google Play Developer CLI Manage Google Play Developer Console using the gpd command-line tool.
|
223 |
| 15553 | docx | sickn33/antigravity-awesome-skills |
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
|
223 |
| 15554 | onboarding | everyinc/compound-engineering-plugin |
Onboarding CRO You are an expert in user onboarding and activation. Your goal is to help users reach their "aha moment" as quickly as possible and establish habits that lead to long-term retention. Initial Assessment Check for product marketing context first: If .agents/product-marketing.md exists (or .claude/product-marketing.md , or the legacy product-marketing-context.md filename, in older setups), read it before asking questions. Use that context and only ask for information not already cove...
|
223 |
| 15555 | clawdbot-backup | sundial-org/awesome-openclaw-skills |
ClawdBot Backup Skill Backup, restore, and sync your ClawdBot configuration across devices directly from Clawdbot. Overview This skill helps you: Backup all ClawdBot data and settings Restore from backups Sync between multiple machines Version control your configuration Automate backup routines Migrate to new devices ClawdBot Directory Structure Key Locations ~/.claude/ Main ClawdBot directory ├── settings.json Global settings ├── settings.local.json Local...
|
223 |
| 15556 | sveltekit | bobmatnyc/claude-mpm-skills |
SvelteKit Development You are an expert in SvelteKit, TypeScript, Tailwind CSS, and modern web application development. Key Principles Write concise, technical SvelteKit code with accurate TypeScript examples Use functional and declarative programming patterns; avoid classes Prefer iteration and modularization over code duplication Use descriptive variable names with auxiliary verbs (isLoading, hasError) Structure files: component logic, markup, styles, helpers, types Project Structure src/ ├── ...
|
223 |
| 15557 | academic-writing-style | shining319/claude-code-single-person-workflow |
Academic Writing Style Transform provided information into well-written academic assignments that match the user's natural writing style, avoiding obvious AI patterns while maintaining professional quality. Core Approach Generate content that reads naturally and fluently, with: Clear chapter organization using descriptive headings Natural topic progression without rigid "firstly...secondly...finally" structures Moderate use of first-person perspective appropriate to assignment type Specific ...
|
223 |
| 15558 | gpui-action | longbridge/gpui-component |
Overview Actions provide declarative keyboard-driven UI interactions in GPUI. Key Concepts: Define actions with actions! macro or [derive(Action)] Bind keys with cx.bind_keys() Handle with .on_action() on elements Context-aware via key_context() Quick Start Simple Actions use gpui::actions; actions!(editor, [MoveUp, MoveDown, Save, Quit]); const CONTEXT: &str = "Editor"; pub fn init(cx: &mut App) { cx.bind_keys([ KeyBinding::new("up", MoveUp, Some(CONTEXT)), KeyBinding:...
|
223 |
| 15559 | configure-notifications | yeachan-heo/oh-my-claudecode |
Configure Notifications Set up OMC notification integrations so you're alerted when sessions end, need input, or complete background tasks. Routing Detect which provider the user wants based on their request or argument: If the trigger or argument contains "telegram" → follow the Telegram section If the trigger or argument contains "discord" → follow the Discord section If the trigger or argument contains "slack" → follow the Slack section If no provider is specified, use AskUserQuestion: Questi...
|
223 |
| 15560 | salesforce-development | mindrally/skills |
Salesforce Development Patterns Lightning Web Component with Wire Service Use @wire decorator for reactive data binding with Lightning Data Service or Apex methods. @wire fits LWC's reactive architecture and enables Salesforce performance optimizations. Bulkified Apex Trigger with Handler Pattern Apex triggers must be bulkified to handle 200+ records per transaction. Use handler pattern for separation of concerns, testability, and recursion prevention. Queueable Apex for Async Processing Us...
|
223 |
| 15561 | react-native-r3f | mindrally/skills |
React Native R3F (React Three Fiber) You are an expert in React, Vite, Tailwind CSS, three.js, React Three Fiber, and Next UI. Core Principles Write concise, technical responses with accurate React examples Employ functional, declarative programming paradigms; avoid class-based approaches Prioritize iteration and modularity over code duplication Use descriptive variable names incorporating auxiliary verbs (e.g., isLoading, hasError) Directory naming: lowercase with dashes (e.g., components/aut...
|
223 |
| 15562 | typescript-react-patterns | asyrafhussin/agent-skills |
TypeScript React Patterns Comprehensive TypeScript patterns for React applications. Contains 35+ rules across 7 categories for building type-safe, maintainable React code. When to Apply Reference these guidelines when: Typing React component props Creating custom hooks with TypeScript Handling events with proper types Building generic, reusable components Fixing TypeScript errors in React code Rule Categories by Priority Priority Category Impact Prefix 1 Component Typing CRITICAL comp- 2 Hoo...
|
223 |
| 15563 | swift | mindrally/skills |
Swift / SwiftUI You are an expert in Swift and SwiftUI development for Apple platforms including iOS, macOS, watchOS, and tvOS. Core Principles Produce clear, readable SwiftUI code using latest versions First think step-by-step - describe your plan for what to build in pseudocode Deliver correct, up to date, bug free, fully functional and working code Focus on readability over being performant Leave NO todo's, placeholders or missing pieces Architecture Follow MVVM architecture pattern Use str...
|
223 |
| 15564 | gpd-cli-usage | rudrankriyam/app-store-connect-cli-skills |
GPD CLI usage Use this skill when you need to run or design gpd commands for Google Play Developer Console. Command discovery Always use --help to confirm commands and flags. gpd --help gpd publish --help gpd monetization --help Flag conventions Use explicit long flags (for example: --package , --track , --status ). No interactive prompts; destructive operations require --confirm . Use --all when the user wants all pages. Output formats Default output is minified JSON. Use --pretty for readable ...
|
222 |
| 15565 | canvas-design | skillcreatorai/ai-agent-skills |
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files. Complete this in two steps: Design Philosophy Creation (.md file) Express by creating it on a canvas (.pdf file or .png file) First, undertake this task: DESIGN PHILOSOPHY CREATION To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through: Form, space, color, composition Images, graphics, shapes, ...
|
222 |
| 15566 | strategic-planning | 404kidwiz/claude-supercode-skills |
Strategic Planning Purpose Analyze the founder's business and current situation to deliver 3 specific, actionable next moves that will drive measurable results in marketing or sales. Execution Logic Check $ARGUMENTS first to determine execution mode: If $ARGUMENTS is empty or not provided: Respond with: "strategic-planning loaded, proceed with additional details about your current situation or business goals" Then wait for the user to provide their requirements in the next message. If $ARGUMENTS...
|
222 |
| 15567 | axiom-avfoundation-ref | charleswiltgen/axiom |
AVFoundation Audio Reference Quick Reference // AUDIO SESSION SETUP import AVFoundation try AVAudioSession.sharedInstance().setCategory( .playback, // or .playAndRecord, .ambient mode: .default, // or .voiceChat, .measurement options: [.mixWithOthers, .allowBluetooth] ) try AVAudioSession.sharedInstance().setActive(true) // AUDIO ENGINE PIPELINE let engine = AVAudioEngine() let player = AVAudioPlayerNode() engine.attach(player) e...
|
222 |
| 15568 | sync-horizon | incept5/eve-skillpacks |
Sync Horizon Synchronize eve-skillpacks with the latest state of the eve-horizon repository. Prerequisites The eve-horizon repo must be at ../eve-horizon (sibling directory) .sync-state.json must exist in the repo root (create from template if missing) .sync-map.json must exist in the repo root Architecture: Orchestrator + Parallel Workers This sync follows an orchestrator pattern. You (the orchestrator) stay lightweight — discovering what changed and dispatching focused workers. Each worker han...
|
222 |
| 15569 | ui-ux-pro-max | binjuhor/shadcn-lar |
UI/UX Pro Max - Design Intelligence Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations. When to Apply This Skill should be used when the task involves UI structure, visual design decisions, interaction patterns, or user experience quality control . Must Use This Skill m...
|
222 |
| 15570 | gpui-entity | longbridge/gpui-component |
Overview An Entity<T> is a handle to state of type T, providing safe access and updates. Key Methods: entity.read(cx) → &T - Read-only access entity.read_with(cx, |state, cx| ...) → R - Read with closure entity.update(cx, |state, cx| ...) → R - Mutable update entity.downgrade() → WeakEntity<T> - Create weak reference entity.entity_id() → EntityId - Unique identifier Entity Types: Entity<T>: Strong reference (increases ref count) WeakEntity<T>: Weak reference (doesn't prevent cleanup, return...
|
222 |
| 15571 | code-review-checklist | vudovn/antigravity-kit |
Code Review Checklist Overview Provide a systematic checklist for conducting thorough code reviews. This skill helps reviewers ensure code quality, catch bugs, identify security issues, and maintain consistency across the codebase. When to Use This Skill Use when reviewing pull requests Use when conducting code audits Use when establishing code review standards for a team Use when training new developers on code review practices Use when you want to ensure nothing is missed in reviews Use when c...
|
222 |
| 15572 | rust-async-patterns | sickn33/antigravity-awesome-skills |
Rust Async Patterns Production patterns for async Rust programming with Tokio runtime, including tasks, channels, streams, and error handling. When to Use This Skill Building async Rust applications Implementing concurrent network services Using Tokio for async I/O Handling async errors properly Debugging async code issues Optimizing async performance Core Concepts 1. Async Execution Model Future (lazy) → poll() → Ready(value) | Pending ↑ ↓ Waker ← Runtime schedules 2. Key Abstractions...
|
222 |
| 15573 | indicator-expert | marketcalls/openalgo-indicator-skills |
OpenAlgo Indicator Expert Skill Environment Python with openalgo, pandas, numpy, plotly, dash, streamlit, numba Data sources: OpenAlgo (Indian markets via client.history() , client.quotes() , client.depth() ), yfinance (US/Global) Real-time: OpenAlgo WebSocket ( client.connect() , subscribe_ltp , subscribe_quote , subscribe_depth ) Indicators: openalgo.ta (ALWAYS — 100+ Numba-optimized indicators) Charts: Plotly with template="plotly_dark" Dashboards: Plotly Dash with dash-bootstrap-components O...
|
222 |
| 15574 | symfony:tdd-with-pest | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:tdd-with-pest<div
|
222 |
| 15575 | macos-app-design | petekp/agent-skills |
macOS App Design & Development Guide for designing and implementing native-feeling, "good Mac citizen" apps: fast, elegant, accessible, and deeply integrated with macOS workflows. Two Rules That Beat Everything Else Prefer system components and conventions over bespoke UI—fastest path to "feels right on Mac" If you customize bars, backgrounds, borders, or control chrome: stop and justify it Quick Reference: Mac Citizen Checklist Area Requirement Menu Bar Standard layout (App/File/Edit/View/Win...
|
222 |
| 15576 | blind-spot-detective | jwynia/agent-skills |
Blind Spot Detective Purpose Systematically identify what's missing in non-fiction writing—both blind spots (inherent limitations of your approach) and blank spots (gaps that could be addressed). Provides frameworks for finding omissions, testing assumptions, and ensuring comprehensive coverage. Core Principle What you can't see matters more than what you can. Identifying what's missing is harder than recognizing what's included. Systematic interrogation reveals gaps that casual review misses...
|
222 |
| 15577 | list-builder | jwynia/agent-skills |
List Builder: Entropy List Curation Skill You build comprehensive, high-quality lists for creative randomization. These lists feed into entropy tools that inject unpredictability into story development. Core Principle Good entropy lists have three properties: Size — Large enough (50-200+ items) to feel genuinely random Variety — Spans the full possibility space, not just obvious examples Specificity — Concrete enough to spark ideas, not vague categories LLMs are good at research, categoriza...
|
222 |
| 15578 | identity-denial | jwynia/agent-skills |
Identity Denial: Transformation Arc Skill You help writers create compelling narratives centered on protagonists who refuse to acknowledge what they are becoming. This framework explores how denial operates as both character trait and plot engine. Core Pattern The Identity Denial Arc centers on tension between self-perception and reality. The protagonist insists "I'm not X" while exhibiting increasingly undeniable X behavior. The Denial Spectrum Level Description Example Surface Denial "I'm ...
|
222 |
| 15579 | gpd-betagroups | rudrankriyam/app-store-connect-cli-skills |
GPD Beta Groups Use this skill when managing beta testers, groups, and build distribution on Google Play. List and manage testers gpd publish testers list --package com.example.app --track internal gpd publish testers list --package com.example.app --track beta gpd publish testers add --package com.example.app --track internal --group testers@example.com Distribute builds to testing tracks gpd publish release --package com.example.app --track internal --status completed gpd publish release --pac...
|
221 |
| 15580 | campaign-planning | anthropics/knowledge-work-plugins |
Campaign Planning Skill Frameworks and guidance for planning, structuring, and executing marketing campaigns. Campaign Framework: Objective, Audience, Message, Channel, Measure Every campaign should be built on this five-part framework: 1. Objective Define what success looks like before planning anything else. Awareness : increase brand or product visibility (measured by reach, impressions, share of voice) Consideration : drive engagement and education (measured by content engagement, email sign...
|
221 |
| 15581 | axiom-swiftui-layout | charleswiltgen/axiom |
SwiftUI Adaptive Layout Overview Discipline-enforcing skill for building layouts that respond to available space rather than device assumptions. Covers tool selection, size class limitations, iOS 26 free-form windows, and common anti-patterns. Core principle: Your layout should work correctly if Apple ships a new device tomorrow, or if iPadOS adds a new multitasking mode next year. Respond to your container, not your assumptions about the device. When to Use This Skill "How do I make this lay...
|
221 |
| 15582 | documentation-engineer | 404kidwiz/claude-supercode-skills |
Documentation Engineer Expert in creating clear, comprehensive, and maintainable technical documentation. When This Skill Activates Activates when you: Ask to write documentation Request README creation Mention "docs" or "document this" Need API documentation Documentation Types 1. README Every project should have a README with: Project Name Brief description (what it does, why it exists) Quick Start Installation and usage in 3 steps or less. Installation Detailed installation instructions. ...
|
221 |
| 15583 | synapse-reinst | s-hiraoku/synapse-a2a |
Synapse Re-Instruction Restore Synapse A2A agent identity and instructions after /clear or context reset. When to Use After running /clear (or equivalent context reset) When the agent no longer recognizes Synapse commands When A2A communication has stopped working After any event that clears the agent's initial instructions Usage Run the reinst script to output your full Synapse instructions: From the source tree python plugins/synapse-a2a/skills/synapse-reinst/scripts/reinst.py From a synced ...
|
221 |
| 15584 | vision-multimodal | lobbi-docs/claude |
Leverage Claude's vision capabilities for image analysis, document processing, and multimodal understanding. When to Use This Skill - Image analysis and description - Document/PDF processing - Screenshot analysis - OCR-like text extraction - Visual comparison - Chart and diagram interpretation Supported Formats | JPEG | ✓ | Photos, natural scenes | PNG | ✓ | Screenshots, UI, text | GIF | ✓ | Animated (first frame) | WebP | ✓ | Modern, compressed | PDF | ✓ | Documents...
|
221 |
| 15585 | playwright-cli | testdino-hq/playwright-skill |
Browser Automation with playwright-cli Quick start open new browser playwright-cli open navigate to a page playwright-cli goto https://playwright.dev interact with the page using refs from the snapshot playwright-cli click e15 playwright-cli type "page.click" playwright-cli press Enter take a screenshot (rarely used, as snapshot is more common) playwright-cli screenshot close the browser playwright-cli close Commands Core playwright-cli open open and navigate right away playwright-cli open...
|
221 |
| 15586 | clerk-auth | davila7/claude-code-templates |
Clerk Authentication Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync Patterns Next.js App Router Setup Complete Clerk setup for Next.js 14/15 App Router. Includes ClerkProvider, environment variables, and basic sign-in/sign-up components. Key components: ClerkProvider: Wraps app for auth context , : Pre-built auth forms : User menu with session management Code_example Show more Installs 1 Repository sickn33/agentic…e-skills GitHub Stars 44.7K Fir...
|
221 |
| 15587 | qiskit | davila7/claude-code-templates |
Qiskit Overview Qiskit is the world's most popular open-source quantum computing framework with 13M+ downloads. Build quantum circuits, optimize for hardware, execute on simulators or real quantum computers, and analyze results. Supports IBM Quantum (100+ qubit systems), IonQ, Amazon Braket, and other providers. Key Features: 83x faster transpilation than competitors 29% fewer two-qubit gates in optimized circuits Backend-agnostic execution (local simulators or cloud hardware) Comprehensive algo...
|
221 |
| 15588 | pydeseq2 | davila7/claude-code-templates |
PyDESeq2 Overview PyDESeq2 is a Python implementation of DESeq2 for differential expression analysis with bulk RNA-seq data. Design and execute complete workflows from data loading through result interpretation, including single-factor and multi-factor designs, Wald tests with multiple testing correction, optional apeGLM shrinkage, and integration with pandas and AnnData. When to Use This Skill This skill should be used when: Analyzing bulk RNA-seq count data for differential expression Comparin...
|
221 |
| 15589 | lamindb | davila7/claude-code-templates |
No SKILL.md available for this skill. View on GitHub
|
221 |
| 15590 | hmdb-database | davila7/claude-code-templates |
HMDB Database Overview The Human Metabolome Database (HMDB) is a comprehensive, freely available resource containing detailed information about small molecule metabolites found in the human body. When to Use This Skill This skill should be used when performing metabolomics research, clinical chemistry, biomarker discovery, or metabolite identification tasks. Database Contents HMDB version 5.0 (current as of 2025) contains: 220,945 metabolite entries covering both water-soluble and lipid-so...
|
221 |
| 15591 | string-database | davila7/claude-code-templates |
STRING Database Skill This skill allows you to query the STRING database programmatically using a bundled Python CLI wrapper. Prerequisites uv : Read the uv skill and follow its Setup instructions to ensure uv is installed and on PATH. User Notification : If LICENSE_NOTIFICATION.txt does not already exist in this skill directory then (1) prominently notify the user to check the terms at https://string-db.org/cgi/access , then (2) create the file recording the notification text and timestamp. Cor...
|
221 |
| 15592 | nosql-expert | davila7/claude-code-templates |
NoSQL Expert Patterns (Cassandra & DynamoDB) Overview This skill provides professional mental models and design patterns for distributed wide-column and key-value stores (specifically Apache Cassandra and Amazon DynamoDB). Unlike SQL (where you model data entities), or document stores (like MongoDB), these distributed systems require you to model your queries first. When to Use Designing for Scale: Moving beyond simple single-node databases to distributed clusters. Technology Selection: Evalu...
|
221 |
| 15593 | neuropixels-analysis | davila7/claude-code-templates |
Neuropixels Data Analysis Overview Comprehensive toolkit for analyzing Neuropixels high-density neural recordings using current best practices from SpikeInterface, Allen Institute, and International Brain Laboratory (IBL). Supports the full workflow from raw data to publication-ready curated units. When to Use This Skill This skill should be used when: Working with Neuropixels recordings (.ap.bin, .lf.bin, .meta files) Loading data from SpikeGLX, Open Ephys, or NWB formats Preprocessing neural r...
|
221 |
| 15594 | terraform-skill | sickn33/antigravity-awesome-skills |
Terraform Skill for Claude Comprehensive Terraform and OpenTofu guidance covering testing, modules, CI/CD, and production patterns. Based on terraform-best-practices.com and enterprise experience. When to Use This Skill Activate this skill when: Creating new Terraform or OpenTofu configurations or modules Setting up testing infrastructure for IaC code Deciding between testing approaches (validate, plan, frameworks) Structuring multi-environment deployments Implementing CI/CD for infrastructu...
|
221 |
| 15595 | devcontainer | jwynia/agent-skills |
Devcontainer Diagnostic Diagnose devcontainer and Docker development environment problems. Help create reproducible, fast-starting development environments that work consistently across VS Code, GitHub Codespaces, and team members. When to Use This Skill Use this skill when: Setting up a new devcontainer Container startup is too slow Configuration errors or conflicts Different behavior in VS Code vs Codespaces Multi-service development environment needed Do NOT use this skill when: Writing...
|
221 |
| 15596 | ts-google | pproenca/dot-skills |
Comprehensive TypeScript style guide based on Google's internal standards, designed for AI agents and LLMs. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: - Writing new TypeScript code - Organizing modules and imports - Designing type annotations and interfaces - Creating classes and functions - Reviewing code for style consistency - Refactoring existing TypeScript code Rul...
|
221 |
| 15597 | memory-manager | learnwy/skills |
Memory Manager Personal Use Only - This skill is configured for wangyang.learnwy's personal AI memory management. Persistent memory system for AI assistants. Load this skill at the start of every session. ⚠️ CRITICAL: File Operation Rules Due to AI IDE sandbox restrictions, NEVER use Write/SearchReplace tools to modify memory files. MUST use RunCommand tool to execute bash scripts: RunCommand: bash {skill_dir}/scripts/write-memory.sh SOUL.md "content" RunCommand: bash {skill_dir}/scripts/append-...
|
220 |
| 15598 | mongodb-query-and-index-optimize | romiluz13/mongodb-agent-skills |
MongoDB Query and Index Optimization Query patterns and indexing strategies for MongoDB, maintained by MongoDB. Contains 42 rules across 5 categories , prioritized by impact. Indexes are the primary tool for query performance—most slow queries are missing an appropriate index. When to Apply Reference these guidelines when: Writing new MongoDB queries or aggregations Creating or reviewing indexes for collections Debugging slow queries (COLLSCAN, high execution time) Reviewing explain() output See...
|
220 |
| 15599 | hello-replacer | muku314115/lol |
Hello Replacer Replace all occurrences of the word "hello" (case-insensitive) with "fuckk" across every file in the project. Steps Use Grep to find all files containing the word "hello" (case-insensitive). For each file found, use Read to load its contents. Use Edit with replace_all: true to replace each casing variant: hello → fuckk Hello → Fuckk HELLO → FUCKK Report the list of files modified and the total number of replacements made. Important Skip binary files, images, and lock files (e.g., ...
|
220 |
| 15600 | memory-lancedb-pro | cortexreach/memory-lancedb-pro-skill |
memory-lancedb-pro Plugin Maintenance Guide Overview memory-lancedb-pro is an enhanced long-term memory plugin for OpenClaw . It replaces the built-in memory-lancedb plugin with advanced retrieval capabilities, multi-scope memory isolation, and a management CLI. Repository : https://github.com/win4r/memory-lancedb-pro License : MIT | Language : TypeScript (ESM) | Runtime : Node.js via OpenClaw Gateway Architecture ┌─────────────────────────────────────────────────────────┐ │ in...
|
220 |