███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 651 | summarize | steipete/clawdis |
Summarize Fast CLI to summarize URLs, local files, and YouTube links. When to use (trigger phrases) Use this skill immediately when the user asks any of: “use summarize.sh” “what’s this link/video about?” “summarize this URL/article” “transcribe this YouTube/video” (best-effort transcript extraction; no yt-dlp needed) Quick start summarize "https://example.com" --model google/gemini-3-flash-preview summarize "/path/to/file.pdf" --model google/gemini-3-flash-preview summarize "https://youtu.be/dQ...
|
20.5K |
| 652 | gws-people | googleworkspace/cli |
people (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws people < resource > < method > [ flags ] API Resources contactGroups batchGet — Get a list of contact groups owned by the authenticated user by specifying a list of contact group resource names. create — Create a new contact group owned by the authenticated user. Created contact group names must be unique to the users contact groups. Attempting t...
|
20.4K |
| 653 | gws-chat | googleworkspace/cli |
documentation SKILL.md chat (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws chat < resource > < method > [ flags ] Helper Commands Command Description +send Send a message to a space API Resources customEmojis create — Creates a custom emoji. Custom emojis are only available for Google Workspace accounts, and the administrator must turn custom emojis on for the organization. For more information, see...
|
20.4K |
| 654 | flutter-add-widget-test | flutter/skills |
Writing Flutter Widget Tests Contents Setup & Configuration Core Components Workflow: Implementing a Widget Test Interaction & State Management Examples Setup & Configuration Ensure the testing environment is properly configured before authoring widget tests. Add the flutter_test dependency to the dev_dependencies section of pubspec.yaml . Place all test files in the test/ directory at the root of the project. Suffix all test file names with _test.dart (e.g., widget_test.dart ). Core Components ...
|
20.4K |
| 655 | firestore-security-rules-auditor | firebase/agent-skills |
Overview This skill acts as an auditor for Firebase Security Rules, evaluating them against a rigorous set of criteria to ensure they are secure, robust, and correctly implemented. Scoring Criteria Assessment: Security Validator (Red Team Edition) You are a Senior Security Auditor and Penetration Tester specializing in Firestore. Your goal is to find "the hole in the wall." Do not assume a rule is secure because it looks complex; instead, actively try to find a sequence of operations to bypass i...
|
20.3K |
| 656 | gpt-image-2 | pilioai/skills |
🪞 GPT Image 2 — Image Generation via Your ChatGPT Subscription agentspace.so · GitHub Generate images with GPT Image 2 (ChatGPT Images 2.0) inside your agent, using your existing ChatGPT Plus or Pro subscription — no separate OpenAI access, no Fal or Replicate tokens, no per-image billing. Text-to-image, image-to-image editing, style transfer, and multi-reference composition. Runs entirely through the local codex CLI you're already logged into. Heads up — this skill requires a ChatGPT Plus or Pr...
|
19.6K |
| 657 | skill-vetter | useai-pro/openclaw-skills-security |
Skill Vetter You are a security auditor for OpenClaw skills. Before the user installs any skill, you must vet it for safety. When to Use Before installing a new skill from ClawHub When reviewing a SKILL.md from GitHub or other sources When someone shares a skill file and you need to assess its safety During periodic audits of already-installed skills Vetting Protocol Step 1: Metadata Check Read the skill's SKILL.md frontmatter and verify: name matches the expected skill name (no typosquatting) v...
|
19.6K |
| 658 | prd | github/awesome-copilot |
Product Requirements Document (PRD) Overview Design comprehensive, production-grade Product Requirements Documents (PRDs) that bridge the gap between business vision and technical execution. This skill works for modern software systems, ensuring that requirements are clearly defined. When to Use Use this skill when: Starting a new product or feature development cycle Translating a vague idea into a concrete technical specification Defining requirements for AI-powered features Stakeholders need a...
|
19.5K |
| 659 | vue-best-practices | antfu/skills |
Vue Best Practices Workflow Use this skill as an instruction set. Follow the workflow in order unless the user explicitly asks for a different order. Core Principles Keep state predictable: one source of truth, derive everything else. Make data flow explicit: Props down, Events up for most cases. Favor small, focused components: easier to test, reuse, and maintain. Avoid unnecessary re-renders: use computed properties and watchers wisely. Readability counts: write clear, self-documenting code. 1...
|
18.6K |
| 660 | recipe-find-large-files | googleworkspace/cli |
Find Largest Files in Drive PREREQUISITE: Load the following skills to execute this recipe: gws-drive Identify large Google Drive files consuming storage quota. Steps List files sorted by size: gws drive files list --params '{"orderBy": "quotaBytesUsed desc", "pageSize": 20, "fields": "files(id,name,size,mimeType,owners)"}' --format table Review the output and identify files to archive or move
|
18.4K |
| 661 | recipe-copy-sheet-for-new-month | googleworkspace/cli |
Copy a Google Sheet for a New Month PREREQUISITE: Load the following skills to execute this recipe: gws-sheets Duplicate a Google Sheets template tab for a new month of tracking. Steps Get spreadsheet details: gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}' Copy the template sheet: gws sheets spreadsheets sheets copyTo --params '{"spreadsheetId": "SHEET_ID", "sheetId": 0}' --json '{"destinationSpreadsheetId": "SHEET_ID"}' Rename the new tab: gws sheets spreadsheets batchUpda...
|
18.4K |
| 662 | recipe-review-overdue-tasks | googleworkspace/cli |
Review Overdue Tasks PREREQUISITE: Load the following skills to execute this recipe: gws-tasks Find Google Tasks that are past due and need attention. Steps List task lists: gws tasks tasklists list --format table List tasks with status: gws tasks tasks list --params '{"tasklist": "TASKLIST_ID", "showCompleted": false}' --format table Review due dates and prioritize overdue items
|
18.3K |
| 663 | recipe-collect-form-responses | googleworkspace/cli |
Check Form Responses PREREQUISITE: Load the following skills to execute this recipe: gws-forms Retrieve and review responses from a Google Form. Steps List forms: gws forms forms list (if you don't have the form ID) Get form details: gws forms forms get --params '{"formId": "FORM_ID"}' Get responses: gws forms forms responses list --params '{"formId": "FORM_ID"}' --format table
|
18.3K |
| 664 | recipe-batch-invite-to-event | googleworkspace/cli |
Add Multiple Attendees to a Calendar Event PREREQUISITE: Load the following skills to execute this recipe: gws-calendar Add a list of attendees to an existing Google Calendar event and send notifications. Steps Get the event: gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' Add attendees: gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"attendees": [{"email": "alice@company.com"}, {"email": "b...
|
18.3K |
| 665 | recipe-create-events-from-sheet | googleworkspace/cli |
Create Google Calendar Events from a Sheet PREREQUISITE: Load the following skills to execute this recipe: gws-sheets , gws-calendar Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row. Steps Read event data: gws sheets +read --spreadsheet SHEET_ID --range "Events!A2:D" For each row, create a calendar event: gws calendar +insert --summary 'Team Standup' --start '2026-01-20T09:00:00' --end '2026-01-20T09:30:00' --attendee alice@company.com --attendee b...
|
18.3K |
| 666 | baoyu-post-to-weibo | jimliu/baoyu-skills |
Post to Weibo Posts text, images, videos, and long-form articles to Weibo via real Chrome browser (bypasses anti-bot detection). Script Directory Important : All scripts are located in the scripts/ subdirectory of this skill. Agent Execution Instructions : Determine this SKILL.md file's directory path as {baseDir} Script path = {baseDir}/scripts/<script-name>.ts Replace all {baseDir} in this document with the actual path Resolve ${BUN_X} runtime: if bun installed → bun ; if npx available → npx -...
|
18.3K |
| 667 | persona-it-admin | googleworkspace/cli |
IT Administrator PREREQUISITE: Load the following utility skills to operate as this persona: gws-gmail , gws-drive , gws-calendar Administer IT — monitor security and configure Workspace. Relevant Workflows gws workflow +standup-report Instructions Start the day with gws workflow +standup-report to review any pending IT requests. Monitor suspicious login activity and review audit logs. Configure Drive sharing policies to enforce organizational security. Tips Always use --dry-run before bulk oper...
|
18.3K |
| 668 | recipe-share-folder-with-team | googleworkspace/cli |
Share a Google Drive Folder with a Team PREREQUISITE: Load the following skills to execute this recipe: gws-drive Share a Google Drive folder and all its contents with a list of collaborators. Steps Find the folder: gws drive files list --params '{"q": "name = '\''Project X'\'' and mimeType = '\''application/vnd.google-apps.folder'\''"}' Share as editor: gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "colleague@company.c...
|
18.3K |
| 669 | clerk-webhooks | clerk/skills |
Prerequisite: Webhooks are asynchronous. Use for background tasks (sync, notifications), not synchronous flows. Documentation Reference | Overview | [https://clerk.com/docs/guides/development/webhooks/overview](https://clerk.com/docs/guides/development/webhooks/overview) | Sync to database | [https://clerk.com/docs/guides/development/webhooks/syncing](https://clerk.com/docs/guides/development/webhooks/syncing) | Debugging | [https://clerk.com/docs/guides/development/webhooks/debugging]...
|
18.3K |
| 670 | shadcn-ui | giuseppe-trisciuoglio/developer-kit |
shadcn/ui Component Integration You are a frontend engineer specialized in building applications with shadcn/ui—a collection of beautifully designed, accessible, and customizable components built with Radix UI or Base UI and Tailwind CSS. You help developers discover, integrate, and customize components following best practices. Core Principles shadcn/ui is not a component library —it's a collection of reusable components that you copy into your project. This gives you: Full ownership : Componen...
|
18.2K |
| 671 | gws-gmail-reply-all | googleworkspace/cli |
gmail +reply-all PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Reply-all to a message (handles threading automatically) Usage gws gmail +reply-all --message-id < ID > --body < TEXT > Flags Flag Required Default Description --message-id ✓ — Gmail message ID to reply to --body ✓ — Reply body (plain text) --from — — Sender address (for send-as/alias; omit to use account default) --cc — — Additional CC recipien...
|
18.2K |
| 672 | gws-workflow-email-to-task | googleworkspace/cli |
workflow +email-to-task PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Convert a Gmail message into a Google Tasks entry Usage gws workflow +email-to-task --message-id < ID > Flags Flag Required Default Description --message-id ✓ — Gmail message ID to convert --tasklist — @default Task list ID (default: @default) Examples gws workflow +email-to-task --message-id MSG_ID gws workflow +email-to-task --message-i...
|
18.2K |
| 673 | marketing-plan | coreyhaines31/marketingskills |
Marketing Plan You are an expert marketing strategist operating at fCMO (fractional CMO) level. Your job is to produce a comprehensive, executable 12-month marketing plan for a specific client or company, structured by AARRR (Acquisition, Activation, Retention, Referral, Revenue), customized to their actual budget, team, stage, and capabilities, and cross-referenced with the full marketing-ideas library and the embedded 17-section current-state audit rubric. The deliverable is a single Notion-pa...
|
18.2K |
| 674 | mobile-android-design | wshobson/agents |
Android Mobile Design Master Material Design 3 (Material You) and Jetpack Compose to build modern, adaptive Android applications that integrate seamlessly with the Android ecosystem. When to Use This Skill Designing Android app interfaces following Material Design 3 Building Jetpack Compose UI and layouts Implementing Android navigation patterns (Navigation Compose) Creating adaptive layouts for phones, tablets, and foldables Using Material 3 theming with dynamic colors Building accessible And...
|
18.2K |
| 675 | recipe-forward-labeled-emails | googleworkspace/cli |
Forward Labeled Gmail Messages PREREQUISITE: Load the following skills to execute this recipe: gws-gmail Find Gmail messages with a specific label and forward them to another address. Steps Find labeled messages: gws gmail users messages list --params '{"userId": "me", "q": "label:needs-review"}' --format table Get message content: gws gmail users messages get --params '{"userId": "me", "id": "MSG_ID"}' Forward via new email: `gws gmail +send --to manager@company.com --subject 'FW: [Original Sub...
|
18.2K |
| 676 | persona-event-coordinator | googleworkspace/cli |
Event Coordinator PREREQUISITE: Load the following utility skills to operate as this persona: gws-calendar , gws-gmail , gws-drive , gws-chat , gws-sheets Plan and manage events — scheduling, invitations, and logistics. Relevant Workflows gws workflow +meeting-prep gws workflow +file-announce gws workflow +weekly-digest Instructions Create event calendar entries with gws calendar +insert — include location and attendee lists. Prepare event materials and upload to Drive with gws drive +upload . S...
|
18.2K |
| 677 | persona-customer-support | googleworkspace/cli |
Customer Support Agent PREREQUISITE: Load the following utility skills to operate as this persona: gws-gmail , gws-sheets , gws-chat , gws-calendar Manage customer support — track tickets, respond, escalate issues. Relevant Workflows gws workflow +email-to-task gws workflow +standup-report Instructions Triage the support inbox with gws gmail +triage --query 'label:support' . Convert customer emails into support tasks with gws workflow +email-to-task . Log ticket status updates in a tracking shee...
|
18.2K |
| 678 | mobile-ios-design | wshobson/agents |
iOS Mobile Design Master iOS Human Interface Guidelines (HIG) and SwiftUI patterns to build polished, native iOS applications that feel at home on Apple platforms. When to Use This Skill Designing iOS app interfaces following Apple HIG Building SwiftUI views and layouts Implementing iOS navigation patterns (NavigationStack, TabView, sheets) Creating adaptive layouts for iPhone and iPad Using SF Symbols and system typography Building accessible iOS interfaces Implementing iOS-specific gestures ...
|
18.2K |
| 679 | recipe-create-meet-space | googleworkspace/cli |
Create a Google Meet Conference PREREQUISITE: Load the following skills to execute this recipe: gws-meet , gws-gmail Create a Google Meet meeting space and share the join link. Steps Create meeting space: gws meet spaces create --json '{"config": {"accessType": "OPEN"}}' Copy the meeting URI from the response Email the link: gws gmail +send --to team@company.com --subject 'Join the meeting' --body 'Join here: MEETING_URI'
|
18.2K |
| 680 | persona-sales-ops | googleworkspace/cli |
Sales Operations PREREQUISITE: Load the following utility skills to operate as this persona: gws-gmail , gws-calendar , gws-sheets , gws-drive Manage sales workflows — track deals, schedule calls, client comms. Relevant Workflows gws workflow +meeting-prep gws workflow +email-to-task gws workflow +weekly-digest Instructions Prepare for client calls with gws workflow +meeting-prep to review attendees and agenda. Log deal updates in a tracking spreadsheet with gws sheets +append . Convert follow-u...
|
18.2K |
| 681 | guizang-ppt-skill | op7418/guizang-ppt-skill |
Magazine Web Ppt 这个 Skill 做什么 生成一份 单文件 HTML 的横向翻页 PPT,视觉基调是: 电子杂志 + 电子墨水 混血风格 WebGL 流体 / 等高线 / 色散背景 (hero 页可见) 衬线标题(Noto Serif SC + Playfair Display)+ 非衬线正文(Noto Sans SC + Inter)+ 等宽元数据(IBM Plex Mono) Lucide 线性图标 (不用 emoji) 横向左右翻页 (键盘 ← →、滚轮、触屏滑动、底部圆点、ESC 索引) 主题平滑插值 :翻到 hero 页时颜色和 shader 柔顺过渡 这个 skill 的美学不是"商务 PPT",也不是"消费互联网 UI"——它像 Monocle 杂志贴上了代码后的样子。 何时使用 合适的场景 : 线下分享 / 行业内部讲话 / 私享会 AI 新产品发布 / demo day 带有强烈个人风格的演讲 需要"一次做完,不用翻页工具"的网页版 slides 不合适的场景 : 大段表格数据、图表叠加(用常规 PPT) 培训课件(信息密度不够) 需要多人协作编辑(...
|
18.2K |
| 682 | fixing-motion-performance | ibelick/ui-skills |
fixing-motion-performance Fix animation performance issues. how to use /fixing-motion-performance Apply these constraints to any UI animation work in this conversation. /fixing-motion-performance <file> Review the file against all rules below and report: violations (quote the exact line or snippet) why it matters (one short sentence) a concrete fix (code-level suggestion) Do not migrate animation libraries unless explicitly requested. Apply rules within the existing stack. when to apply Referenc...
|
18.2K |
| 683 | recipe-create-expense-tracker | googleworkspace/cli |
Create a Google Sheets Expense Tracker PREREQUISITE: Load the following skills to execute this recipe: gws-sheets , gws-drive Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries. Steps Create spreadsheet: gws drive files create --json '{"name": "Expense Tracker 2025", "mimeType": "application/vnd.google-apps.spreadsheet"}' Add headers: gws sheets +append --spreadsheet SHEET_ID --range 'Sheet1' --values '["Date", "Category", "Description", "Amount"]' Add firs...
|
18.2K |
| 684 | recipe-create-presentation | googleworkspace/cli |
Create a Google Slides Presentation PREREQUISITE: Load the following skills to execute this recipe: gws-slides Create a new Google Slides presentation and add initial slides. Steps Create presentation: gws slides presentations create --json '{"title": "Quarterly Review Q2"}' Get the presentation ID from the response Share with team: gws drive permissions create --params '{"fileId": "PRESENTATION_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'
|
18.1K |
| 685 | durable-objects | cloudflare/skills |
Durable Objects Build stateful, coordinated applications on Cloudflare's edge using Durable Objects. When to Use Creating new Durable Object classes for stateful coordination Implementing RPC methods, alarms, or WebSocket handlers Reviewing existing DO code for best practices Configuring wrangler.jsonc/toml for DO bindings and migrations Writing tests with @cloudflare/vitest-pool-workers Designing sharding strategies and parent-child relationships Reference Documentation ./references/rules.md ...
|
18.1K |
| 686 | recipe-review-meet-participants | googleworkspace/cli |
Review Google Meet Attendance PREREQUISITE: Load the following skills to execute this recipe: gws-meet Review who attended a Google Meet conference and for how long. Steps List recent conferences: gws meet conferenceRecords list --format table List participants: gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table Get session details: gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRe...
|
18.1K |
| 687 | recipe-create-vacation-responder | googleworkspace/cli |
Set Up a Gmail Vacation Responder PREREQUISITE: Load the following skills to execute this recipe: gws-gmail Enable a Gmail out-of-office auto-reply with a custom message and date range. Steps Enable vacation responder: gws gmail users settings updateVacation --params '{"userId": "me"}' --json '{"enableAutoReply": true, "responseSubject": "Out of Office", "responseBodyPlainText": "I am out of the office until Jan 20. For urgent matters, contact backup@company.com.", "restrictToContacts": false, "...
|
18.1K |
| 688 | recipe-create-feedback-form | googleworkspace/cli |
Create and Share a Google Form PREREQUISITE: Load the following skills to execute this recipe: gws-forms , gws-gmail Create a Google Form for feedback and share it via Gmail. Steps Create form: gws forms forms create --json '{"info": {"title": "Event Feedback", "documentTitle": "Event Feedback Form"}}' Get the form URL from the response (responderUri field) Email the form: gws gmail +send --to attendees@company.com --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'
|
18.1K |
| 689 | recipe-post-mortem-setup | googleworkspace/cli |
Set Up Post-Mortem PREREQUISITE: Load the following skills to execute this recipe: gws-docs , gws-calendar , gws-chat Create a Google Docs post-mortem, schedule a Google Calendar review, and notify via Chat. Steps Create post-mortem doc: gws docs +write --title 'Post-Mortem: [Incident]' --body ' Summary\n\n Timeline\n\n Root Cause\n\n Action Items' Schedule review meeting: gws calendar +insert --summary 'Post-Mortem Review: [Incident]' --attendee team@company.com --start '2026-03-16T14:00:00' --...
|
18.1K |
| 690 | vueuse-functions | antfu/skills |
VueUse Functions This skill is a decision-and-implementation guide for VueUse composables in Vue.js / Nuxt projects. It maps requirements to the most suitable VueUse function, applies the correct usage pattern, and prefers composable-based solutions over bespoke code to keep implementations concise, maintainable, and performant. When to Apply Apply this skill whenever assisting user development work in Vue.js / Nuxt. Always check first whether a VueUse function can implement the requirement. Pre...
|
18.1K |
| 691 | gws-modelarmor | googleworkspace/cli |
modelarmor (v1) PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. gws modelarmor < resource > < method > [ flags ] Helper Commands Command Description +sanitize-prompt Sanitize a user prompt through a Model Armor template +sanitize-response Sanitize a model response through a Model Armor template +create-template Create a new Model Armor template Discovering Commands Before calling any API method, inspect it: ...
|
18.1K |
| 692 | clerk-backend-api | clerk/skills |
Options context User Prompt: $ARGUMENTS API specs context Before doing anything, fetch the available spec versions and tags by running: bash scripts/api-specs-context.sh Use the output to determine the latest version and available tags. Caching: If you already fetched the spec context earlier in this conversation, do NOT fetch it again. Reuse the version and tags from the previous call. Rules Always disregard endpoints/schemas related to platform . Always confirm before performing write requests...
|
18.1K |
| 693 | refactor | github/awesome-copilot |
Refactor Overview Improve code structure and readability without changing external behavior. Refactoring is gradual evolution, not revolution. Use this for improving existing code, not rewriting from scratch. When to Use Use this skill when: Code is hard to understand or maintain Functions/classes are too large Code smells need addressing Adding features is difficult due to code structure User asks "clean up this code", "refactor this", "improve this" Refactoring Principles The Golden Rules ...
|
18K |
| 694 | persona-hr-coordinator | googleworkspace/cli |
HR Coordinator PREREQUISITE: Load the following utility skills to operate as this persona: gws-gmail , gws-calendar , gws-drive , gws-chat Handle HR workflows — onboarding, announcements, and employee comms. Relevant Workflows gws workflow +email-to-task gws workflow +file-announce Instructions For new hire onboarding, create calendar events for orientation sessions with gws calendar +insert . Upload onboarding docs to a shared Drive folder with gws drive +upload . Announce new hires in Chat spa...
|
18K |
| 695 | gws-modelarmor-create-template | googleworkspace/cli |
modelarmor +create-template PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it. Create a new Model Armor template Usage gws modelarmor +create-template --project < PROJECT > --location < LOCATION > --template-id < ID > Flags Flag Required Default Description --project ✓ — GCP project ID --location ✓ — GCP location (e.g. us-central1) --template-id ✓ — Template ID to create --preset — — Use a preset template: jailb...
|
18K |
| 696 | recipe-share-event-materials | googleworkspace/cli |
Share Files with Meeting Attendees PREREQUISITE: Load the following skills to execute this recipe: gws-calendar , gws-drive Share Google Drive files with all attendees of a Google Calendar event. Steps Get event attendees: gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' Share file with each attendee: gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "attendee@company.com"}' Verify sharing: ...
|
18K |
| 697 | review-animations | emilkowalski/skills |
Reviewing Animations A specialized review skill. It does ONE thing: review animation and motion code against a high craft bar. It does not write features, fix unrelated bugs, or review non-motion code. If asked to review general code, decline and point to a general review skill. Operating Posture You are a senior motion-design reviewer with a brutal eye for craft. Your bias is toward motion that feels right , not motion that merely runs. A transition that "works" but feels sluggish, lands from t...
|
18K |
| 698 | aso-audit | coreyhaines31/marketingskills |
ASO Audit Analyze App Store and Google Play listings against ASO best practices. Fetches live listing data, scores metadata, visuals, and ratings, then produces a prioritized action plan. When to Use User shares an App Store or Google Play URL User asks to audit or optimize an app listing User wants to compare their app against competitors User asks about app store ranking, visibility, or download conversion Before Auditing Check for product marketing context first: If .agents/product-marketing-...
|
17.9K |
| 699 | prospecting | coreyhaines31/marketingskills |
No SKILL.md available for this skill. View on GitHub Installs 1.3K Repository coreyhaines31/m…ngskills GitHub Stars 30.9K First Seen 3 days ago
|
17.9K |
| 700 | recipe-send-team-announcement | googleworkspace/cli |
Announce via Gmail and Google Chat PREREQUISITE: Load the following skills to execute this recipe: gws-gmail , gws-chat Send a team announcement via both Gmail and a Google Chat space. Steps Send email: gws gmail +send --to team@company.com --subject 'Important Update' --body 'Please review the attached policy changes.' Post in Chat: gws chat +send --space spaces/TEAM_SPACE --text '📢 Important Update: Please check your email for policy changes.'
|
17.9K |