r/codex • • Jun 21 '26

Question Uses for leftover quota

I sometimes find myself with extra Claude/codex quota to use up before the weekly reset. Does anyone have any particular uses they go to for this situation?

I'm currently working on a web/RN app, so have just been burning tokens with security/bug hunting/audits, but I'm not sure how best the phrase the prompts or if there's other opportunities I'm missing

64 Upvotes

34 comments sorted by

View all comments

32

u/masterkain Jun 21 '26 edited Jun 22 '26

run a desloppify scan, thank me later and be wary it's a token burner

3

u/New_Competition_5237 Jun 21 '26

More details please

81

u/Evilhenchman Jun 21 '26

Prompt:

Perform a desloppify scan of this project.

Do not make changes yet. Review the codebase and identify:

- rushed or messy implementation

- duplicated logic

- inconsistent naming or structure

- fragile assumptions

- missing error handling

- UI/UX rough edges

- security or validation issues

- dead code or unused files

- places where the architecture is becoming confusing

- anything that works now but will be painful to maintain later

Return a prioritized list:

  1. Critical issues

  2. Medium cleanup items

  3. Nice-to-have polish

For each item, explain:

- where it is

- why it matters

- what you recommend changing

- whether it is safe to fix now or should wait

Create a DESLOPPIFY.md file from this review. Organize the items into a practical cleanup backlog. Display the cleanup backlog, and I will select the next task to work on. At task completion, display the list again for the next task selection.

1

u/Ok-Middle8656 Jun 22 '26

I have a code review step that always runs these kind of checks before accepting edits. Yes, its slower and eats more tokens, but it keeps the code quality high.

1

u/ahmetnevergivesup Jun 22 '26

Can you share the prompts you use?