███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 6801 | code-security | semgrep/skills |
Code Security Guidelines Comprehensive security rules for writing secure code across multiple languages and frameworks. Covers OWASP Top 10 vulnerabilities, infrastructure security, and coding best practices. How It Works When you write or review code, reference these security guidelines Each rule includes incorrect (vulnerable) and correct (secure) code examples Rules are organized by vulnerability category and impact level Categories Critical Impact SQL Injection - Use parameterized queries,...
|
1.8K |
| 6802 | avoid-ai-writing | conorbronsdon/avoid-ai-writing |
Avoid AI Writing — Audit & Rewrite You are editing content to remove AI writing patterns ("AI-isms") that make text sound machine-generated. What this skill is and isn't This is a writing-quality tool , not a verdict. The patterns flagged here are statistically more common in LLM output, but humans on autopilot — especially writing under deadline pressure, in unfamiliar genres, or in a second language — produce the same shapes. Independent audits of commercial AI detectors have found false-posit...
|
1.8K |
| 6803 | spec-impl | klerith/fernando-skills |
Contains Shell Commands This skill contains shell command directives ( !`command` ) that may execute system commands. Review carefully before installing. /spec-impl — Implementer of approved specs Session context Current repository state: ! git status --short Current branch: ! git branch --show-current Specs available in this folder: ! ls specs/ 2>/dev/null || echo "The specs/ folder does not exist" Branch-creation config: ! cat specs/.spec-config.yml 2>/dev/null || echo "AutoCreateBranch: true ...
|
1.8K |
| 6804 | iii-error-handling | iii-hq/iii |
Error Handling iii has two broad error classes: SDK/local errors and engine/remote invocation errors. Agents should branch on the error code instead of matching only message strings. Error Codes Branch on exact code strings, but keep engine wire codes separate from SDK-local codes. Code Emitted by Meaning Typical handling function_not_found Engine and SDK local dispatch No registered function is available under that ID Check function ID, worker install/startup, discovery, and trigger type hints ...
|
1.8K |
| 6805 | shopify-development | sickn33/agentic-awesome-skills |
Shopify Development Skill Use this skill when the user asks about: Building Shopify apps or extensions Creating checkout/admin/POS UI customizations Developing themes with Liquid templating Integrating with Shopify GraphQL or REST APIs Implementing webhooks or billing Working with metafields or Shopify Functions ROUTING: What to Build IF user wants to integrate external services OR build merchant tools OR charge for features: → Build an App (see references/app-development.md ) Show more Installs...
|
1.8K |
| 6806 | netlify-identity | netlify/context-and-tools |
Netlify Identity Netlify Identity is a user management service for signups, logins, password recovery, user metadata, and role-based access control. It is built on GoTrue and issues JSON Web Tokens (JWTs). Always use @netlify/identity . Never use netlify-identity-widget or gotrue-js — they are deprecated. @netlify/identity provides a unified, headless TypeScript API that works in both browser and server contexts (Netlify Functions, Edge Functions, SSR frameworks). Dashboard configuration (user h...
|
1.8K |
| 6807 | babylonjs-engine | freshtechbro/claudedesignskills |
Babylon.js Engine Skill
|
1.8K |
| 6808 | material-3 | hamen/material-3-skill |
Material Design 3 This skill guides implementation of Google's Material Design 3 (MD3) — a personal, adaptive, expressive design system. MD3 uses dynamic color, tonal surfaces, rounded shapes, and spring-based motion to create UIs that feel alive and personal. Philosophy MD3 is built on three principles: Personal : Dynamic color adapts UI to the user's wallpaper or content. Theming is individual, not one-size-fits-all. Adaptive : Layouts transform across 5 window size classes. Components resize,...
|
1.8K |
| 6809 | sent-integration-starter | sentdm/sent-plugin |
Sent Integration Starter Bring up a Sent integration in four stages: authenticate, send idempotently, receive verified events, then harden. Do not conflate them — most broken integrations pass stage one and skip stage three. Stage 1: client and credentials Direct Sent v3 REST requests authenticate with the x-api-key header. An application proxy may accept Authorization: Bearer from its own callers, and the Sent MCP server uses client-managed OAuth, but neither changes the REST header sent to api...
|
1.8K |
| 6810 | migrate-to-sent | sentdm/sent-plugin |
Migrate to Sent Every migration from a major CPaaS provider hits the same five translation problems. Work them in this order, because the first one silently doubles cost and is invisible in tests. 1. Ordered fallback becomes automatic routing Incumbent platforms express cross-channel delivery through different caller-side arrays, failover objects, messaging-service features, or application-level priority configuration. Do not assume those shapes have a direct Sent request-field equivalent. Sent'...
|
1.8K |
| 6811 | sent-webhook-engineer | sentdm/sent-plugin |
Sent Webhook Engineer Sent webhooks are the only way an application learns what happened after POST /v3/messages returns 202 . The 202 proves acceptance, never delivery. Build the receiver as a signature-verifying, replay-rejecting, deduplicating, fast-acknowledging endpoint, and treat the delivery log as the source of truth when events go missing. Signature verification, exactly Three headers arrive with every delivery: Header Meaning x-webhook-signature v1,{base64(hmac_sha256)} x-webhook-id Th...
|
1.8K |
| 6812 | sent-profile-provisioning | sentdm/sent-plugin |
Sent Profile Provisioning This skill is the execution counterpart to profile architecture: once the tenancy boundary is decided, it drives the API calls, the completion callback, the campaign registration, and the user administration that make a profile able to send. Design the boundary with sender-profile-architect first; provision it here. Provisioning sequence Confirm the credential. POST /v3/profiles requires an organization key with admin . Profile-scoped keys cannot create profiles, and a ...
|
1.8K |
| 6813 | sent-two-way-messaging | sentdm/sent-plugin |
Sent Two-Way Messaging Inbound messaging on Sent has one governing rule: consent is enforced by the platform before the application sees the event. An inbound STOP has already flipped the contact's opt_out flag by the time message.received arrives. The application's job is to record it, reflect it in its own UI, and never attempt to send around it. Keyword handling Ten keywords ship as defaults: Action Keywords Opt out STOP , CANCEL , UNSUBSCRIBE , QUIT , END Opt in START , UNSTOP , SUBSCRIBE He...
|
1.8K |
| 6814 | sent-routing-strategist | sentdm/sent-plugin |
Sent Routing Strategist Routing is where the most expensive Sent misconceptions live. Two facts govern almost every decision: The channel array is a broadcast list, not a preference order. ["whatsapp", "sms"] with two recipients creates four messages and four charges. There is no fallback field and no ordered-preference syntax. Automatic routing is the fallback mechanism. Omit channel , or send ["sent"] , and the platform selects a route, then reroutes across up to three distinct channel-and-pro...
|
1.8K |
| 6815 | alan-plan | supatest-ai/alan-skills |
Plan Creation You are creating an implementation plan. Your job is to analyze the problem and produce a clear, actionable plan in markdown. How to plan Analyze — Read the task description and any linked context. Explore the codebase to understand architecture, dependencies, constraints, and risks. Use Read, Grep, Glob freely. Do NOT write or modify any files. If this is a revision request (the user references feedback on an existing plan, or mentions a plan artifact), first fetch the existing pl...
|
1.8K |
| 6816 | alan-review-pr | supatest-ai/alan-skills |
MANDATORY: Use Alan MCP Tools The Alan MCP server provides GitHub tools that are ALREADY in your tool list. They work exactly like Read, Bash, Edit — you call them as tool invocations. They are named with the prefix mcp__alan__github_ . Authentication is handled automatically by the MCP server. You do NOT need GitHub tokens, gh CLI auth, SSH keys, .netrc files, environment variables, or any credentials. The tools work immediately with zero setup. NEVER do any of the following for GitHub API acce...
|
1.8K |
| 6817 | alan-test-feature | supatest-ai/alan-skills |
Task: Test Feature & Generate Demo Report Analyze the current branch's changes, scope the coverage level with the user, build an explicit testing strategy, start the app's dev server, test the feature in a real browser using agent-browser , capture screenshots and video ( always — no exceptions ), upload everything to S3, and generate a structured test report ( always — never skip ). Phase 0: Environment Setup 1. Get artifact context IDs Use the active task context when it is present in the prom...
|
1.8K |
| 6818 | clone-website | julianromli/ai-skills |
Clone Website Skill Transform any website into production-ready Next.js 16 code using Firecrawl MCP. Workflow Execute these 3 phases in order. Never skip Phase 2. Phase 1: Scrape Extract URL from user request Identify section filter if specified (e.g., "hero only", "just the pricing") Scrape using Firecrawl: firecrawl-mcp___firecrawl_scrape: url: [TARGET_URL] formats: ["markdown", "html"] onlyMainContent: true If scrape fails, fallback to firecrawl-mcp___firecrawl_crawl Phase 2: Analy...
|
1.8K |
| 6819 | asc-metrics | eronred/aso-skills |
ASC Metrics You analyze the user's official App Store Connect data synced into Appeeky — exact downloads, revenue, IAP, subscriptions, and trials. This is first-party data, not estimates. Prerequisites Appeeky account with ASC connected (Settings → Integrations → App Store Connect) Indie plan or higher (2 credits per request) Data syncs nightly; up to 90 days of history available If ASC is not connected, prompt the user to connect it at appeeky.com/settings and return. Initial Assessment Check f...
|
1.8K |
| 6820 | fix-merge-conflicts | cursor/plugins |
Fix merge conflicts Trigger Branch has unresolved merge conflicts and needs a reliable path to a buildable state. Workflow Detect all conflicting files from git status and conflict markers. Resolve each conflict with minimal, correctness-first edits. Prefer preserving both sides when safe. Otherwise, choose the variant that compiles and keeps public behavior stable. Regenerate lockfiles with package manager tools instead of hand-editing. Run compile, lint, and relevant tests. Stage resolved file...
|
1.8K |
| 6821 | workos | workos/skills |
WorkOS Skill Router How to Use When a user needs help with WorkOS, consult the tables below to route to the right reference. Loading References All references are topic files in the references/ directory. Read the file and follow its instructions (fetch docs first, then use gotchas to avoid common traps). Exception : Widget requests use the workos-widgets skill via the Skill tool — it has its own multi-framework orchestration. Topic → Reference Map AuthKit Installation (Read references/{name}.md...
|
1.8K |
| 6822 | cloud-logging-query-generation | google/skills |
Generate Logging Query Language queries Use this skill to generate correct Logging Query Language (LQL) queries for Cloud Logging. Core rules Strict syntax requirements: Always use double quotes ( " ) for string literals. Do not use single quotes ( ' ). Write boolean operators in all capitals: AND , OR , NOT . Always use parentheses to group terms and explicitly enforce precedence. Common pitfalls: Show more Installs 878 Repository google/skills GitHub Stars 15.6K First Seen Jul 13, 2026 Securit...
|
1.8K |
| 6823 | woocommerce-backend-dev | woocommerce/woocommerce |
No SKILL.md available for this skill. View on GitHub
|
1.8K |
| 6824 | citation-management | lingzhi227/agent-research-skills |
Citation Management Manage the full lifecycle of citations in a LaTeX paper. Input $0 — Action: harvest , validate , add , format $1 — Path to .tex or .bib file Scripts Validate citations (check all cite keys resolve) python ~/.claude/skills/citation-management/scripts/validate_citations.py \ --tex paper/main.tex --bib paper/references.bib --check-figures --figures-dir paper/figures/ Reports: missing citations, unused bib entries, duplicate keys, duplicate sections, duplicate labels, undefined r...
|
1.8K |
| 6825 | video-motion-graphics | dylantarre/animation-principles |
Video Motion Graphics Apply Disney's 12 animation principles to After Effects, Premiere Pro, and video motion design. Quick Reference Principle Motion Graphics Implementation Squash & Stretch Overshoot expressions, elastic motion Anticipation Pre-movement, wind-up keyframes Staging Composition, depth, focus pulls Straight Ahead / Pose to Pose Frame-by-frame vs keyframe animation Follow Through / Overlapping Delayed layers, expression lag Slow In / Slow Out Graph editor curves, easing Arc Motio...
|
1.8K |
| 6826 | skill-review | sanyuan0704/sanyuan-skills |
Skill Review IRON LAW: Be specific and actionable. Never say "could be improved" without stating exactly what to change and why it matters for model output quality. Workflow Skill Review Progress: Show more Installs 527 Repository sanyuan0704/san…n-skills GitHub Stars 3.7K First Seen May 11, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.8K |
| 6827 | edge-to-edge | android/skills |
Prerequisites Project MUST use Android Jetpack Compose. Project MUST target SDK 35 or later. If the SDK is lower than 35, increase the SDK to 35. Step 1: plan Locate and analyze all Activity classes to detect which have existing edge-to-edge support. For every Activity without edge-to-edge, plan to make each Activity edge-to-edge. In each Activity, Locate and analyze all lists and FAB components to detect which have existing edge-to-edge support. For every component without edge-to-edge support,...
|
1.8K |
| 6828 | data-manager-api-event-ingestion | google/skills |
Data Manager API Event Ingestion Implementation Workflow Prerequisites Authentication & Library Installation : If you need to set up access to the Data Manager API or install the client and utility libraries, refer to the data-manager-api-setup skill. Step 1: Identify Use Case & Read Documentation Show more Installs 914 Repository google/skills GitHub Stars 15.6K First Seen Jun 23, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
|
1.8K |
| 6829 | qwenchance | thananon/9arm-skills |
Staying on Track Long, multi-step work fails three ways: looping , over-thinking , and running out of context . Run the checklist below before each step . When a trigger fires, do the matching action — don't deliberate about it. Before each step — run this Check Trigger fires when... Do this Looping? You're about to repeat an action (see signals below) Break the loop — pick one fix below Over-thinking? You've reasoned past ~1000 words without acting Stop. Act on your current best decision, or as...
|
1.8K |
| 6830 | brand-promo-video-generator | minimax-ai/minimax-h3 |
Brand Promo Video Generator Create a polished short promo video for a brand, product, website, app, shop, or personal project. Use this Skill when the user has a logo, product images, screenshots, a website link, or just a clear idea and wants the agent to turn those materials into a clean brand reel. This Hub adaptation replaces third-party Vibe Motion / Remotion implementation details with Hub-native orchestration: source research, asset verification, story planning, image/video generation, op...
|
1.8K |
| 6831 | minimalist-product-ad-generator | minimax-ai/minimax-h3 |
Minimalist Product Ad Generator Use this Skill to guide non-professional users through a flow-style workflow that creates a minimalist product advertising video for e-commerce promotion and product launches. The target users are e-commerce sellers, small brand owners, indie creators, and individual sellers; the user should provide at least one product image or related asset. The core principle is: confirm assets and brief first, build product facts and a product narrative spine, lock product vis...
|
1.8K |
| 6832 | papercraft-stop-motion-explainer | minimax-ai/minimax-h3 |
Papercraft Stop-Motion Explainer Create a complete papercraft stop-motion explainer package from a science, education, or knowledge topic. The output is a production-ready creative plan: style rules, character and set design, asset planning, prompts, storyboard structures, motion language, sound direction, negative prompts, and review criteria. Use this Skill when the user wants a tactile handmade explainer style: layered paper, cardboard cutouts, miniature diorama, stop-motion puppet movement, ...
|
1.8K |
| 6833 | design-mcp-workflow | anthropics/knowledge-work-plugins |
Design MCP Workflow Use this skill when the user wants Claude or another MCP-capable client to interact with Zoom via tool calls instead of only deterministic API code. Covers MCP fit assessment REST API vs MCP boundaries Hybrid architectures Connector expectations Whiteboard-specific MCP routing Workflow Decide whether the problem is agentic tooling, deterministic automation, or both. Route MCP-only tasks to zoom-mcp . Route hybrid tasks to both zoom-mcp and rest-api . If Whiteboard is central,...
|
1.8K |
| 6834 | opencli-sitemap-author | jackwener/opencli |
opencli-sitemap-author You are authoring a task execution graph for agents , not an SEO sitemap. The artifact should help an agent using opencli browser decide where it is, what path to take next, which OpenCLI adapter to prefer, and how to recover when the page disagrees with memory. Keep the sitemap small and verified. Do not crawl a whole site. Capture only task-relevant paths that you actually observed. Storage Model Two layers: Global seed : sitemaps/<site>/ (top-level) Local overlay : ~/.o...
|
1.8K |
| 6835 | data-manager-api-audience-ingestion | google/skills |
Data Manager API Audience Ingestion Implementation Workflow Prerequisites Authentication & Library Installation : If you need to set up access to the Data Manager API or install the client and utility libraries, refer to the data-manager-api-setup skill. Audience Creation (if needed) : If the user does not have an existing audience or needs to create a new one, use the Create an Audience reference. This step provides the product_destination_id needed for the ingestion or removal requests. Step 1...
|
1.8K |
| 6836 | input-systems | gamedev-skills/awesome-gamedev-agent-skills |
Input systems Never wire gameplay to raw keys. Map physical inputs (a key, a button, a touch) to named actions ( jump , interact , move ), and let gameplay read actions. That one indirection gives you rebinding, multi-device support, and accessibility almost for free. This skill is the engine-neutral architecture; bind it to unity-input-system , unreal-enhanced-input , or Godot's InputMap . When to use Use to design an input layer: actions, bindings, multiple devices, and a rebinding UI with con...
|
1.8K |
| 6837 | music-video-subtitle-generator | minimax-ai/minimax-h3 |
Music Aesthetics MV Purpose Use this Skill when the user wants to create, revise, audit, or generate music-video prompts or emotional short-film prompts where music, lyrics, typography, references, rhythm, performance, and camera language must be designed together. The workflow adapts MV prompt rules into Hub execution: key creative decisions are confirmed, locked prompts are written to canvas text nodes, and media creation is delegated to Hub agents. Do not use it for ordinary subtitle burn-in,...
|
1.8K |
| 6838 | gtm-product-led-growth | github/awesome-copilot |
Product-Led Growth Build self-serve acquisition and expansion motions. But first, figure out if PLG is even the right motion for your product. When to Use Triggers: "Should we build PLG or sales-led?" "How do we drive self-serve adoption?" "Freemium to paid conversion isn't working" "Developer-led adoption strategy" "Which growth channels should we invest in?" "How do I know if PLG will work?" Context: Developer tools and platforms B2B SaaS with self-serve potential Products where value is obvio...
|
1.8K |
| 6839 | p9 | tanweai/pua |
PUA P9 管理者 — 写 Prompt 不写代码 懂战略、搭班子、做导演。管 P8 不管 P7。你的代码是 Prompt。 详细协议见 references/p9-protocol.md 。加载后按协议执行。 Agent Team 架构详见 references/agent-team.md 。 核心行为遵循 /pua 核心 skill 的三条红线和旁白协议。
|
1.8K |
| 6840 | pnpm | onmax/nuxt-skills |
pnpm is a fast, disk space efficient package manager. It uses a content-addressable store to deduplicate packages across all projects on a machine, saving significant disk space. pnpm enforces strict dependency resolution by default, preventing phantom dependencies. Configuration should preferably be placed in pnpm-workspace.yaml for pnpm-specific settings. Important: When working with pnpm projects, agents should check for pnpm-workspace.yaml and .npmrc files to understand workspace structure a...
|
1.8K |
| 6841 | in-app-events | eronred/aso-skills |
In-App Events You help the user plan, write, and optimize App Store In-App Events — event cards that surface in search, the Today tab, and the product page, driving installs and re-engagement without paid media. What In-App Events Are In-App Events are time-limited content cards on the App Store. They appear: Today tab (editorial + algorithmic) Search results (alongside app results) Your product page Personalized recommendations (for lapsed users) Key advantage: Existing users who haven't opened...
|
1.8K |
| 6842 | zoom-mcp | anthropics/knowledge-work-plugins |
Zoom MCP Guidance for the bundled Zoom MCP connector in this Claude plugin. Prefer design-mcp-workflow or setup-zoom-mcp first, then route here for tool-surface details, auth expectations, and MCP-specific constraints. Zoom MCP Server This plugin bundles Zoom's hosted MCP server at mcp-us.zoom.us for AI-agent access to: semantic meeting search meeting-linked asset retrieval recording resource retrieval Zoom Docs are exposed through a separate bundled server: zoom-docs-mcp at mcp.zoom.us purpose-...
|
1.8K |
| 6843 | computer-automation | web-infra-dev/midscene-skills |
Desktop Computer Automation CRITICAL RULES — VIOLATIONS WILL BREAK THE WORKFLOW: Never run midscene commands in the background. Each command must run synchronously so you can read its output (especially screenshots) before deciding the next action. Background execution breaks the screenshot-analyze-act loop. Run only one midscene command at a time. Wait for the previous command to finish, read the screenshot, then decide the next action. Never chain multiple commands together. Allow enough time ...
|
1.8K |
| 6844 | fusion-code-conventions | equinor/fusion-skills |
Code Conventions When to use Use this skill whenever code needs to be reviewed, written, or explained against project conventions. It applies at two layers: Language conventions — naming, file naming patterns, type system, TSDoc and XML doc standards, code structure, error handling, async patterns, and dead code policy. Each language has a dedicated agent and an authoritative reference document. Cross-cutting conventions — applied on every code review regardless of language: intent capture (ever...
|
1.8K |
| 6845 | startup-analysis | himself65/finance-skills |
Startup Analysis Produces a multi-perspective analysis of a startup, examining it through three lenses that each reveal different aspects of company health and potential: VC Investor Lens — Is this a good investment? Market size, unit economics, growth trajectory, team quality, defensibility Job Applicant Lens — Should I work here? Equity value, runway risk, culture signals, career growth, compensation fairness CEO/Founder Lens — How healthy is this company? Product-market fit, burn efficiency, ...
|
1.8K |
| 6846 | edgeone | aahl/skills |
EdgeOne Deploy HTML content to EdgeOne Pages, return the public URL. No login required, no API key required. Deploy HTML HTML or text content to deploy. Provide complete HTML or text content you want to publish, and the system will return a public URL where your content can be accessed. npx -y mcporter call mcp-on-edge.edgeone.app/mcp-server.deploy-html value = "<html>Content</html>" npx -y mcporter call mcp-on-edge.edgeone.app/mcp-server.deploy-html value = " $( cat index.html ) "
|
1.8K |
| 6847 | impeccable-design-polish | nexu-io/open-design |
Impeccable Design Polish Use this skill as the post-generation pass for an existing design. It should not restart the project from scratch; it should make the current artifact sharper, more usable, and closer to something a designer would ship. Follow-Up Modes Audit : identify the highest-impact issues in hierarchy, spacing, color, type, interaction states, responsiveness, and accessibility. Critique : explain what feels generic, overdesigned, underdesigned, or inconsistent. Polish : directly ed...
|
1.8K |
| 6848 | threejs-3d-generator | majidmanzarpour/threejs-game-skills |
Three.js 3D Generator Purpose Create production-oriented 3D assets, then prepare them for Three.js games. This is the Three.js game system's 3D-generation layer; it uses Tripo as the provider for text-to-3D, image-to-3D, texturing, rigging, retargeting, stylization, conversion, and downloadable GLB/FBX outputs. Resolve <this-skill-dir> in the commands below in this order: ~/.claude/skills/threejs-3d-generator , ~/.codex/skills/threejs-3d-generator , ~/.agents/skills/threejs-3d-generator , or rep...
|
1.8K |
| 6849 | portable-text-conversion | sanity-io/agent-toolkit |
Portable Text Conversion Convert external content (HTML, Markdown) into Portable Text for Sanity. Three main approaches: markdownToPortableText — Convert Markdown directly using @portabletext/markdown (recommended for Markdown) htmlToBlocks — Parse HTML into PT blocks using @portabletext/block-tools (for HTML migration) Manual construction — Build PT blocks directly from any source (APIs, databases, etc.) Portable Text Specification Understand the target format before converting. PT is an array ...
|
1.8K |
| 6850 | google-cloud-solution-agentic-ai-bidirectional-streaming | google/skills |
Live bidirectional multimodal streaming agentic AI solution This skill guides agents through the workflow to design and implement a tailored multi-product solution in the cloud for a live, bidirectional multimodal streaming workload, use case, or requirement. Workflow The solution design and implementation workflow consists of the following phases: Show more Installs 855 Repository google/skills GitHub Stars 15.4K First Seen Jul 8, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk W...
|
1.8K |