Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

prime广告洞察

Agent Skill

prime 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,820

周安装

195

GitHub Stars

公开资料未说明

下载量

1,513
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:prime(广告洞察)
来源仓库:https://github.com/duanc-chao/prime
安装命令:
openclaw skills install prime
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install prime

简介

Prime技能处理图像素材与视觉识别任务,支持截图分析与图片内容理解。

  • 适用于需要从界面中提取信息或辅助UI设计、广告优化的开发场景。
  • 接收图片输入后,返回结构化描述或标注结果,便于后续流程处理。
  • 涉及图像上传与处理,请确保符合平台数据安全与隐私政策。
  • 输出精度依赖图片质量与复杂度,模糊或密集内容可能影响识别效果。

SKILL.md

Skill: Mastering the Amazon Prime Ecosystem

Objective

To strategically leverage the Amazon Prime membership to maximize financial value, optimize logistics, and access a comprehensive suite of digital entertainment and lifestyle benefits.

Core Concept

Amazon Prime is not merely a shipping subscription; it is a lifestyle ecosystem designed to reduce friction in commerce and entertainment. By paying a recurring fee (annual or monthly), members gain access to a "walled garden" of perks that extend far beyond free delivery, including high-definition streaming video, ad-free music, exclusive shopping events, and cloud storage. The core philosophy is "stickiness"—creating a seamless loop of utility that makes Amazon the default choice for shopping and media consumption.

Step-by-Step Guide

  1. Optimize Logistics and Shipping

The primary utility of Prime is the elimination of shipping friction. - Unlimited Free Delivery: Members enjoy free, fast shipping on millions of eligible items. This typically includes One-Day or Two-Day delivery, and in many metropolitan areas, Same-Day or even Two-Hour delivery (Prime Now). - Global Shopping (Prime Global): For cross-border shopping (e.g., Amazon Global Store), members often receive free international shipping on orders over a certain threshold (typically $200), significantly reducing the cost of importing goods. - Release Date Delivery: For pre-orders on books or video games, Prime members often receive the item on the day of release, provided the order is placed within a specific window.

  1. Maximize Financial Value through Exclusive Deals

Prime membership acts as a key to lower pricing tiers and exclusive inventory. - Prime Day: This is the flagship event, usually held annually (often in July). It offers deep discounts exclusively for members, often rivaling Black Friday sales. - Lightning Deals: Prime members get "Early Access" to limited-time Lightning Deals, typically 30 minutes before non-members. This is crucial for purchasing high-demand items that sell out quickly. - Prime Exclusive Discounts: Look for the "Prime" badge on product pages, which often indicates a specific price reduction available only to subscribers.

  1. Leverage Digital Entertainment (The "Netflix Killer")

A significant portion of the membership fee covers a massive digital media library. - Prime Video: Access to thousands of movies, TV shows, and critically acclaimed "Amazon Originals" (e.g., *The Lord of the Rings: The Rings of Power*, *The Boys*). This service competes directly with standalone streaming subscriptions. - Prime Music: Members get ad-free access to millions of songs and thousands of playlists and stations. While not the full "On-Demand" library of the paid Music Unlimited tier, it is sufficient for most casual listeners. - Prime Reading & Kindle First: Access to a rotating selection of thousands of Kindle books, magazines, and comics. Additionally, "First Reads" allows members to download one editor's pick for free each month before general release.

  1. Utilize Lifestyle and Utility Tools

Beyond shopping and movies, Prime offers practical tools for daily life. - Amazon Photos: This is a hidden gem for many users. Prime members receive unlimited full-resolution photo storage. Unlike Google Photos or iCloud, this does not count against your standard storage quota, making it an excellent backup solution for smartphone galleries. - Try Before You Buy: For eligible fashion items (clothing, shoes, jewelry), members can order items to try on at home and only pay for what they keep, returning the rest for free.

  1. Manage Household and Sharing

Prime is designed to be shared, increasing its value per capita. - Amazon Household: You can link your account with another adult (spouse/partner) to share payment methods and digital content (apps, games, audiobooks). - Teen and Child Profiles: You can add up to four teens (who can have their own login and shopping permissions) and four child profiles (for content filtering on Fire tablets/TV).

Visual Example: The Value Breakdown

FeatureNon-Prime UserPrime Member
ShippingPays per shipment or waits for "Free Super Saver" (slow).Free One-Day/Two-Day/Same-Day on eligible items.
Video StreamingMust pay for Netflix/Disney+ separately.Included (Prime Video with Originals).
MusicAd-supported or separate subscription.Ad-free streaming included.
Photo StorageLimited free tier (e.g., 5GB).Unlimited full-resolution photo storage.
Shopping EventsStandard pricing; late access to deals.Exclusive discounts; 30-minute early access to Lightning Deals.

Python Code Snippet (Value Calculator)

This conceptual script helps a user determine if the membership is mathematically worth it based on their shopping and usage habits.

def calculate_prime_value(annual_shipping_spend, streaming_subscription_cost, photos_needed):
    """
    Calculates if Amazon Prime is financially viable based on user habits.
    """
    PRIME_ANNUAL_FEE = 139.00 # Approximate US Annual Fee
    ESTIMATED_SAVINGS = 0

    # 1. Calculate Shipping Savings
    # Assume average shipping cost is $6 per order for non-prime
    shipping_savings = annual_shipping_spend 
    
    # 2. Calculate Streaming Value
    # If user cancels other services because of Prime Video/Music
    streaming_savings = streaming_subscription_cost * 12

    # 3. Calculate Storage Value
    # If user would otherwise pay for extra iCloud/Google storage
    storage_savings = 12.00 * 12 if photos_needed else 0

    total_benefit = shipping_savings + streaming_savings + storage_savings
    net_value = total_benefit - PRIME_ANNUAL_FEE

    print(f"--- Prime Value Analysis ---")
    print(f"Total Annual Benefits: ${total_benefit:.2f}")
    print(f"Cost of Prime: -${PRIME_ANNUAL_FEE:.2f}")
    
    if net_value > 0:
        print(f"Verdict: POSITIVE. You save ${net_value:.2f} per year.")
    else:
        print(f"Verdict: NEGATIVE. You lose ${abs(net_value):.2f} in value.")

# Example Usage
# User spends $60 on shipping, pays for one $15/mo streaming service, and needs photo storage
calculate_prime_value(60, 15, True)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.5%
按下载量换算1,127

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills