← ClaudeAtlas

droplisted

Publish agent deliverables to a live review URL and pull human feedback back into the loop. Fires on three branches: the user wants an artifact, prototype, report, or file bundle shared for someone to review online ("send this to the team", "get eyes on this", "publish for review"); an agent loop needs a human verdict before continuing (approve / request-changes gating); and checking or acting on review feedback for an already published drop. Building the artifact itself is htmlize's job; reviewing a workspace locally without publishing anything is docent's. A drop is published the moment it exists -- anything too sensitive for a link that travels stays local.
lroolle/skills · ★ 0 · AI & Automation · score 65
Install: claude install-skill lroolle/skills
# drop A drop is a live, expiring, revocable URL wrapping a bundle of static files, with a review surface a human can annotate and a feedback API the agent reads back. It closes the loop that publish-only tools leave open: publish -> human reviews -> agent reads structured feedback -> revise -> republish, same link. The interface is MCP-only: four tools from the drop MCP server. Configure once: ```json { "mcpServers": { "drop": { "command": "npx", "args": ["-y", "@agentdrop/mcp"], "env": { "AGENTDROP_URL": "https://<your-drop-service>" } } } } ``` ## Step 1 -- Gate Publishing is the exception, not the default exit for every artifact. Publish when a human other than the requester must see it, when review needs to happen on another machine or async, or when an agent loop must block on a human verdict. Stay local when: | Signal | Route | |---|---| | The artifact carries secrets, client code, PII, unreleased work | Keep local -- a capability URL is a publication; treat it like posting the file | | The requester will review in this same session | Just give the file path; a URL adds nothing | | The user wants to browse a whole workspace, not one deliverable | docent serves it locally, nothing leaves the machine | | The deliverable itself still needs building | htmlize first; drop is transport, not authoring | State what is in the bundle before publishing. If any row above matches, say which and stop. ## Step 2 -- Publish Bundle rules: one dire