SalesforceMobileSDK-Templates: Skill for Claude Code

.claude/skills/test-sdk-consumer-skills/SKILL.md

test-sdk-consumer-skills is a skill for Claude Code from forcedotcom/SalesforceMobileSDK-Templates. It costs 56 tokens per session (4,941 once invoked), scanned A, original, BSD-3-Clause.

An end-to-end test harness for the iOS and Android SDK consumer skills. It creates separate sample apps, applies each supported setup scenario, builds them, and reports which tests passed or failed.

In plain words
What is it for?
Use it to test new apps, SDK installation, SmartStore local data storage, MobileSync data synchronization, and biometric authentication scenarios on iOS and Android.
Why use it?
It checks whether the SDK instructions work in complete applications instead of only checking isolated snippets. This can reveal setup or integration problems across both mobile platforms.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: positional $N argument.

This is forcedotcom/SalesforceMobileSDK-Templates's own configuration. It tells Claude Code how to work on SalesforceMobileSDK-Templates itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything SalesforceMobileSDK-Templates configures →

Reuse

Borrowing it

Nothing to install: this file belongs to forcedotcom/SalesforceMobileSDK-Templates. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/forcedotcom/SalesforceMobileSDK-Templates/dev/.claude/skills/test-sdk-consumer-skills/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/forcedotcom/SalesforceMobileSDK-Templates

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-sdk-consumer-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/forcedotcom/salesforcemobilesdk-templates/test-sdk-consumer-skills/github.svg)](https://agentmods.dev/skills/forcedotcom/salesforcemobilesdk-templates/test-sdk-consumer-skills)
Your own site
<a href="https://agentmods.dev/skills/forcedotcom/salesforcemobilesdk-templates/test-sdk-consumer-skills"><img src="https://agentmods.dev/badge/skills/forcedotcom/salesforcemobilesdk-templates/test-sdk-consumer-skills/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for test-sdk-consumer-skills

Your own site · 80×15
<a href="https://agentmods.dev/skills/forcedotcom/salesforcemobilesdk-templates/test-sdk-consumer-skills"><img src="https://agentmods.dev/badge/skills/forcedotcom/salesforcemobilesdk-templates/test-sdk-consumer-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,941 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 114
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.04941
Opus 5 $0.00028 $0.02471
Sonnet 5 $0.00011 $0.00988
Haiku 4.5 $0.00006 $0.00494

Measured 12d ago against content hash 50696a5378f5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

test-sdk-consumer-skills scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/test-sdk-consumer-skills/SKILL.md · 447 lines

How it starts

The opening of the file, as written. The whole thing — 447 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test SDK Consumer Skills

End-to-end test harness that exercises every scenario within the consolidated ios-mobile-sdk and android-mobile-sdk skills by creating a fresh app for each one, applying the appropriate skill scenario, building the result, and reporting a pass/fail summary alongside the paths so the user can do further manual testing.

The consolidated skills use progressive disclosure, so this test harness validates that each scenario path (create app, add SDK, add SmartStore, add MobileSync, add biometric auth) produces buildable, working apps.

Apps Created

# Name Platform Skill + Scenario Applied
1 SkillTest_iOS_Full iOS (CocoaPods) ios-mobile-sdk → "Create New App"
2 SkillTest_iOS_SDK iOS (CocoaPods) ios-mobile-sdk → "Add Mobile SDK"
3 SkillTest_iOS_SmartStore iOS (CocoaPods) ios-mobile-sdk → "Add Mobile SDK" → "Add SmartStore"
4 SkillTest_iOS_MobileSync iOS (CocoaPods) ios-mobile-sdk → "Add Mobile SDK" → "Add SmartStore" → "Add MobileSync"
5 SkillTest_iOS_Biometric iOS (CocoaPods) ios-mobile-sdk → "Add Mobile SDK" → "Add Biometric Auth"
6 SkillTest_Android_Full Android (Gradle) android-mobile-sdk → "Create New App"
7 SkillTest_Android_SDK Android (Gradle) android-mobile-sdk → "Add Mobile SDK"
8 SkillTest_Android_SmartStore Android (Gradle) android-mobile-sdk → "Add Mobile SDK" → "Add SmartStore"
9 SkillTest_Android_MobileSync Android (Gradle) android-mobile-sdk → "Add Mobile SDK" → "Add SmartStore" → "Add MobileSync"
10 SkillTest_Android_Biometric Android (Gradle) android-mobile-sdk → "Add Mobile SDK" → "Add Biometric Auth"

Prerequisites

  • xcodegen installed (brew install xcodegen)
  • cocoapods installed (brew install cocoapods)
  • Android SDK installed with ANDROID_HOME set
  • JAVA_HOME pointing to a JDK 17

Verify:

which xcodegen && which pod && echo $ANDROID_HOME && java -version

Read the full file on GitHub · 447 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 447 lines · 56 tokens per session scan A 50696a5378f5

Subscribe to this mod's changes

test-sdk-consumer-skills is a skill published in the GitHub repository forcedotcom/SalesforceMobileSDK-Templates (58 stars, last pushed yesterday), licensed BSD-3-Clause. It adds 56 tokens to every session and 4,941 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

android-ui-journey-testing

XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.

sickn33/agentic-awesome-skills · 27 tokens

android_ui_verification

Automated end-to-end UI testing and verification on an Android Emulator using ADB.

sickn33/agentic-awesome-skills · 22 tokens

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

solopi-ai

A command-line framework for testing Android apps and devices with SoloPi, including on-device or cloud AI decision models. It manages devices, test cases, recorded interactions, replays, performance history, and evidence.

alipay/SoloPi · 127 tokens

eas-simulator

EAS service (paid). Run and control a user's app on a remote iOS/Android simulator hosted on EAS cloud. Read before running any eas simulator: commands - it has the current syntax for this experimental API. Use whenever the user needs a simulator they can't run locally - 'run my app on a cloud simulator', 'use eas…

expo/skills · 249 tokens

flutter-add-integration-test

Configures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when adding integration testing to a project, exploring UI components via MCP, or automating user flows with the integrationtest package.

flutter/agent-plugins · 48 tokens