submit

Share what you're building

Launch a new creation, post an iteration, or drop a note.

Prefer the terminal?

Install /jba-post — drafts updates from your git diff, attaches screenshots, ships in one command.

  1. Request a write token. Self-serve isn't live yet — DM @savarsareen and you'll get one back.
  2. Paste this into your coding agent (Claude Code, Cursor, etc.) from inside your project repo:
    Install the JustBuildApps publishing skill. Replace HANDLE with my JustBuildApps handle (no @), TOKEN with my JBA write token, and SLUG with my creation slug, then run these commands:
    
    mkdir -p ~/.config/jba ~/.claude/skills/jba-post
    echo "HANDLE" > ~/.config/jba/handle
    echo "TOKEN" > ~/.config/jba/token && chmod 600 ~/.config/jba/token
    printf '{ "%s": "SLUG" }\n' "$(pwd)" > ~/.config/jba/repos.json
    curl -sS https://justbuildapps.com/skills/jba-post.md > ~/.claude/skills/jba-post/SKILL.md
    
    After that I'll run /jba-post to draft and ship updates.

    The agent installs the skill from /skill/jba-post and wires up your token + repo mapping.

  3. Run /jba-post from any mapped repo. The skill drafts the update from your latest commit, shows it for approval, then ships.

Want the raw HTTP API instead? See the developer docs →