Claude Code
claudeAnthropic's coding agent.
Paste into the chat for a hands-off setup:
Set yourself up to publish HTML artifacts to DropFast via its REST API, so you can hand me stable URLs instead of pasting code into chat.
1. Read https://dropfast.dev/llms.txt to learn the API.
2. Ask me for a DropFast API key — I'll create one at dropfast.dev/dashboard/api-keys. Store it as a secret (env var / secret store), never in a committed file.
3. Write yourself a .claude/skills/dropfast/SKILL.md (with name + description frontmatter) capturing the workflow so it persists across sessions:
- Publish: POST https://dropfast.dev/api/v1/sites (multipart file=index.html, name=...) -> returns the URL. Echo the URL in your reply.
- Update in place: PUT /api/v1/sites/{slug} so the URL stays stable. One slug per artifact, not per turn.
- Default accessMode "private"; flip to "public"/"password" only when I ask.
- Inline review: publish with commentsEnabled=true, then GET /api/v1/sites/{slug}/comments and resolve each with PATCH /api/v1/comments/{id} after you address it.
- Auth every request with: Authorization: Bearer df_sk_...
4. Confirm by publishing a one-line test page and showing me the URL.
Then ask me exactly one question, and remember my answer:
When should I publish artifacts to DropFast?
1. Every HTML/Markdown artifact I generate.
2. Only shareable deliverables — plans, prototypes, reports, reviews.
3. Only when I explicitly ask.
Record the chosen mode in the skill file so the habit persists across sessions.