# Send Cancorteaw App 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": "cancorteaw-app",
    "name": "Cancorteaw App",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cancorleone/cancorteaw-app",
    "canonicalUrl": "https://clawhub.ai/cancorleone/cancorteaw-app",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cancorteaw-app",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cancorteaw-app",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "skill.json"
    ],
    "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/cancorteaw-app"
    },
    "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/cancorteaw-app",
    "downloadUrl": "https://openagent3.xyz/downloads/cancorteaw-app",
    "agentUrl": "https://openagent3.xyz/skills/cancorteaw-app/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cancorteaw-app/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cancorteaw-app/agent.md"
  }
}
```
## Documentation

### cancorteaw-app

Local Expo / React Native app builder runner for my OpenClaw server.

This skill is a controlled runner that only executes an allowlisted script:
/home/patron/apps/_bin/appctl
and that script is restricted to operate under:
/home/patron/apps/<project>.

### What it does

This skill wraps appctl to provide a safe, repeatable workflow:

Create a new Expo app scaffold under /home/patron/apps/<name>
Add a screen file under /home/patron/apps/<name>/app/<Screen>.tsx
Start a web preview (expo start --web) bound to 127.0.0.1 on a chosen port
Check status of the preview process

### 1) Create a new app

Command:

new <name>

Example:

new demoapp

Result:

Creates /home/patron/apps/demoapp
Initializes git (best-effort)
Uses npx create-expo-app in non-interactive mode

### 2) Add a screen

Command:

add-screen <name> <screenName> <title>

Example:

add-screen demoapp Settings "Settings"

Result:

Writes: /home/patron/apps/demoapp/app/Settings.tsx
Makes a git commit (best-effort)

### 3) Start web preview

Command:

preview <name>

Environment:

EXPO_PORT (optional): override preview port
Default: 19006

Example:

preview demoapp
EXPO_PORT=19010 preview demoapp

Result:

Starts npx expo start --web --port <port>
Writes logs to: /home/patron/apps/_logs/<name>.preview.log
Writes pid to: /home/patron/apps/_state/<name>.pid
Writes port to: /home/patron/apps/_state/<name>.port

### 4) Status

Command:

status <name>

Example:

status demoapp

Result:

Prints RUNNING with URL if process is alive
Otherwise prints STOPPED

### Safety / Guardrails

The runner is allowlisted: only node, npm, npx, git, bash, python3 can be invoked.
All project paths are constrained to /home/patron/apps.
Preview binds to 127.0.0.1 (loopback). Expose it externally only via explicit SSH tunnel if desired.
Telemetry is disabled for Expo in preview (EXPO_NO_TELEMETRY=1).

### Troubleshooting

If preview says running but page doesn’t load: check the log file in /home/patron/apps/_logs/.
If a port is busy: set EXPO_PORT to a free port and re-run preview.
To stop preview: kill $(cat /home/patron/apps/_state/<name>.pid) (if pid exists).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cancorleone
- Version: 0.1.1
## 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/cancorteaw-app)
- [Send to Agent page](https://openagent3.xyz/skills/cancorteaw-app/agent)
- [JSON manifest](https://openagent3.xyz/skills/cancorteaw-app/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cancorteaw-app/agent.md)
- [Download page](https://openagent3.xyz/downloads/cancorteaw-app)