We set out to make Amp Tab better than Cursor Tab and usable in VS Code or any fork thereof.
It’s also free (too cheap to meter).
If you’re using VS Code, try it. If you’re using Cursor/Windsurf with Amp/CC/Codex, you might be able to ditch the fork and monthly sub.
Watch this 4 min video to learn how to
1. Create a custom slash command called 'ship'
2. Use the /ship command to *reliably* deploy to prod (error free) with an agent
Also, Build Crewers, unite!
If you want to join the tribe, it's free: https://t.co/4goqUOgxlq
We flipped the switch: Amp Tab is now on by default for new installs.
It’s our free completion engine for manual edits in VS Code. It’s fast, knows your recent changes and compiler errors, and suggests cross-file updates when needed.
Already on Amp? Run `Enable Amp Tab` from cmd/ctrl+shift+p.
Tip #2 for coding better with agents from Amp Core Dev @camden_cheek
Create a custom slash command that uses ripgrep to find TODOS and implement them.
The beauty is that the context is already right there in the file and you have a helpful comment that tells the agent what to do.
```markdown
# Ampdo Command
**Instructions:** Search for AMPDO: comments in the codebase to gather feedback and instructions about code changes.
## Search Process
Use ripgrep to find AMPDO: comments with context:
```bash
rg "AMPDO:" -C 3
```
## Review Process
- Read each AMPDO comment and surrounding code context
- Take appropriate action based on the feedback: implement requested changes, address issues, or follow instructions
- Present findings organized by file and comment type
- Execute any action items or specific change requests
## Output Format
- Group by file path
- Show line numbers and full context for each AMPDO comment
- Summarize key themes and action items at the end
## Expected Actions
After finding AMPDO: comments, the agent should:
1. Analyze the feedback or instructions in each comment
2. Implement any requested code changes
3. Address any issues or concerns raised
4. Remove or update AMPDO: comments once addressed
5. Provide a summary of all actions taken
```
Tip #3 for getting better at prompting agents for coding …
Amp core dev @nicolaygerold uses @obsdmd when he needs to take his time and write very detailed prompts.
Forces him to make sure he’s super clear with the agent on the task.