Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Afls Mobile App Settings

ASecurity

Manages AFLS Mobile Application Settings in the Admin Console. Use when user asks about mobile app settings, default browser, password type, dashboard refresh, app download URL, background notifications, advanced search, dynamic actions, platform events, survey branching, or profile-based app settings.

2 stars
0 votes
0 copies
0 views
Added 9/19/2026
ai-agentsgoapisecurityperformancedocumentation

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add SalesforceLabs/afls-for-claude --skill afls-mobile-app-settings --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Afls Mobile App Settings?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Afls Mobile App Settings
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/salesforcelabs-afls-mobile-app-settings/badge)](https://www.skillsdirectory.com/skills/salesforcelabs-afls-mobile-app-settings)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: afls-mobile-app-settings
description: Manages AFLS Mobile Application Settings in the Admin Console. Use when user asks about mobile app settings, default browser, password type, dashboard refresh, app download URL, background notifications, advanced search, dynamic actions, platform events, survey branching, or profile-based app settings.
---

For mobile app settings documentation, call `search_afls_knowledge({ query: "mobile application settings" })` to get sourced documentation.


# AFLS Mobile Application Settings

You help configure the AFLS Mobile Application Settings — the Admin Console settings under **Mobile > Application Settings** that control mobile app behavior (browser, password, search, notifications, etc.).

## CRITICAL: USE ADMIN CONSOLE TOOLS

Application Settings are stored as `LifeSciConfigRecord` / `LifeSciConfigFieldValue` entries under the `ApplicationSettings` category. They are NOT queryable via standard SOQL.

**Use these tools:**
- **List settings:** `list_admin_settings({ category: "ApplicationSettings" })` — shows all org-level application settings
- **Update a setting:** `update_admin_setting({ recordId: "...", fields: { ... } })` — update specific field values
- **Profile-based settings:** `list_admin_settings({ category: "ProfileBasedAppSettings" })` — shows profile-specific overrides

**NEVER use `run_soql`, `get_record`, or `describe_sobject`** for these settings.

---

## CONFIGURATION MODE

When the user asks about configuring Application Settings, **ask them which mode they prefer**:

1. **Show me the documentation** — I'll configure it myself in the Salesforce UI
2. **Walk me through it** — Configure it directly in my org step-by-step

If the user doesn't explicitly choose, **default to guided setup** when they're connected to an org, or documentation mode if no org is connected.

### GUIDED SETUP WORKFLOW

#### Step 1: Check Current State
```
list_admin_settings({ category: "ApplicationSettings" })
```

#### Step 2: Report Findings
Present a clear summary table of all settings and their current values. Map field names to their UI labels using the reference table below.

#### Step 3: Propose Changes
Based on the user's request, propose specific changes:
- "I'll set Default Browser to Chrome. OK?"
- "I'll enable Background Notifications. OK?"
- "I'll set Hourly Dashboard Refresh Limit to 3. OK?"

#### Step 4: Apply Changes (with user confirmation)
```
update_admin_setting({ recordId: "...", fields: { FieldName: "newValue" } })
```

#### Step 5: Verify
Re-run `list_admin_settings({ category: "ApplicationSettings" })` to confirm changes.

---

## Application Settings Field Reference

The `ApplicationSettings_OrgLevel` record is an org-level (`IsOrgLevel: true`) record under the `ApplicationSettings` category. It contains the following field values:

### Picklist Settings

| UI Label | FieldName | DataType | Valid Values | Default |
|----------|-----------|----------|--------------|---------|
| Default Browser | `DefaultBrowser` | PICKLIST | `Safari`, `Chrome`, `InAppBrowser` | `Safari` |
| Password Type | `PasswordType` | PICKLIST | `Numeric`, `Alphanumeric` | `Numeric` |

### Integer Settings

| UI Label | FieldName | DataType | Description | Default |
|----------|-----------|----------|-------------|---------|
| Hourly Dashboard Refresh Limit | `HourlyDashboardRefreshLimit` | INTEGER | Number of times dashboard can refresh per hour | `1` |

### Text/URL Settings

| UI Label | FieldName | DataType | Description |
|----------|-----------|----------|-------------|
| App Download URL | `AppDownloadUrl` | TEXT | Full URL to download the app from the App Store |

### Boolean Toggle Settings

| UI Label | FieldName | DataType | Description |
|----------|-----------|----------|-------------|
| Let users use View Online option | `LetUsersUseViewOnline` | BOOLEAN | Show "View Online" on home screen |
| Let users view reports | `LetUsersViewReports` | BOOLEAN | Allow report viewing in mobile |
| Enable Background Notifications | `EnableBackgroundNotifications` | BOOLEAN | Push notifications when app is backgrounded |
| Enable advanced search | `EnableAdvancedSearch` | BOOLEAN | Enable advanced search functionality |
| Use Advanced Search for lookups | `UseAdvancedSearchForLookups` | BOOLEAN | Use advanced search in lookup fields |
| Use Advanced Search for account lookups | `UseAdvancedSearchForAccountLookups` | BOOLEAN | Use advanced search specifically for account lookups |
| Let users override lookup search fields | `LetUsersOverrideLookupSearchFields` | BOOLEAN | Allow users to customize lookup search fields |
| Enable Dynamic Actions | `EnableDynamicActions` | BOOLEAN | Enable dynamic action framework |
| Let users publish platform events | `LetUsersPublishPlatformEvents` | BOOLEAN | Allow platform event publishing from mobile |
| Hide app upgrade notifications | `HideAppUpgradeNotifications` | BOOLEAN | Suppress app update notifications |
| Show persistent help text | `ShowPersistentHelpText` | BOOLEAN | Always show help text on fields |
| Enable Survey Branching Single Page | `EnableSurveyBranchingSinglePage` | BOOLEAN | Single-page survey branching mode |
| Enable Survey Confirmation | `EnableSurveyConfirmation` | BOOLEAN | Show confirmation after survey submission |

**NOTE:** The exact FieldName values above are based on the official help documentation UI labels. When you first run `list_admin_settings({ category: "ApplicationSettings" })`, verify the actual field names returned by the Tooling API and use those exact names for updates. The names may use slightly different casing or format than shown above.

---

## Profile-Based App Settings

In addition to org-level settings, administrators can configure **profile-specific overrides** under `ProfileBasedAppSettings`.

### To view profile-based settings:
```
list_admin_settings({ category: "ProfileBasedAppSettings" })
```

Profile-based settings allow different profiles to have different values for the same settings (e.g., one profile has advanced search enabled while another doesn't).

### Common profile-based fields:

| UI Label | FieldName | DataType | Description |
|----------|-----------|----------|-------------|
| Login Page Type | `LoginPageType` | PICKLIST | Type of login page to show |
| Default Landing Tab | `DefaultLandingTab` | TEXT | Which tab opens after login |
| Maximum Offline Days | `MaxOfflineDays` | INTEGER | How many days the app works offline |
| Enable Offline Mode | `EnableOfflineMode` | BOOLEAN | Allow offline access |

---

## Common Operations

### View All Application Settings
```
list_admin_settings({ category: "ApplicationSettings" })
```

### Enable Background Notifications
```
update_admin_setting({ recordId: "<id>", fields: { EnableBackgroundNotifications: true } })
```
Get the record ID from `list_admin_settings` first.

### Change Password Type
```
update_admin_setting({ recordId: "<id>", fields: { PasswordType: "Alphanumeric" } })
```

### Enable Advanced Search
```
update_admin_setting({ recordId: "<id>", fields: { EnableAdvancedSearch: true, UseAdvancedSearchForLookups: true, UseAdvancedSearchForAccountLookups: true } })
```

### Set App Download URL
```
update_admin_setting({ recordId: "<id>", fields: { AppDownloadUrl: "https://apps.apple.com/..." } })
```

---

## Configuration Location (UI)

**Admin Console > Mobile > Application Settings**

Required permission: **Life Sciences Commercial Admin** permission set.

---

## Best Practices

1. **Review all settings before go-live** — Run `list_admin_settings({ category: "ApplicationSettings" })` and verify each setting matches your implementation requirements.
2. **Enable Advanced Search** — Most implementations benefit from advanced search. Enable all three search toggles for the best user experience.
3. **Background Notifications** — Enable for visit reminders and time-sensitive alerts. Requires push notification setup in the mobile app.
4. **Password Type** — Use `Alphanumeric` for higher security requirements. `Numeric` is faster for field reps.
5. **Dashboard Refresh Limit** — Keep at 1-3 to avoid excessive API calls. Higher values may impact performance.
6. **Profile-Based Overrides** — Use `ProfileBasedAppSettings` to give different profiles different configurations (e.g., medical reps get different search settings than sales reps).

---

## Cross-References

- **DB Schema / Object Sync:** See `afls-db-schema` skill
- **Mobile Cache Generation:** See `afls-mobile-validation` skill
- **Home Page Configuration:** See `afls-home-page-configuration` skill
- **Quick Actions:** See `afls-quick-actions-configuration` skill

Attribution

SalesforceLabsSalesforceLabs
View sourceMore from SalesforceLabs →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →