# Send AppStore Rating Pulse to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "appstore-rating-pulse",
    "name": "AppStore Rating Pulse",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aligurelli/appstore-rating-pulse",
    "canonicalUrl": "https://clawhub.ai/aligurelli/appstore-rating-pulse",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/appstore-rating-pulse",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=appstore-rating-pulse",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch-ratings.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "appstore-rating-pulse",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T02:14:14.349Z",
      "expiresAt": "2026-05-07T02:14:14.349Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=appstore-rating-pulse",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=appstore-rating-pulse",
        "contentDisposition": "attachment; filename=\"appstore-rating-pulse-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "appstore-rating-pulse"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/appstore-rating-pulse"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/appstore-rating-pulse",
    "downloadUrl": "https://openagent3.xyz/downloads/appstore-rating-pulse",
    "agentUrl": "https://openagent3.xyz/skills/appstore-rating-pulse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/appstore-rating-pulse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/appstore-rating-pulse/agent.md"
  }
}
```
## Documentation

### AppStore Rating Pulse

Fetches current overall App Store ratings for iOS apps across any country using Apple's free iTunes Lookup API — no API key or paid subscription needed.

### Setup

Edit scripts/fetch-ratings.sh with your apps and regions:

# Apps: "App Name" "AppStoreID" "CC1,CC2,CC3"
APPS=(
  "My App|1234567890|US,GB,DE"
  "Another App|9876543210|US,JP,KR"
)

Country codes follow ISO 3166-1 alpha-2 (US, GB, JP, KR, DE, FR, RU, ES, CA, AU, etc.).

### Run Manually

bash /path/to/skills/public/appstore-rating-pulse/scripts/fetch-ratings.sh

### Output Format

overall rating for My App(1234567890) 19.02.2026 - 4,72 - USA
overall rating for My App(1234567890) 19.02.2026 - 4,10 - UK
overall rating for My App(1234567890) 19.02.2026 - N/A - GERMANY

Ratings use comma as decimal separator. N/A means the app has no ratings in that country yet.

### Daily Cron Setup

Create an isolated cron job (sessionTarget: isolated) that runs the script and delivers the output via announce:

Run bash /path/to/scripts/fetch-ratings.sh and send the output to the user as-is. If all lines show N/A or the script errors, warn that something may be wrong.

Schedule example: 0 12 * * * (daily at noon, your timezone).

### Customization

Add/remove apps by editing the APPS array in fetch-ratings.sh
Add/remove countries per app by editing the comma-separated country code list
Country name display is handled automatically (common countries are mapped; others display as the raw code)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aligurelli
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T02:14:14.349Z
- Expires at: 2026-05-07T02:14:14.349Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/appstore-rating-pulse)
- [Send to Agent page](https://openagent3.xyz/skills/appstore-rating-pulse/agent)
- [JSON manifest](https://openagent3.xyz/skills/appstore-rating-pulse/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/appstore-rating-pulse/agent.md)
- [Download page](https://openagent3.xyz/downloads/appstore-rating-pulse)