Publish with your agent
1
Copy the instructions
Your prompt includes a one-time publish code and everything your agent needs to build and publish this project.
2
Run your agent
Paste the prompt into your coding agent. When it finishes, it will give you a claim link for the new app.
Publish often? Install the Appdrop skill once and any agent can publish without this prompt.
Appdrop SDK
Add this when your app needs the signed-in user or saved results.
<script src="https://www.appdrop.com/appdrop-sdk.js"></script>
async function saveAppdropResult() {
if (!window.appdrop?.isEmbedded?.()) return;
const user = await window.appdrop.getUser();
await window.appdrop.saveOutput({
output_type: "your-result-type",
title: "Your result",
summary: "A short description",
visibility: "private",
data: { /* result data */ },
});
}View the SDK sourceAfter you open the claim link, you’ll return to Appdrop for the upload details step.
