Launch the Hamster CLI directly from a brief page so your terminal starts in the right context immediately.
When you want to work on a specific brief from the command line, you do not need to set up context manually. Each brief in Hamster has an option to open it in the CLI, which generates a setup command that includes the brief ID. Running that command authenticates you (if needed) and points the CLI at that brief in one step. This is the fastest way to go from reviewing a brief in the browser to executing tasks in your terminal or AI coding tool.
Briefs are created in the Hamster web app. The CLI connects to an existing brief and lets you manage tasks against it — it does not create briefs itself.
Open the brief in Hamster — Navigate to the brief you want to work on. You can find it in the Briefs section of the sidebar or by following a link from a task.
Copy the CLI command — Find the "Open in CLI" option on the brief page. It produces a curl command that includes the brief ID as a query parameter:
curl -s "https://tryhamster.com/cli?brief=<brief-id>" | bash
Run the command — Paste it into your terminal. The script installs task-master if it is not already present, authenticates you if you are not already signed in, and sets the brief as the active context.
Start working — Once the script completes, the CLI prints your task list for that brief and confirms it is ready. From here, run tm list to see tasks, tm next to get the next recommended task, or ask your AI coding assistant to begin work based on the current context.
Briefs are created in the Hamster web app, not from the CLI. To create a new brief:
For full details on writing and editing briefs, see Creating Briefs.
task-master context brief to switch between them without running the full setup command again.tm next after connecting to a brief to see which task the CLI recommends starting with, based on priority and dependencies.task-master rules --setup after connecting to a brief to sync those rules to your current editor.