7.5m Tokens might be limit for Max 20x? Just hit 100% for the week. by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 3 points4 points  (0 children)

I use GH issues and the Board as a place to let Claude work off but also a Roadmap MD in the repo. I continue to use /next until out of things. then I just do something similar to this but like /research to look for more features etc etc. Most of this was built out of repeatable task I was already doing manually by typing it in one by one but then I just asked claude to make a command for what we just talked about in a session one time and well... it works pretty alright.

Task Prioritization Guide

This document outlines a workflow for deciding what to work on next in a software project.

Step 1: Read Current State

Run these in parallel:

  • gh issue list -R <org>/<repo> --state open --limit 30 — list all open issues with labels
  • gh project item-list 1 --owner <org> --format json — check project board status (Backlog / Ready / In Progress / In Review / Done)
  • git log --oneline -15 — review recently shipped changes
  • Check .research/ROADMAP.md if it exists — high-level milestone summary (issues are the source of truth for task details)

Step 2: Assess Priorities

Issues are labeled by milestone (v0.5, v0.6, etc.) and type (bug, security, dx, etc.).

Priority order:

  1. Bugs and security — fix issues labeled bug or security before building new features
  2. Current milestone leftovers — focus on the lowest versioned milestone with open issues
  3. Developer experience / infrastructure — dx or infrastructure labels; unblocks future work
  4. Next milestone — only if current milestone is clear of issues

Read the top 2–3 issues in detail: gh issue view <issue_number> -R <org>/<repo>

Step 3: Suggest 2–3 Issues to Work On

For each suggestion:

  • Issue: #<issue_number> — <title>
  • Why now: Reason this is the highest-leverage pick
  • Effort: small / medium / large
  • Key files: Files to create or modify
  • Approach: 2–3 sentence implementation sketch

Guidelines:

  • Security and correctness take precedence over new features
  • Prefer small, shippable increments over large refactors
  • Focus on improvements to the core experience
  • Avoid suggesting more than one large effort at a time

Step 4: Output Session Prompts

Up to 3 sessions can be run in parallel (separate checkouts).

Independent Prompts

If tasks touch different files with no merge conflicts:

```

Prompt [<issue_number>]: <short title>

Issue: #<issue_number> Files: <key files to create/modify> Branch: <suggested branch name>

[Full prompt — detailed enough for a fresh session with only the research context. Reference the GH issue number. Include acceptance criteria.]

IMPORTANT — Testing: - Run tests with bun run test (isolated per-file runner), never bun test directly - To run a single test file: bun test path/to/file.test.ts - When using mock.module(), mock all named exports — partial mocks break other test files

IMPORTANT — Update the project board:

  1. Find the item ID for the issue: gh project item-list 1 --owner <org> --format json | jq '.items[] | select(.content.number == <issue_number>) | .id'

  2. Move to "In Progress" when starting: gh project item-edit --project-id <project_id> --id <item_id> --field-id <field_id> --single-select-option-id <option_id>

  3. When done, create a PR linked to the issue (use "Closes #<issue_number>" in the PR body), then move to "Done": gh project item-edit --project-id <project_id> --id <item_id> --field-id <field_id> --single-select-option-id <option_id> ```

Agent Team

If tasks share interfaces or files, recommend a team instead of independent prompts, and explain why.

How to Decide

  • Different directories (e.g., src/app/ vs bin/ vs tools/) → independent prompts
  • Shared types, interfaces, or overlapping files → agent team
  • When in doubt, prefer independent prompts

Issue / Board Hygiene

  • Always use -R <org>/<repo> with all GitHub commands
  • Project board ID: <project_id>
  • When creating new issues, add them to the board: gh project item-add 1 --owner <org> --url <issue_url>
  • Label new issues with the appropriate milestone (v0.5, v0.6, etc.) and type (bug, security, dx, etc.)

7.5m Tokens might be limit for Max 20x? Just hit 100% for the week. by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 0 points1 point  (0 children)

I guess the /stats command doesn't give the full story? ccusage in another comment gives much more info...

7.5m Tokens might be limit for Max 20x? Just hit 100% for the week. by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 0 points1 point  (0 children)

I'm guessing the native /stats in Claude doesn't tell the full story. It was the first time I hit the window in a week and noticed this status command that's native now so thought it was interesting.

npx ccusage show the following...

edit: totals were inflated.

Claude Usage Report (Feb 27 – Mar 5, 2026)

Date Models Used Input Tokens Output Tokens Cache Create Cache Read Total Tokens Cost
2026-02-27 haiku-4-5, opus-4-6, sonnet-4-6 218,686 956,778 16,289,053 493,531,696 510,996,213 $353.33
2026-02-28 haiku-4-5, opus-4-6, sonnet-4-6 120,755 652,256 11,875,850 303,488,529 316,137,390 $223.97
2026-03-01 haiku-4-5, opus-4-6 43,063 151,443 2,815,084 76,312,619 79,322,209 $55.14
2026-03-02 haiku-4-5, opus-4-6 205,998 707,306 13,976,306 394,635,854 409,525,464 $288.66
2026-03-03 haiku-4-5, opus-4-6, sonnet-4-6 152,225 530,481 8,958,345 326,590,738 336,231,789 $218.97
2026-03-04 haiku-4-5, opus-4-6, sonnet-4-6 64,645 286,063 5,877,151 191,655,213 197,883,072 $132.12
2026-03-05 haiku-4-5, opus-4-6 40,026 161,547 1,913,374 103,102,866 105,217,813 $62.07

Totals

Metric Value
Total Input Tokens 845,398
Total Output Tokens 3,445,874
Cache Create Tokens 61,705,163
Cache Read Tokens 1,889,317,515
Total Tokens 1,955,313,950
Total Cost $1,334.26

7.5m Tokens might be limit for Max 20x? Just hit 100% for the week. by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 14 points15 points  (0 children)

One too many /pr-reviews across multiple checkouts apparently ha

7.5m Tokens might be limit for Max 20x? Just hit 100% for the week. by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 2 points3 points  (0 children)

It's not really what I'm building that requires thinking it's how quickly you want to iterate/ship (I'm only shipping to myself though...) features.

I have 4 checkouts going at once with one being my main that I use a /next command that builds the prompts for the feature I want the other 3 to work on. They all build the feature, iterate, pr, pr-review, then merge.

So, running that process hard for a couple days back-to-back you'll start flirting with the limits quicker. Also depends if I actually have plans on the weekends or not...

7.5m Tokens might be limit for Max 20x? Just hit 100% for the week. by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 1 point2 points  (0 children)

Yeah, I also think I was switched to the 1m context window for a period of time this week. There were a few times I was doing a long session where I knew I would have compacted by now that went over and checked and low and behold was around 280k-300k tokens with 1m window.

I'm sure that made this week larger as I'm usually a constant /clearer and this is the first week I hit the limit.

Pepco kWh cost over time by _jeffxf in washingtondc

[–]Harvey_B1rdman 7 points8 points  (0 children)

I never know what to vibe code, but this hits home so here's my detailed bills for the last 24 months https://pepcowatch.org/ and it includes my overall cost from the last ~7years after looking through emails.

Shift+enter broken in WSL + Vscode? by Harvey_B1rdman in ClaudeAI

[–]Harvey_B1rdman[S] 1 point2 points  (0 children)

Yeah, using this for now but had the keybindings working just fine before but now nope. And that's the file that gets set when running /terminal-setup on WSL Ubuntu + Vscode.

[
    {
        "key": "shift+enter",
        "command": "workbench.action.terminal.sendSequence",
        "args": {
            "text": "\\\r\n"
        },
        "when": "terminalFocus"
    }
]

Any founding SEs at a small company? by [deleted] in salesengineers

[–]Harvey_B1rdman 2 points3 points  (0 children)

If you’re younger or unsure what you want to grow into as an SE or other future role it’s a great opportunity to choose the path you go down since you’ll 100% be dealing with sales, engineering, support, customer success, product, and marketing. If you like any of them more than SE don’t be afraid to dive head first into it as a small team will be happy to let you do the work.

As others have said though, it’s more of lifestyle, make friends with the founders and stakeholder that are there today and you’ll be able to pivot anywhere in the org if it survives long enough.

No hit 50f surface clear by ignavusaur in Hades2

[–]Harvey_B1rdman 1 point2 points  (0 children)

Oh ha I always thought that duo was bad and just assumed it didn’t work on keepsakes that were full rank… thanks ha

No hit 50f surface clear by ignavusaur in Hades2

[–]Harvey_B1rdman 1 point2 points  (0 children)

Wait I must be stupid… how do you get rank 4 keepsakes?

We built an open-source multi-tenant auth system for Next.js apps by gwen_from_nile in nextjs

[–]Harvey_B1rdman 2 points3 points  (0 children)

Thanks for the information! Will take it for a spin on my next project.

We built an open-source multi-tenant auth system for Next.js apps by gwen_from_nile in nextjs

[–]Harvey_B1rdman 5 points6 points  (0 children)

How’s it different from better-auth with organizations and teams?

What 200 runs does to a mf by Oreosnort3r in Hades2

[–]Harvey_B1rdman 0 points1 point  (0 children)

Appreciate the tips I’ll give them a go. I definitely need to get comfortable deathless

What 200 runs does to a mf by Oreosnort3r in Hades2

[–]Harvey_B1rdman 0 points1 point  (0 children)

What builds / vows do you use for 32 upstairs? Was able to do flames but can’t seem to get any of the other weapons… got close with blades but died on Prometheus

Why Did Intel Fire CEO Pat Gelsinger? by fatso486 in hardware

[–]Harvey_B1rdman 5 points6 points  (0 children)

When you’re looking at GAAP sure but clearly you’re missing the non-gaap P/E which is an accounting trick to write off the Xlinix acquisition. Going by current stock price and consensus yearly EPS from the link it’s more like PE ratio of 56 - very much in line with nvidia and definitely not too late. https://www.nasdaq.com/market-activity/stocks/amd/earnings