Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →

sundial-org/awesome-openclaw-skills

194 skills31.4k installs123k starsGitHub

Install

npx skills add https://github.com/sundial-org/awesome-openclaw-skills

Skills in this repo

1Stock Market ProStock Market Pro is a CLI-based financial analysis tool providing real-time quotes, professional candlestick and line charts with technical indicators (MA5/20/60), and fundamental valuation metrics (PE, EPS, ROE, Market Cap). Developers use it to integrate stock monitoring and technical analysis into workflows without managing API keys. Key workflows include fetching instant price updates via the price command, generating high-resolution PNG charts across multiple timeframes (1mo to 5y), analyzing earnings calendars with consensus estimates, and viewing 10-day historical trends in ASCII format. Supports global markets including US stocks (AAPL, NVDA, TSLA), Korean equities (005930.KS Samsung), crypto pairs (BTC-USD, ETH-KRW), and Forex. Built on yfinance, mplfinance, and rich libraries running on Python 3.11+ with automatic dependency management via uv. Real-time price quotes and day ranges for stocks, crypto, and Forex without API4kinstalls2OntologyThe ontology skill Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access. A typed vocabulary + constraint system for representing knowledge as a verifiable graph. Everything is an entity with a type, properties, and relations to other entities. Every mutation is validated against type constraints before committing. `` Entity: { id, type, properties, relations, created, updated } Relation: { from_id, relation_type, to_id, properties } `` Trigger Action --------- -------- "Remember that..." Create/update entity "What do I know about X?" Query graph "Link X to Y" Create relation "Show all tasks for project Z" Graph traversal "What depends on X?" Dependency query Planning multi-step work Model as graph transformations Skill needs shared state Read/write ontology objects3.4kinstalls3Exa Web Search Freeexa-web-search-free is an agent skill for neural search through the Exa MCP server configured in mcporter without requiring an API key. Setup verifies mcporter list exa or adds https://mcp.exa.ai/mcp with mcporter config add exa. Core tools include web_search_exa for current news and facts with optional type auto, fast, or deep, get_code_context_exa for GitHub and Stack Overflow examples with adjustable tokensNum between 1000 and 50000, and company_research_exa for business intelligence on named companies. Advanced tools such as deep_search_exa, crawling_exa, people_search_exa, and deep_researcher_start are available through an exa-full config URL listing all tool names. Usage examples call mcporter with query, numResults, tokensNum, and companyName parameters. Tips recommend fast type for quick lookups, deep for thorough research, and lower token counts for focused code snippets. Resources link to the exa-mcp-server GitHub repo, npm package, and Exa docs for further patterns.2.8kinstalls4Finance Newsfinance-news is an AI-powered market briefing CLI packaged as an OpenClaw agent skill for stock headlines, index snapshots, and portfolio-aware summaries. First-time setup runs finance-news setup to enable RSS feeds such as WSJ, Barron's, CNBC, and Yahoo Finance, choose US, Europe, and Japan indices, wire WhatsApp or Telegram delivery, set English or German default language, and schedule morning or evening cron jobs. Commands generate finance-news briefing --morning or --evening briefings, finance-news market overviews with optional JSON output, portfolio CRUD via CSV at config/portfolio.csv, and per-ticker finance-news news SYMBOL lookups. AI summaries use the Gemini CLI with styles for summary, analysis, or headlines. Automated cron scripts morning.sh and evening.sh target 6:30 AM and 1:00 PM Pacific on weekdays with optional WhatsApp send. Lobster workflow YAML adds approval gates before delivery. The skill integrates with openbb-quote for quotes and OpenClaw message tooling. Dependencies include Python 3.10+, feedparser, gemini-cli authentication, and a fifteen-minute news cache directory.2.7kinstalls5Memory SetupMemory Setup enables Moltbot and Clawdbot agents to maintain persistent context through vector-based memory search across MEMORY.md files, daily logs, and past sessions. Developers use this skill when deploying agents that need to recall prior conversations, decisions, project history, and user preferences without retraining. The workflow covers enabling memorySearch in config, structuring memory directories (MEMORY.md, logs/, projects/, groups/, system/), choosing embedding providers (Voyage, OpenAI, or local), and tuning retrieval parameters (minScore, maxResults). Critical for agents that serve as persistent assistants rather than stateless chat interfaces.1.6kinstalls6Ffmpeg Video EditorThe ffmpeg-video-editor skill is designed for generate FFmpeg commands for cut, trim, convert, compress, and aspect-ratio video edits. FFmpeg Video Editor You are a video editing assistant that translates natural language requests into FFmpeg commands. When the user asks to edit a video, generate the correct FFmpeg command. Invoke when the user asks to cut, trim, convert, compress, or change aspect ratio with FFmpeg.1.3kinstalls7News SummaryThe news-summary skill fetches and summarizes news from trusted international RSS feeds including BBC world and top stories, Reuters, NPR, and Al Jazeera. Workflows parse RSS titles and descriptions via curl and grep, group summaries by region or topic, and optionally generate voice summaries with OpenAI TTS tts-1-hd sending audio output. Text summary flow fetches BBC world headlines, supplements with Reuters or NPR, summarizes key stories, and groups by topic. Use when users ask for news updates, daily briefings, or what is happening in the world with text or voice delivery.1.3kinstalls8Jina Readerjina-reader is an awesome-openclaw-skills bash script that wraps Jina AI Reader for web content extraction. Run reader.sh with a URL or query to get markdown by default, or switch modes: read converts a URL to markdown, search performs web search with full content extraction, and ground fact-checks a statement. Options include CSS selector targeting, wait-for-element delays, remove-selector cleanup, proxy country selection, cache control, and JSON output. Developers reach for it when agents need clean page text without building custom scrapers. The script is shell-native and suitable for OpenClaw or Claude agent toolchains.1kinstalls9Remind Meremind-me is a bash skill from sundial-org/awesome-openclaw-skills that checks a markdown reminders file and outputs items whose scheduled time has passed so an agent can surface them. Reminders use unchecked checkbox lines with a datetime and message, for example '- [ ] 2026-01-06 14:30 | Pay for Gumroad', and the script supports shortcuts like replacing 'today' with the current date. The default reminders file path is /home/julian/clawd/reminders.md, which teams typically override for their environment. Developers reach for remind-me when agents should proactively poll a plain-markdown reminder list instead of integrating a calendar or task API.893installs10Apple Calendarapple-calendar is an AI agent skill from sundial-org/awesome-openclaw-skills that bridges macOS Calendar.app to coding agents through seven AppleScript shell scripts. Developers install it with `npx skills add sundial-org/awesome-openclaw-skills --skill apple-calendar`, then agents run commands like cal-list.sh, cal-create.sh, and cal-search.sh from the skill base directory to list calendars, create timed or all-day events, update summaries and locations, delete entries, and search across multiple calendars. Output uses pipe-delimited UID, summary, start, end, and calendar fields for easy parsing. The skill documents YYYY-MM-DD date formats, case-sensitive calendar names, and three RRULE recurrence patterns for daily, weekly, and monthly repeats. It targets darwin-only environments and has recorded 414 catalog installs. Reach for apple-calendar when building agent workflows that schedule standups, sync deployment windows, or query upcoming meetings without leaving the terminal.682installs11Proactive Agentproactive-agent is an awesome-openclaw-skills package based on AGENTS.md operating rules that define how coding agents boot, remember, and behave across sessions. On first run, agents follow BOOTSTRAP.md then delete it. Every session starts by reading SOUL.md for persona, USER.md for user context, memory/YYYY-MM-DD.md for today and yesterday, and MEMORY.md during main sessions—without asking permission. Memory architecture includes daily notes in memory/YYYY-MM-DD.md, curated long-term MEMORY.md, and topic notes under notes/*.md using PARA-style organization. The skill emphasizes proactive file reads, durable note writing, and safety constraints so stateless LLM sessions regain project continuity. Developers install proactive-agent when agents must reliably reload context, persist decisions, and follow house rules instead of treating each chat as a blank slate.613installs12Topic Monitortopic-monitor is an OpenClaw agent skill that turns a coding assistant from reactive to proactive by scheduling automated web searches on topics you define. Each run applies AI importance scoring to classify findings as immediate alerts, weekly digest items, or noise to ignore, with rate limiting to reduce alert fatigue. Alerts can route through Telegram, Discord, or email, and memory integration lets notifications reference prior conversation context. Developers reach for topic-monitor when they want continuous domain monitoring—security advisories, competitor moves, framework releases—without writing custom cron jobs or RSS parsers. Weekly digests summarize interesting findings that did not warrant instant alerts.589installs13Financial Market Analysisfinancial-market-analysis is a Precision Financial Insights agent skill from sundial-org/awesome-openclaw-skills powered by Yahoo Finance with news synthesis. The skill returns deterministic, data-bound market intelligence covering stock performance, news sentiment, and investment ratings in seconds instead of manual report gathering. Developers reach for financial-market-analysis when prototyping fintech dashboards, research agents, or portfolio features that need authoritative market data. Usage requires a CRAFTED_API_KEY from we-crafted.com/agents/financial-market-analysis to call the hosted agent backend.555installs14Email Management Expertemail-management-expert is an OpenClaw agent skill that guides Apple Mail inbox triage, folder organization, and actionable email workflows through Apple Mail MCP tools. The skill encodes productivity principles—starting with an inbox overview, applying triage rules, and maintaining folder structure—so an coding agent can read, sort, and prioritize mail without manual clicking. Developers reach for email-management-expert when mentions include inbox management, email triage, inbox zero, mail folders, or email workflow optimization. The skill assumes Apple Mail MCP connectivity and focuses on repeatable handling patterns rather than one-off message drafting. It fits engineers who live in Apple Mail on macOS and want agent-assisted mail hygiene during deep work blocks.515installs15Stock Info Explorerstock-info-explorer is an OpenClaw skill powered by Yahoo Finance through the yfinance library and a uv-run scripts/yf.py CLI. Five commands cover real-time quotes, fundamental summaries, ASCII history trends, professional PNG charts with MA5/MA20/MA60 overlays, and a one-shot report combining text summary plus BB, RSI, and MACD chart output. Optional indicator flags add RSI(14), MACD(12,26,9), Bollinger Bands(20,2), VWAP, and ATR(14) computed locally from OHLCV because Yahoo does not reliably ship precomputed series. No API key is required. Tickers span US symbols like TSLA, Korean .KS listings, crypto pairs such as BTC-USD, and forex like USDKRW=X. Developers reach for it when prototyping stock research agents, generating quick charts in CI, or validating ticker data before wiring paid market APIs. The report command prints CHART_PATH for downstream vision or document pipelines.506installs16Stock Evaluator V3stock-evaluator-v3 is a comprehensive stock analysis agent skill that enforces a nine-item deliverables checklist covering technical indicators including Ichimoku Cloud, fundamental research, advanced scores such as Piotroski F-Score and Altman Z-Score, eight legendary-investor persona ratings, multi-method valuation, bull versus bear cases, and a React quant-style dashboard with 60+ metrics. A zero-fabrication policy requires at least eight web searches per ticker—from price and P/E through insider Form 4 filings and RSI/MACD—before populating numbers; missing data must display N/A. On SELL recommendations the skill supplies three to five alternative tickers. Reach for stock-evaluator-v3 when a developer needs an auditable, citation-backed equity memo rather than ad-hoc chat opinions.376installs17Apple Mailapple-mail is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.353installs18Filesystemfilesystem: A skill for development. This provides functionality for development workflows.283installs19Caldav Calendarcaldav-calendar: A skill for development. This provides functionality for development workflows.256installs20Skill Vetterskill-vetter is a sundial-org/awesome-openclaw-skills agent skill at version 1.0.0 that enforces security-first review before any agent skill installation. The vetting protocol starts with a source check asking where the skill originated and whether the author is known, then inspects permission scope, red flags, and suspicious code patterns in skills from ClawdHub, GitHub repos, or skills shared by other agents. Developers reach for skill-vetter before installing unknown code into Claude Code, Cursor, or other agent environments. The skill activates when evaluating skills from external marketplaces or when asked to install unfamiliar agent capabilities, producing a structured pass-or-block assessment.256installs21N8n Workflow Automationn8n-workflow-automation is a sundial-org/awesome-openclaw-skills agent skill for designing reliable n8n automations that will not silently drop records on reruns or transient API failures. It is read-only by default, emitting a workflow design spec with nodes, data contracts, and failure modes, and only outputs importable workflow.json plus runbook.md when explicitly requested. Developers reach for n8n-workflow-automation when building cron compliance summaries, webhook processors that append status rows, or integrations requiring idempotency keys, exponential backoff retries, audit logs with run IDs, and human-in-the-loop review queues for failed branches. The skill follows a no-silent-failure philosophy with explicit error gates and notifications, references environment variable names instead of embedding secrets in JSON, and uses a runbook template for operational handoff. It suits backend and platform engineers inheriting fragile n8n flows that lack observability.255installs22Cron Masterycron-mastery is an operations-oriented skill in the sundial-org awesome-openclaw-skills collection for developers who need dependable scheduled execution. The skill addresses cron expression design, job scheduling conventions, and operational patterns for recurring agent or automation tasks rather than one-off scripts. Developers reach for cron-mastery when OpenClaw or similar agent runtimes need timed triggers for reports, sync jobs, health checks, or background maintenance. Documentation in the catalog entry is sparse, so the skill functions primarily as a guided cron workflow pattern for infra-minded agent operators.253installs23Excelexcel: A skill for development. This provides functionality for development workflows.251installs24Clawdbot Backupclawdbot-backup: A skill for development. This provides functionality for development workflows.236installs25Searxngsearxng: A skill for development. This provides functionality for development workflows.224installs26X Trendsx-trends: A skill for development. This provides functionality for development workflows.187installs27Todo Trackertodo-tracker: A skill for development. This provides functionality for development workflows.170installs28Clawddocsclawddocs: A skill for development. This provides functionality for development workflows.169installs29Opencode Controlleropencode-controller: A skill for development. This provides functionality for development workflows.163installs30Openclaw Feedsopenclaw-feeds: A skill for development. This provides functionality for development workflows.159installs31Docker Essentialsdocker-essentials: A skill for development. This provides functionality for development workflows.157installs32Ddg Searchddg-search: A skill for development. This provides functionality for development workflows.152installs33Stock Analysisstock-analysis: A skill for development. This provides functionality for development workflows.143installs34Twitter Searchtwitter-search: A skill for development. This provides functionality for development workflows.138installs35Arxiv Watcherarxiv-watcher: A skill for development. This provides functionality for development workflows.137installs36Crypto Trackercrypto-tracker: A skill for development. This provides functionality for development workflows.136installs37Marketing Modemarketing-mode: A skill for development. This provides functionality for development workflows.134installs38Agent Browseragent-browser: A skill for development. This provides functionality for development workflows.131installs39Auto Updaterauto-updater: A skill for development. This provides functionality for development workflows.131installs40Ai Video Genai-video-gen: A skill for development. This provides functionality for development workflows.130installs41Git Essentialsgit-essentials: A skill for development. This provides functionality for development workflows.128installs42Portfolio Watcherportfolio-watcher: A skill for development. This provides functionality for development workflows.116installs43Crypto Gold Monitorcrypto-gold-monitor is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.90installs44Web Searchweb-search is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.89installs45Web Search Plusweb-search-plus is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.88installs46Bbc Newsbbc-news is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.80installs47Cryptocurrency Tradercryptocurrency-trader is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.80installs48Memory Managermemory-manager is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.79installs49Apple Contactsapple-contacts is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.75installs50Openai Ttsopenai-tts is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.70installs51Emailemail is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.67installs52Agent Chronicleagent-chronicle is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.66installs53Stock Price Checkerstock-price-checker is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.65installs54Content Writing Thought Leadershipcontent-writing-thought-leadership is a Claude Code skill in the AI & Agent Building category.62installs55Deep Researchdeep-research is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.61installs56Portainerportainer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.58installs57Second Brainsecond-brain is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.56installs58Ssh Essentialsssh-essentials is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.56installs59Pptx Creatorpptx-creator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.55installs60Apple Photosapple-photos is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs61News Aggregator Skillnews-aggregator-skill is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.50installs62Agent Browser 2agent-browser-2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs63Browser Usebrowser-use is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs64Home Assistanthome-assistant is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs65Githubgithub is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs66Habit Trackerhabit-tracker is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs67Gemini Deep Researchgemini-deep-research is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs68Openclaw Updateopenclaw-update is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.39installs69Clawdbot Cost Trackerclawdbot-cost-tracker is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.37installs70Notionnotion is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.37installs71Timertimer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.37installs72Git Notes Memorygit-notes-memory is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted coding.36installs73Homey Clihomey-cli is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs74Cron Creatorcron-creator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.30installs75Hybrid Memoryhybrid-memory is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.30installs76Byteroverbyterover is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.29installs77Local Rag Searchlocal-rag-search is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.29installs78Databasedatabase is a Claude Code skill for databases. It helps solo builders move faster with AI-assisted coding.28installs79Weatherweather is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.28installs80Agent Zero Bridgeagent-zero-bridge is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.27installs81Config Guardianconfig-guardian is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.27installs82Mcporter Skillmcporter-skill is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.27installs83Codex Account Switchercodex-account-switcher is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.26installs84Comfy Clicomfy-cli is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.26installs85Hyperliquidhyperliquid is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.26installs86Polymarketpolymarket is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.26installs87Tavilytavily is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.25installs88Youtube Transcriptyoutube-transcript is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.25installs89Auto Updater 3auto-updater-3 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.24installs90Context Optimizercontext-optimizer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.24installs91Glabglab is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.23installs92Google Searchgoogle-search is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.23installs93Obsidianobsidian is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.23installs94Skill Creatorskill-creator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.23installs95X Masteryx-mastery is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.23installs96Audio Replyaudio-reply is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.22installs97Ai Pdf Builderai-pdf-builder is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.21installs98Code Explaincode-explain is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.21installs99Curl Httpcurl-http is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.21installs100Tmux Agentstmux-agents is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.21installs101Agent Developmentagent-development is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs102Animation Genanimation-gen is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs103Apple Mediaapple-media is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs104Apple Musicapple-music is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs105Apple Remindersapple-reminders is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs106Audio Genaudio-gen is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs107Coding Agentcoding-agent is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.20installs108Agentmailagentmail is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.19installs109Agent Orchestratoragent-orchestrator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.19installs110Binancebinance is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.19installs111Prompt Guardprompt-guard is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.19installs112Apple Mail Searchapple-mail-search is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs113Creative Thought Partnercreative-thought-partner is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs114Crypto Pricecrypto-price is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs115Daily Reviewdaily-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs116Deepreaddeepread is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs117Gemini Image Simplegemini-image-simple is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs118Telegram Bottelegram-bot is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs119Twittertwitter is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.18installs1201password1password is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs121Antigravity Image Genantigravity-image-gen is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs122Apple Docsapple-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs123Better Notionbetter-notion is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs124Clawd Docs V2clawd-docs-v2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs125Codex Orchestrationcodex-orchestration is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs126X Algorithmx-algorithm is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.17installs127Apple Remind Meapple-remind-me is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.16installs128Remotion Video Toolkitremotion-video-toolkit is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.16installs129Asanaasana is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs130Claude Code Wingmanclaude-code-wingman is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs131Clawhub 3clawhub-3 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs132Code Explainercode-explainer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs133Cursor Agentcursor-agent is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs134Nano Banana Pronano-banana-pro is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs135Postgrespostgres is a Claude Code skill for databases. It helps solo builders move faster with AI-assisted coding.15installs136Reflectreflect is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs137Youtube Summarizeryoutube-summarizer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.15installs138Agentlensagentlens is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs139Claw Me Maybeclaw-me-maybe is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs140Clean Codeclean-code is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs141Content Draft Generatorcontent-draft-generator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs142Cron Gencron-gen is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs143Mineru Pdfmineru-pdf is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.14installs144Agent Browser 4agent-browser-4 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs145Alpha Finderalpha-finder is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs146Assemblyai Transcribeassemblyai-transcribe is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs147Blog Writerblog-writer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs148Content Ideas Generatorcontent-ideas-generator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs149Create Contentcreate-content is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs150N8nn8n is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs151Read Githubread-github is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs152Slackslack is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.13installs153Ui Testui-test is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted coding.13installs154Apple Mail Search 2apple-mail-search-2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs155Ask Questions If Underspecifiedask-questions-if-underspecified is a Claude Code skill in the AI & Agent Building category.12installs156Bear Notesbear-notes is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted coding.12installs157Compound Engineeringcompound-engineering is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs158Figmafigma is a Claude Code skill for design & ui/ux. It helps solo builders move faster with AI-assisted coding.12installs159Gamma 2gamma-2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs160X Apix-api is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.12installs161Agent Browser 3agent-browser-3 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs162Agent Browser 5agent-browser-5 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs163Apple Music 2apple-music-2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs164App Store Changelogapp-store-changelog is a Claude Code skill for git & pull requests. It helps solo builders move faster with AI-assisted coding.11installs165Clawarenaclawarena is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.11installs166Clawdbot Securityclawdbot-security is a Claude Code skill for security. It helps solo builders move faster with AI-assisted coding.11installs167Clawdbot Skill Updateclawdbot-skill-update is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs168Cloudflarecloudflare is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs169Codebase Documentercodebase-documenter is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs170Compound Engineering 2compound-engineering-2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs171Crypto Walletcrypto-wallet is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs172Markdown Convertermarkdown-converter is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs173Playwright Cliplaywright-cli is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs174Prompt Optimizerprompt-optimizer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs175Ui Ux Pro Maxui-ux-pro-max is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs176Wps Word Automationwps-word-automation is a Claude Code skill for automation & workflows. It helps solo builders move faster with AI-assisted coding.11installs177Youtubeyoutube is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.11installs178Confluenceconfluence is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs179Context7 2context7-2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs180Context Managercontext-manager is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs181Conventional Commitsconventional-commits is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs182Critical Article Writercritical-article-writer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.10installs183Deepwork Trackerdeepwork-tracker is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs184Frontend Designfrontend-design is a Claude Code skill for frontend development. It helps solo builders move faster with AI-assisted coding.10installs185Github Kbgithub-kb is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.10installs186Openai Image Genopenai-image-gen is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs187Pdfpdf is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs188Perplexityperplexity is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs189Search Xsearch-x is a Claude Code skill for ai & agent building. It helps you ship faster with AI-assisted development.9installs190Spotifyspotify is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs191Tailscaletailscale is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs192Telegram Usagetelegram-usage is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs193Watch My Moneywatch-my-money is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.9installs194Self ReflectionSelf-Reflection is a skill for AI agents that creates structured feedback loops to improve over time. Agents pause regularly (via heartbeat triggers), review their recent performance, and document mistakes and lessons learned. This matters because without memory, agents repeat the same errors—this skill builds institutional knowledge that compounds into better decision-making.1installs

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.