You need 100xprompt installed and a project you can safely experiment in. A git repository is ideal, so you can review and roll back changes. If you don’t have it installed yet, start with the installation page.
Understand the first-run rhythm
Every task follows the same rhythm. 100xprompt plans what it’s going to do, edits files and runs commands to make it happen, then verifies the result - pausing for your approval whenever it wants to touch something that matters.Ship your first change
Suppose you want to add a small feature to a project and see the full loop end to end. Follow these steps.Launch 100xprompt in your project
Open a terminal, move into the project you want to work on, and start 100xprompt:The terminal interface opens with your project in context. You can also point it at a directory explicitly:
Sign in to 100xprompt
Sign in to 100xprompt before your first task:Select 100xprompt and paste the API key from your 100xprompt.com account. Once you see a success message, your credential is saved and you’re ready to work.100xprompt gives you two models - pick whichever fits the task:
Inside the terminal interface, switch between Flash and Pro at any point with the
| Model | Best for |
|---|---|
| Flash | Fast, lightweight, everyday steps |
| Pro | Deep reasoning, large refactors, and hard problems |
/models command, and dial in reasoning effort with the variant option.Send your first task
Type a task in plain language and send it. Be specific about the outcome you want:100xprompt reads the relevant parts of your codebase, shares a short plan, and starts working. You watch it move through the phases in real time:
- Plan - it explains what it intends to change before touching anything.
- Edit - it opens files and applies focused edits.
- Verify - it runs the checks that prove the change works: building, running tests, or executing the command.
Approve or deny actions
Whenever 100xprompt wants to do something consequential - edit a file, run a command, or reach outside the project - it pauses and asks. You see a prompt with three choices:
You stay in control the whole way through. Approving something like running the test suite is safe and expected. If a request looks off, reject it - 100xprompt explains or takes a different route.
| Choice | What it does |
|---|---|
| Allow once | Permit this single action and continue |
| Allow always | Permit this action and similar ones for the rest of the session |
| Reject | Decline the action; 100xprompt adapts and continues |
Review the change
When the task finishes, 100xprompt summarizes what it changed and why. Confirm the result the same way you’d review any teammate’s work:If you want adjustments, say so in the same session - “rename the flag to
--ver and update the tests.” 100xprompt continues from where it left off, keeping full context of what it already did.Try a one-shot headless run
The same agent runs without the interactive interface - useful for scripts, pipelines, and quick one-liners. Pass your task straight to the A few flags make it script-friendly:
Pipe input in for even tighter automation:
run command:| Flag | Purpose |
|---|---|
-m, --model <provider/model> | Choose the model for this run |
-c, --continue | Continue the most recent session |
-s, --session <id> | Continue a specific session |
--agent <name> | Run with a specific agent |
-f, --file <path> | Attach one or more files to the task |
--format json | Emit structured JSON events instead of formatted output |
What you just did
In one session you launched 100xprompt, connected a model, described a task, guided it through approvals, reviewed the result, and ran the same agent from a script. Everything from here is a variation on that loop - bigger tasks, more tools, and more of the work handled for you.If your change built and its checks passed, you’re ready to move on. If something didn’t land the way you wanted, continue the conversation. Refining in place is the intended workflow, not a workaround.
Next steps
How It Works
The mental model behind plan, edit, and verify - and how 100xprompt keeps context across a session.
Capabilities Overview
The full range of what 100xprompt can do, from multi-file edits to running your tools.
Terminal Interface
Get fluent with the terminal experience, its slash commands, and everyday shortcuts.