Skip to main content
1

Install the CLI

Run the installer script:
curl -fsSL https://get.promptster.ai | sh
If you prefer to install without the script, use npm directly:
npm install -g @promptster/cli
Either method installs the promptster command globally on your machine.
2

Start your assessment

Run promptster start with the assessment key from your email:
promptster start PST-XXXX-XXXX
Your key is in PST-XXXX-XXXX format and was sent to you by the hiring team. Replace PST-XXXX-XXXX with your actual key.The CLI validates your key against the Promptster API and displays your assessment details — organization, title, and time limit — before continuing.
3

Review and accept the data capture notice

Before your session begins, the CLI shows you exactly what will and will not be recorded. Read it, then type yes to continue.What IS captured:
WhatExample
Prompts you submit”Refactor this function to use async/await”
Tool calls made by the AIFile edits, shell commands, web searches
Files the AI creates or editsUnified diffs of every change
Shell commands run by the AICommand text and exit code
What is NOT captured:
  • Keystrokes between prompts
  • File contents you never ask the AI to touch
  • Environment variables and secrets
  • Browser activity
  • Clipboard contents
Data is retained for 90 days. For deletion requests, contact privacy@promptster.ai.
4

Work on your task

Open your AI coding tool and start working. Claude Code and Cursor are auto-configured when promptster start runs — hooks are written at the project level, so capture begins automatically when you open the workspace.The task brief is also saved as TASK.md in your workspace for easy reference.Documenting decisions: When you make a significant architecture or tradeoff choice, run:
promptster explain
This opens an interactive prompt where you describe your reasoning. Reviewers read these explanations alongside the code changes — it is one of the most valuable parts of your submission. You can also review the current task and time remaining at any time:
promptster brief
5

Submit when done

When you have finished the task, run:
promptster done
This flushes any buffered events to the server and marks your session complete. If you have any pending decision explanations that you started but did not finish, the CLI will prompt you to complete them before submitting.Once submitted, your session is available for the hiring team to review.