# Send Mobile App Builder 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": "mobile-app-builder",
    "name": "Mobile App Builder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Stoplossking1/mobile-app-builder",
    "canonicalUrl": "https://clawhub.ai/Stoplossking1/mobile-app-builder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mobile-app-builder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-app-builder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "Skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mobile-app-builder"
    },
    "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/mobile-app-builder",
    "downloadUrl": "https://openagent3.xyz/downloads/mobile-app-builder",
    "agentUrl": "https://openagent3.xyz/skills/mobile-app-builder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mobile-app-builder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mobile-app-builder/agent.md"
  }
}
```
## Documentation

### Core Operating Rules

Prioritize shipping working, testable increments over large unverified rewrites.
Keep solutions cross-platform by default (iOS + Android) unless the user requests platform-specific behavior.
Reuse existing project patterns before introducing new abstractions.
Prefer readable, strongly typed code and small, composable modules.
Validate changes with commands the user can run locally.

### 1) Clarify Scope

Capture the user goal as a concrete deliverable.
Confirm constraints: stack, timeline, supported platforms, auth, backend, offline needs, and notifications.
Convert ambiguous requests into explicit acceptance criteria.

### 2) Detect Project Mode

Detect whether this is:

a greenfield app,
a feature addition,
a bugfix,
a refactor/performance pass,
release hardening.

Tailor the implementation depth to the detected mode.

### 3) Plan Before Editing

Identify impacted screens, state, navigation, data layer, and native capabilities.
Define the smallest safe implementation slice.
List verification commands before coding.

### 4) Implement Incrementally

Create or update one coherent unit at a time (UI, hook/viewmodel, API client, schema, tests).
Keep business logic out of view layers where possible.
Avoid introducing unused dependencies.

### 5) Validate and Report

Run relevant checks (typecheck, lint, tests, build/start commands).
Report what passed, what failed, and what was not run.
Summarize changed files and key behavior updates.

### Technical Defaults

Default stack: React Native + Expo + TypeScript.
State strategy: use existing app pattern first (context/store/query library).
Networking: typed API client boundaries and defensive parsing.
Forms: explicit validation and clear user error states.
Navigation: preserve current routing conventions.
Styling: follow existing design system/tokens; avoid one-off inline styles.

### Mobile Quality Checklist

Confirm loading, empty, success, and error states exist.
Confirm touch targets are usable and layout adapts to small screens.
Confirm text wraps correctly and avoids clipped content.
Confirm accessibility labels/roles on interactive elements.
Confirm no crashes from undefined/null edge cases.
Confirm async actions have visible progress and failure handling.

### Performance Checklist

Minimize unnecessary re-renders in lists and heavy screens.
Memoize expensive derived values when profiling shows need.
Keep bundle impact low; remove dead imports.
Defer non-critical work from initial screen render.

### Data and API Rules

Treat API contracts as versioned interfaces.
Avoid breaking existing clients without a migration path.
Add backward-compatible fields/functions when behavior changes.
Keep serialization/deserialization logic centralized.

### Native/Release Readiness

Verify app config, permissions, deep links, and environment variables.
Ensure icons, splash assets, and bundle identifiers/package names are consistent.
Confirm release build commands and signing prerequisites are documented.
Provide a short release checklist for iOS and Android when requested.

### Debugging Protocol

Reproduce first with clear steps.
Isolate whether issue is UI, state, network, storage, or native bridge.
Add narrow instrumentation/logging only where needed.
Fix root cause, then remove temporary debugging noise.
Add regression coverage for high-risk bugs.

### Output Contract

For each completed task, provide:

What changed.
Why the approach was chosen.
Exact files touched.
Validation commands run and outcomes.
Remaining risks or follow-ups.

### Guardrails

Do not fabricate API responses, device behavior, or test results.
Do not claim a task is complete without verification evidence.
Do not perform destructive data/schema changes without explicit user approval.
Do not break existing navigation or auth flows to satisfy local changes.

### Greenfield MVP

Scaffold app shell.
Implement core navigation and one vertical feature slice.
Add typed API boundary and mock/real data switch.
Add baseline test and lint/typecheck pass.

### Feature Addition

Reuse existing screen/module pattern.
Add minimal data contract changes.
Add/adjust tests for new behavior.

### Bugfix

Write reproduction notes.
Fix smallest root cause.
Add regression test if feasible.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Stoplossking1
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mobile-app-builder)
- [Send to Agent page](https://openagent3.xyz/skills/mobile-app-builder/agent)
- [JSON manifest](https://openagent3.xyz/skills/mobile-app-builder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mobile-app-builder/agent.md)
- [Download page](https://openagent3.xyz/downloads/mobile-app-builder)