Loading...
Loading...
Import a migration bundle into Starchild. Downloads from relay, validates, and loads all components using native tools.
npx skill4agent add starchild-ai-agent/official-skills agent-importagent-export1. Run the import script to download & extract
2. Review the extracted data with the user
3. Apply each component using native toolspython3 sc-agent-migration/skills/agent-import/scripts/download.py <CODE> <DOWNLOAD_TOKEN>migration/cat migration/manifest.json
cat migration/memory/agent.json 2>/dev/null
cat migration/memory/user.json 2>/dev/null
cat migration/identity/profile.json 2>/dev/null
cat migration/identity/soul.md 2>/dev/null
cat migration/user/settings.json 2>/dev/null
cat migration/tasks/tasks.json 2>/dev/null
cat migration/env/keys.json 2>/dev/null
find migration/files/ -type f 2>/dev/nullmigration/user/settings.jsonuser_settings(action="update", settings={
"name": "...",
"what_to_call": "...",
"timezone": "...",
"language": "..."
})migration/identity/profile.jsonagent_profile(action="update", profile={
"name": "...",
"vibe": "...",
"emoji": "...",
"creature": "..."
})migration/identity/soul.mdprompt/SOUL.mdmigration/memory/agent.jsonmemory(action="add", target="memory", content="<entry>")memory(action="read")migration/memory/user.jsonmemory(action="add", target="user", content="<entry>")migration/tasks/tasks.jsonscheduled_task(action="register", title=..., schedule=..., description=..., channels=...)run.pybash("python3 tasks/{job_id}/run.py")scheduled_task(action="activate", job_id=...)migration/env/keys.jsonrequest_env_input(env_vars=[...], reason="Migration from <source>")migration/files/cp -r migration/files/* . 2>/dev/nullrm -rf migration/ migration-bundle.tar.gz| Error | Cause | Fix |
|---|---|---|
| Wrong or missing download token | Re-check the token from the source agent output |
| Code already used or never existed | Ask source agent to re-export |
| Code older than 1 hour | Ask source agent to re-export |
| Too many failed attempts | Wait 1 hour |
| Invalid tar.gz | Corrupted upload | Re-export from source agent |
| No manifest.json | Invalid bundle structure | Bundle must have manifest.json at root |