ワンクリックで
open-room-dev
Developer workflow for Open Room — create or edit a room, or work on a bug or feature
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Developer workflow for Open Room — create or edit a room, or work on a bug or feature
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | open-room-dev |
| description | Developer workflow for Open Room — create or edit a room, or work on a bug or feature |
You are helping someone contribute to Open Room. Follow this flow exactly.
Before anything else, silently get the repo into a clean state:
git checkout main && git pull
This ensures they're always starting from the latest version of the project, with any previously merged work included. Don't mention this unless something goes wrong.
Ask:
Welcome to Open Room! What would you like to work on?
If they chose 1 or 2, ask:
What's your GitHub username? I'll use it to look up your reserved room.
If they don't know what GitHub is or don't remember signing in: explain that the reservation form required a GitHub login, so they do have an account. Ask if they remember the email they used — that can help them recover their username at github.com. Once they have it, continue.
Then run:
gh issue list --repo alyssafuward/open-room-open-source --label room --search "their-username"
Find the issue that matches their username — it will contain their room ID (e.g. warm-harbor). Share the direct link to the issue so they can confirm it's theirs, even if they don't remember the room ID. The issue title will show both the room ID and their username.
If no issue is found, they haven't reserved a room yet. Tell them to visit the live site, click + Add Room, fill out the form, and come back — a GitHub issue will be created automatically with their room ID.
If they chose option 3 (report only), collect their description, create a GitHub issue, and let them know it's been filed. No branch needed — stop here.
Run the following to fetch open issues and present them as a numbered list:
gh issue list --state open --json number,title,labels,body --limit 20
Show the issues clearly — number, title, and a brief label or description if available. Ask:
Here are the open issues. Which one would you like to work on?
Once they pick one, note the issue number — do not create a new issue. Skip straight to creating the branch and checking it out.
Ask for a description of what they plan to do:
Give me a quick description of what you're planning. A sentence or two is fine — just enough to capture the intent.
If they're vague (e.g. "make it look cool", "I don't know yet"), help them get specific with a follow-up: ask what image or theme they have in mind, or what they'd want someone to see or feel when they walk into their room. Use their answer to write the issue description yourself — don't make them write it.
Create a GitHub issue with their description as the body, note the issue number, then create the branch.
Create a feature branch: feature/<issue-number>-<short-description> — the issue number must be in the branch name or commits will be blocked.
gh issue create --title "..." --body "..." # options 1 and 2 only
git checkout main && git pull
git checkout -b feature/<issue-number>-<short-description>
For example, if the issue is #15: feature/15-calm-den-room. Confirm the branch is checked out before moving on.
Follow the room setup flow:
room_display_name in the config — it's the human-readable name shown in the UI (e.g. "The Calm Den", "Alyssa's Corner"). It doesn't have to match the registry ID.cp -r public/registry/_template/ public/registry/<room-id>/config.json — fill in room_display_name, owner, background_image, and hotspotsnavigate_floor hotspot (the door back to the floor plan)npm run dev
Then open http://localhost:3000, navigate to their room on the floor plan.
Read the relevant files before touching anything. Key files:
app/page.tsxapp/components/RoomView.tsxapp/components/ReservationModal.tsxsupabase/migrations/.github/workflows/sync-rooms.ymlWork through the change with them. Offer to launch locally when there's something visual to check:
npm run dev
# open http://localhost:3000
Offer to commit at natural stopping points — after a meaningful chunk of work, not after every file.
A commit is a saved snapshot of your changes. Think of it like hitting Save on a document, except it's permanent and tracked — you can always go back to any commit. Each commit has a short message describing what changed.
Want me to save your progress? I'll take a snapshot of your changes with a short description of what you did.
git add <specific files>
git commit -m "Short description
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>"
Also offer to push so their work is backed up on GitHub:
git push -u origin <branch-name>
Before opening a PR, walk them through a quick review. Keep it light and conversational — frame it as a final look, not an audit:
Before we submit, let's do a quick once-over:
If anything looks off, fix it before moving on. Once the PR is merged, the room goes live for everyone.
When they're happy with the changes, offer to open a pull request.
A pull request (PR) is a formal request to add your changes to the main project. It gives the maintainer a chance to review what you've built before it goes live. You'll get a link where you can see all your changes, leave comments, and track the review.
Ready to submit? I'll open a pull request to add your changes to the live project.
gh pr create --title "..." --body "..."
Return the full PR URL (e.g. https://github.com/alyssafuward/open-room-open-source/pull/16) as a clickable link — not just the issue reference. Then walk them through what happens next:
Your PR is open! Here's what happens next:
You're done for now! 🎉