-
|
I'm using Copilot in VSCode. There's basically nothing to complain, because my flow is highly mannual, and even though AI writes 95% of code, I'm still fullly invested in every line it writes. It's working great but I want to keep track of new approaches, as this one stuck for me from day 1 as the only reliable way of coding with AI. Before I try GSD I'd like to understand the downsides, like effect on token consumption. Can you guys share your estimations? I did find similar topic, but there's only 'high consumption' and 'it should help' kind of estimations, which is not the answer I'm looking for. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
|
GSD does consume more tokens than raw Claude Code, but with measurable structure benefits. Rough estimate: 10–25% more tokens per session compared to unstructured prompting, primarily from:
What you get in return: The structured approach typically reduces total session count — you spend fewer total tokens on rework, backtracking, and context re-establishment across sessions. RTK (Rust Token Killer) is a companion CLI that compresses command output before it hits Claude's context window, which users report as saving 60–90% on tool result tokens. For Copilot/VSCode: GSD works in any Claude Code environment. Token handling differs slightly — Claude.ai/Copilot both have context limits but the monitoring hooks work the same. Your manual review approach already sounds disciplined, so the overhead is mostly the planning artifacts which pay back in fewer corrections. |
Beta Was this translation helpful? Give feedback.
-
|
well, I'm not so sure it's worth it with current obscene weekly limits. I have tried integrating GSD into my project, mapped codebase and everything, planned couple of tasks and then started executing. ended up burning through 40% of weekly limit in couple of sessions with this, and end result - half-done job on one task and complete mess up on second more important one. like, no research was done at all on how to implement it, no question asked either, it just seemed like it faked doing any job at all on this, with long-winded borderline bureaucracy stuff that didn't seem to do anything of use in the end. so far I'm quite disappointed. |
Beta Was this translation helpful? Give feedback.
GSD does consume more tokens than raw Claude Code, but with measurable structure benefits.
Rough estimate: 10–25% more tokens per session compared to unstructured prompting, primarily from:
What you get in return: The structured approach typically reduces total session count — you spend fewer total tokens on rework, backtracking, and context re-establishment across sessions. RTK (Rust Token Killer) is a companion CLI that compresses command output before it hits Claude's context window, which users report as saving 60–90% on tool result tokens.
For Co…