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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,591
总 Skills
165.7M
总安装量
2,748
贡献者
# Skill 仓库 描述 安装量
8801 filament-resource mwguerra/claude-code-plugins
FilamentPHP Resource Generation Skill Overview This skill generates complete FilamentPHP v4 resources including form schemas, table configurations, relation managers, and custom pages. All generated code follows official documentation patterns. Documentation Reference CRITICAL: Before generating any resource, read: /home/mwguerra/projects/mwguerra/claude-code-plugins/filament-specialist/skills/filament-docs/references/general/03-resources/ /home/mwguerra/projects/mwguerra/claude-code-plugins/fil...
1.2K
8802 file-name-wizard cygnusfear/agent-skills
Filename & Naming Convention Audit Instructions Perform systematic audit of all filenames and naming conventions in the codebase to identify inconsistencies, anti-patterns, and violations of naming standards. Phase 1: Discovery & Standard Extraction Step 1: Find All Files Use Glob to identify all files in the codebase: Source files ( .ts , .tsx , .js , .jsx , etc.) Config files Documentation files Test files Create comprehensive todo list of all files to audit. Step 2: Extract Naming Standards R...
1.2K
8803 planner am-will/codex-skills
Planner Agent Create detailed, phased implementation plans for bugs, features, or tasks. Process Phase 0: Research Investigate the codebase: Architecture and patterns Similar existing implementations Dependencies and frameworks Related components Analyze the request: Core requirements Challenges & edge cases Security/performance/UX considerations Phase 1: Clarify Requirements Before doing ANY documentation search: clarify requirements with user. This will narrow and aid you in finding the...
1.2K
8804 parallel-task am-will/codex-skills
Parallel Task Executor Use Orchestration Mode. Parse plan files and delegate tasks to parallel subagents. Process Step 1: Parse Request Extract from user request: Plan file: The markdown plan to read Sprint/Phase (optional): Which section to run If sprint not provided, ask user which to run. Step 2: Read & Parse Plan Find sprint/phase section (e.g., Sprint 1:) Extract task subsections (e.g., Task 1.1:) For each task, extract: Task ID and name Full content (description, location, acceptan...
1.2K
8805 read-github am-will/codex-skills
Read GitHub Docs Access GitHub repository documentation and code via the gitmcp.io MCP service. URL Conversion Convert GitHub URLs to gitmcp.io: github.com/owner/repo → gitmcp.io/owner/repo https://github.com/karpathy/llm-council → https://gitmcp.io/karpathy/llm-council CLI Usage The scripts/gitmcp.py script provides CLI access to repository docs. List Available Tools python3 scripts/gitmcp.py list-tools owner/repo Fetch Documentation Retrieves the full documentation file (README, docs, ...
1.2K
8806 bdd-feature-generator moxa/sw
No SKILL.md available for this skill. View on GitHub
1.2K
8807 flutter-performance flutter/skills
Flutter Performance Optimization Goal Analyzes and optimizes Flutter application performance by identifying jank, excessive rebuilds, and expensive rendering operations. Implements best practices for UI rendering, state management, and layout constraints. Utilizes Flutter DevTools, Chrome DevTools (for web), and integration tests to generate actionable performance metrics, ensuring frames render within the strict 16ms budget. Decision Logic Evaluate the target application using the following dec...
1.2K
8808 plan-harder am-will/codex-skills
Planner Agent Create detailed, phased implementation plans for bugs, features, or tasks. You make phased implementation plans with sprints and atomic tasks. Process Phase 0: Research Investigate the codebase: Architecture and patterns Similar existing implementations Dependencies and frameworks Related components Analyze the request: Core requirements Challenges and edge cases Security/performance/UX considerations Phase 1: Clarify Requirements Use request_user_input to resolve ambiguitie...
1.2K
8809 openai-docs-skill am-will/codex-skills
OpenAI Docs MCP Skill Overview Use the OpenAI developer documentation MCP server from the shell to search and fetch authoritative docs. Always do this for OpenAI platform work instead of relying on memory or non-official sources. Core rules Always use this skill for OpenAI API/SDK/Apps/Codex questions or when precise, current docs are required. Query the MCP server via the CLI wrapper in scripts/openai-docs-mcp.sh (do not rely on Codex MCP tools). Use search or list to find the best doc page, ...
1.2K
8810 gemini-computer-use am-will/codex-skills
Gemini Computer Use Quick start Source the env file and set your API key: cp env.example env.sh $EDITOR env.sh source env.sh Create a virtual environment and install dependencies: python -m venv .venv source .venv/bin/activate pip install google-genai playwright playwright install chromium Run the agent script with a prompt: python scripts/computer_use_agent.py \ --prompt "Find the latest blog post title on example.com" \ --start-url "https://example.com" \ --turn-limit 6 Browser ...
1.2K
8811 agent browser am-will/codex-skills
Agent Browser A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands. Installation npm recommended npm install -g agent-browser agent-browser install agent-browser install --with-deps From Source git clone https://github.com/vercel-labs/agent-browser cd agent-browser pnpm install pnpm build agent-browser install Quick Start agent-browser open example.com agent-browser snapshot agent-brows...
1.2K
8812 code-review llama-farm/llamafarm
Two-axis review of the diff between HEAD and a fixed point the user supplies: Standards — does the code conform to this repo's documented coding standards? Spec — does the code faithfully implement the originating issue / PRD / spec? Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings. The issue tracker should have been provided to you — run /setup-matt-pocock-skills if docs/agents/issue-tracker.md is missing. Process 1. Pin ...
1.2K
8813 image-ocr fearovex/claude-config
Image OCR Expert Expert in extracting, processing, and structuring text from images using OCR tools and techniques. Description This skill provides specialized knowledge for extracting text from images, including: Tool and library selection by use case (Tesseract, EasyOCR, PaddleOCR, cloud APIs) Image preprocessing to maximize OCR accuracy Post-processing and structuring of extracted text Handling handwriting, receipts, invoices, documents, screenshots Multilingual OCR and special character supp...
1.2K
8814 text-to-speech heygen-com/skills
ElevenLabs Text-to-Speech Generate natural speech from text - supports 70+ languages, multiple models for quality vs latency tradeoffs. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs import ElevenLabs client = ElevenLabs ( ) audio = client . text_to_speech . convert ( text = "Hello, welcome to ElevenLabs!" , voice_id = "JBFqnCBsd6RMkjVDRZzb" , George model_id = "eleven_multilingual_v2" ) with open ( "output.mp3" , "wb" ) as f ...
1.2K
8815 video-translate heygen-com/skills
Video Translation (HeyGen) Translate and dub existing videos into multiple languages, preserving lip-sync and natural speech patterns. Provide a video URL or HeyGen video ID — no need to create the video on HeyGen first. Authentication All requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable. curl -X POST "https://api.heygen.com/v2/video_translate" \ -H "X-Api-Key: $HEYGEN_API_KEY " \ -H "Content-Type: application/json" \ -d '{"video_url": "https://example.com/video...
1.2K
8816 algo binance/binance-skills-hub
Binance Algo Skill Algo request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /sapi/v1/algo/futures/order (DELETE) Cancel Algo Order(TRADE) algoId recvWindow Yes /sapi/v1/algo/futures/openOrders (GET) Query Current Algo Open Orders(USER_DATA) None recvWindow Yes /sapi/v1/algo/futures/historicalOrders (GET) Query Historical Algo Orders(USER...
1.2K
8817 derivatives-trading-coin-futures binance/binance-skills-hub
Binance Derivatives-trading-coin-futures Skill Derivatives-trading-coin-futures request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /dapi/v1/account (GET) Account Information (USER_DATA) None recvWindow Yes /dapi/v1/balance (GET) Futures Account Balance (USER_DATA) None recvWindow Yes /dapi/v1/positionSide/dual (GET) Get Current Position...
1.2K
8818 derivatives-trading-options binance/binance-skills-hub
Binance Derivatives-trading-options Skill Derivatives-trading-options request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /eapi/v1/bill (GET) Account Funding Flow (USER_DATA) currency recordId, startTime, endTime, limit, recvWindow Yes /eapi/v1/marginAccount (GET) Option Margin Account Information (USER_DATA) None recvWindow Yes /eapi/v1...
1.2K
8819 derivatives-trading-portfolio-margin-pro binance/binance-skills-hub
Binance Derivatives-trading-portfolio-margin-pro Skill Derivatives-trading-portfolio-margin-pro request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /sapi/v1/portfolio/bnb-transfer (POST) BNB transfer(USER_DATA) amount, transferSide recvWindow Yes /sapi/v1/portfolio/repay-futures-switch (POST) Change Auto-repay-futures Status(TRADE) autoR...
1.2K
8820 derivatives-trading-portfolio-margin binance/binance-skills-hub
Binance Derivatives-trading-portfolio-margin Skill Derivatives-trading-portfolio-margin request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. Quick Reference Endpoint Description Required Optional Authentication /papi/v1/balance (GET) Account Balance(USER_DATA) None asset, recvWindow Yes /papi/v1/account (GET) Account Information(USER_DATA) None recvWindow Yes /papi/v1/bnb-transfer (POST) BNB transfer (TRADE...
1.2K
8821 markdown-token-optimizer microsoft/github-copilot-for-azure
Markdown Token Optimizer This skill analyzes markdown files and suggests optimizations to reduce token consumption while maintaining clarity. When to Use Optimize markdown files for token efficiency Reduce SKILL.md file size or check for bloat Make documentation more concise for AI consumption Workflow Count - Calculate tokens (~4 chars = 1 token), report totals Scan - Find patterns: emojis, verbosity, duplication, large blocks Suggest - Table with location, issue, fix, savings estimate Summary ...
1.2K
8822 web-search-plus robbyczgw-cla/web-search-plus
Web Search Plus Stop choosing search providers. Let the skill do it for you. This skill connects you to 7 search providers (Serper, Tavily, Querit, Exa, Perplexity, You.com, SearXNG) and automatically picks the best one for each query. Shopping question? → Google results. Research question? → Deep research engine. Need a direct answer? → AI-synthesized with citations. Want privacy? → Self-hosted option. ✨ What Makes This Different? Just search — No need to think about which provider to use Smart...
1.2K
8823 doc openai/skills
doc Curated from OpenAI's skills repository. What it does Read, create, and edit .docx documents with formatting and layout fidelity via OpenAI's document skill. Source Upstream: https://github.com/openai/skills Category: documents How to use This catalogue entry advertises the skill in Open Design so the agent discovers it during planning. To run the full upstream workflow with its original assets, scripts, and references, install the upstream bundle into your active agent's skills directory: S...
1.2K
8824 feishu-calendar alextangson/feishu_skills
飞书日历 通过 Calendar API 管理日程。 Base URL : https://open.feishu.cn/open-apis/calendar/v4 日程操作 API 端点 方法 请求体示例 说明 创建日程 /calendars/{calendar_id}/events POST {"summary":"会议标题","start_time":{"timestamp":"1770508800"},"end_time":{"timestamp":"1770512400"}} 创建新日程 获取日程 /calendars/{calendar_id}/events/{event_id} GET - 查询日程详情 更新日程 /calendars/{calendar_id}/events/{event_id} PATCH {"summary":"新标题"} 修改日程 删除日程 /calendars/{calendar_id}/events/{event_id} DELETE - 删除日程 搜索日程 /calendars/{calendar_id}/events/search POST...
1.2K
8825 sensei microsoft/github-copilot-for-azure
Sensei "A true master teaches not by telling, but by refining." - The Skill Sensei Automates skill frontmatter improvement using the Ralph loop pattern - iteratively improving skills until they reach Medium-High compliance with passing tests, then checking token usage and prompting for action. Help When user says "sensei help" or asks how to use sensei, show this: ╔══════════════════════════════════════════════════════════════════╗ ║ SENSEI - Skill Frontmatter Compliance Improver ...
1.2K
8826 skill-authoring microsoft/github-copilot-for-azure
Authoring & Improving Grafana Skills How to write, review, and improve SKILL.md files so they pass the repo's CI gate and score well against the Anthropic-aligned rubric Tessl uses. Critical rules (always) Description is the primary trigger — third-person, ≤1024 chars, must include explicit "Use when..." phrasing AND list concrete trigger terms users naturally say. See references/descriptions.md for the pushy-description pattern that combats undertriggering. Body under 500 lines — split into ref...
1.2K
8827 markdown-url am-will/codex-skills
markdown.new URL Prefix Whenever you need to visit a website URL, you must: rewrite it to go through https://markdown.new/ , then visit the rewritten URL, and pull the Markdown content from that page for use in your answer/notes. Rewrite Rule Normalize the destination into an absolute URL with a scheme ( https:// preferred). Prefix it with https://markdown.new/ (do not drop the original scheme). Examples https://example.com -> https://markdown.new/https://example.com https://example.com/docs?a=1...
1.2K
8828 swarm-planner am-will/codex-skills
Swarm-Ready Planner Create implementation plans with explicit task dependencies optimized for parallel agent execution. This skill can be ran inside or outside of Plan Mode. Core Principles Explore Codebase : Investigate architecture, patterns, existing implementations, dependencies, and frameworks in use. Fresh Documentation First : Use Context7 for ANY external library, framework, or API before planning tasks Ask Questions : Clarify ambiguities and seek clarification on scope, constraints, or ...
1.2K
8829 vercel-react-best-practices am-will/codex-skills
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
1.2K
8830 llm-council am-will/codex-skills
LLM Council Skill Quick start Always check for an existing agents config file first ($XDG_CONFIG_HOME/llm-council/agents.json or ~/.config/llm-council/agents.json). If none exists, tell the user to run ./setup.sh to configure or update agents. The orchestrator must always ask thorough intake questions first, then generates prompts so planners do not ask questions. Even if the initial prompt is strong, ask at least a few clarifying questions about ambiguities, constraints, and success criteria. T...
1.2K
8831 role-creator am-will/codex-skills
Role Creator Overview Use this skill when the user wants to create, update, or troubleshoot custom subagent roles backed by [agents.<role>] and a role config_file . This skill installs the role into ~/.codex/config.toml (or a user-selected project config), writes the role-specific config file, and validates key support against codex-rs/core/config.schema.json . Default behavior is strict-minimal: configure only model , model_reasoning_effort , and developer_instructions unless the user explicitl...
1.2K
8832 tailwind-css bobmatnyc/claude-mpm-skills
Tailwind CSS v4 Expert guidance for Tailwind CSS v4, CSS-first configuration, modern utility patterns, and type-safe component styling with tailwind-variants. CSS-First Configuration Tailwind CSS v4 eliminates tailwind.config.ts in favor of CSS-only configuration. All configuration lives in CSS files using special directives. Core Directives: @import "tailwindcss" - Entry point that loads Tailwind @theme { } - Define or extend design tokens @theme static { } - Define tokens that should not gener...
1.2K
8833 social-media-marketing dengineproblem/agents-monorepo
Social Media Marketing Expert Comprehensive knowledge of social media strategy, content creation, community management, and platform optimization. Core Competencies platform_strategy : - "Platform selection and focus" - "Content pillars development" - "Posting schedule optimization" - "Hashtag strategy" - "Algorithm understanding" content_creation : - "Native platform formats" - "Visual content best practices" - "Video strategy" - "Ephemeral content (Stories)" - "User-generated content" communit...
1.2K
8834 start-issue vkehfdl1/marshroom
Start working on a Marshroom cart issue in the current repository. Critical Requirements state.json update is MANDATORY . After creating the branch, you MUST update the issue status to running in ${MARSHROOM_STATE:-~/.config/marshroom/state.json} . If this fails, stop and report the error — do NOT silently continue. Use marsh start if available; otherwise fall back to direct jq atomic write (see step 10). Steps Read ${MARSHROOM_STATE:-~/.config/marshroom/state.json} and parse the JSON Extract th...
1.2K
8835 sync october-academy/agent-plugins
Output style (plain words, no dashes, no hyphens) Write everything this skill produces, files and messages alike, in plain simple language. Talk to the reader as you , warm and direct like a colleague, and present every step as a recommendation they may run or skip, never an order. Keep technical terms that carry real meaning; explain each in plain words. Never use a dash or a hyphen as punctuation: no em dash, no en dash, and no hyphenated compounds. Write read only , not read-only . Say it in ...
1.2K
8836 taskfile-automation seabbs/claude-code-config
Task Automation System Use this skill when working with projects that use Task to provide easy-to-discover automation commands for development workflows. Core Principle IMPORTANT : Always prefer task commands over direct shell/language commands when a Taskfile is present. Task provides: Discoverability : task --list shows all available tasks Consistency : Standardised commands across different environments Documentation : Built-in descriptions and help Automation : Multi-step workflows (e.g., ta...
1.2K
8837 svg-logo-designer rknall/claude-skills
SVG Logo Designer This skill creates professional, scalable vector graphic (SVG) logos from design specifications, offering multiple variations and layout options. When to Use This Skill Activate this skill when the user requests: Create a logo from a description or specification Design a brand identity or visual mark Generate logo variations and concepts Create icons or symbols Design wordmarks or lettermarks Produce scalable graphics for branding Export logos in different layouts and styles Co...
1.2K
8838 grimmory-self-hosted-library aradotso/trending-skills
Grimmory Self-Hosted Library Manager Skill by ara.so — Daily 2026 Skills collection. Grimmory is a self-hosted application (successor to BookLore) for managing your entire book collection. It supports EPUBs, PDFs, MOBIs, AZW/AZW3, and comics (CBZ/CBR/CB7), with a built-in browser reader, annotations, Kobo/OPDS sync, KOReader progress sync, metadata enrichment, and multi-user support. Installation Requirements Docker and Docker Compose Step 1: Create .env Application APP_USER_ID = 1000 APP_GROUP...
1.2K
8839 witr-process-inspector aradotso/trending-skills
witr — Why Is This Running? Skill by ara.so — Daily 2026 Skills collection. witr is a Go CLI/TUI tool that answers "why is this running?" for any process, service, or port. Instead of leaving you to correlate ps , lsof , ss , systemctl , and docker ps manually, witr makes the causality chain explicit — showing where a running thing came from, how it was started, and what chain of supervisors/containers/shells is responsible. Installation Quickest (Unix) curl -fsSL https://raw.githubusercontent.c...
1.2K
8840 flutter-theming flutter/skills
Goal Updates and manages Flutter application styling by migrating legacy Material 2 implementations to Material 3, normalizing component themes, updating deprecated button classes, and adapting UI idioms for cross-platform consistency. Assumes a Flutter environment using Dart. Instructions Analyze Current Theme State Review the existing Flutter codebase to identify legacy Material 2 components, deprecated button classes ( FlatButton , RaisedButton , OutlineButton ), and outdated theme properties...
1.2K
8841 kimodo-motion-diffusion aradotso/trending-skills
Kimodo Motion Diffusion Skill by ara.so — Daily 2026 Skills collection. Kimodo is a kinematic motion diffusion model trained on 700 hours of commercially-friendly optical mocap data. It generates high-quality 3D human and humanoid robot motions controlled through text prompts and kinematic constraints (full-body keyframes, end-effector positions/rotations, 2D paths, 2D waypoints). Installation Clone the repository git clone https://github.com/nv-tlabs/kimodo.git cd kimodo Install with pip (cre...
1.2K
8842 nightingale-karaoke aradotso/trending-skills
Nightingale Karaoke Skill Skill by ara.so — Daily 2026 Skills collection. Nightingale is a self-contained, ML-powered karaoke application written in Rust (Bevy engine). It scans a local music folder, separates vocals from instrumentals (UVR Karaoke model or Demucs), transcribes lyrics with word-level timestamps (WhisperX), and plays back with synchronized highlighting, real-time pitch scoring, player profiles, and GPU shader / video backgrounds. Everything — ffmpeg, Python, PyTorch, ML models — ...
1.2K
8843 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
8844 avoid-feature-creep waynesutton/convexskills
Avoid Feature Creep for Agents Stop building features nobody needs. This skill helps you ship products that solve real problems without drowning in unnecessary complexity. Feature creep kills products. It delays launches, burns budgets, exhausts teams, and creates software nobody wants to use. The most successful products do fewer things well. The Core Problem Feature creep is the gradual accumulation of features beyond what your product needs to deliver value. It happens slowly, then all at...
1.2K
8845 fabro-workflow-factory aradotso/trending-skills
Fabro Workflow Factory Skill by ara.so — Daily 2026 Skills collection. Fabro is an open source AI coding workflow orchestrator written in Rust. It lets you define agent pipelines as Graphviz DOT graphs — with branching, loops, human approval gates, multi-model routing, and cloud sandbox execution — then run them as a persistent service. You define the process; agents execute it; you intervene only where it matters. Installation Via Claude Code (recommended) curl -fsSL https://fabro.sh/install.m...
1.2K
8846 aracli-deploy-management aradotso/trending-skills
Deploying OpenClaw Agent Systems Skill by ara.so — Daily 2026 Skills collection. A practical guide to deploying and managing OpenClaw-compatible AI agent systems. Covers infrastructure options, deployment methods, and the trade-offs between CLI, API, and MCP-based management. Infrastructure Options 1. Cloud VMs (AWS, GCP, Azure, Hetzner) Spin up VMs and run agents as containerized services. Example: Docker Compose on a cloud VM docker compose up -d agent-runtime Pros: Familiar ops tooling (Terr...
1.2K
8847 gemini-image johnlindquist/claude
Gemini Image Analysis Analyze images using Gemini Pro's vision capabilities. Prerequisites pip install google-generativeai export GEMINI_API_KEY=your_api_key CLI Reference Basic Image Analysis Analyze an image gemini -m pro -f /path/to/image.png "Describe this image in detail" With specific question gemini -m pro -f screenshot.png "What error message is shown?" Multiple images gemini -m pro -f image1.png -f image2.png "Compare these two images" Analysis Operations General Description ge...
1.2K
8848 google-calendar odyssey4me/agent-skills
Google Calendar Interact with Google Calendar for event management, scheduling, and availability checking. Installation Dependencies : pip install --user google-auth google-auth-oauthlib google-api-python-client keyring pyyaml Setup Verification After installation, verify the skill is properly configured: $SKILL_DIR /scripts/google-calendar.py check This will check: Python dependencies (google-auth, google-auth-oauthlib, google-api-python-client, keyring, pyyaml) Authentication configuration Con...
1.2K
8849 windows-ui-automation martinholovsky/claude-skills-generator
File Organization: This skill uses split structure. Main SKILL.md contains core decision-making context. See references/ for detailed implementations. 1. Overview Risk Level: HIGH - System-level access, process manipulation, input injection capabilities You are an expert in Windows UI Automation with deep expertise in: UI Automation Framework: UIA patterns, control patterns, automation elements Win32 API Integration: Window management, message passing, input simulation Accessibility Services...
1.2K
8850 openhanako-personal-ai-agent aradotso/trending-skills
OpenHanako Personal AI Agent Skill by ara.so — Daily 2026 Skills collection. OpenHanako is a desktop AI agent platform built on Electron that gives each agent persistent memory, a distinct personality, and the ability to autonomously operate your computer — read/write files, run terminal commands, browse the web, execute JavaScript, and manage schedules. Multiple agents can collaborate via channel group chats or task delegation. Installation Download & Run macOS Apple Silicon — download from re...
1.2K