← Reddit

How to work with Claude as a novice? Hitting limits

Reddit · kwiszat · May 9, 2026
A novice Claude user who switched from ChatGPT is experiencing frequent session limit issues while working on scripting tasks for a niche API, requiring approximately eight prompts per script completion. Despite awareness of token optimization practices like maintaining single conversations, the user sought guidance on reducing token consumption to enable development of more complex projects using Claude agents. The user expressed frustration about hitting limits while attempting to build a personal Pokemon application.

Detailed Analysis

A novice developer transitioning from ChatGPT to Claude's paid tier (approximately 23€/month, corresponding to Claude Pro) is encountering a friction point common among users who rely heavily on AI for iterative coding work: context window exhaustion during complex, multi-turn scripting sessions. The user reports that even relatively contained tasks — writing scripts against a niche application's API — routinely require around eight back-and-forth exchanges before a working solution is achieved, consuming substantial portions of the available context budget per session. Their ambitions extend beyond simple scripting toward agentic workflows and a personal project described as a "vibe-coded" Pokémon application, goals that would demand even more sustained context usage than their current workload.

The core challenge the user faces reflects a structural tension in how large language models handle coding assistance for specialized domains. Niche APIs, by definition, are underrepresented in training data, which means Claude cannot confidently generate correct code on the first attempt without extensive back-and-forth clarification, error correction, and iterative refinement. Each of those exchanges consumes tokens not just for the new prompt and response, but for the cumulative conversation history that the model must re-process with every turn. At eight prompts per script, with full context included in each pass, even modest sessions can approach meaningful fractions of Claude's per-conversation limits. This dynamic is compounded by the user's self-described novice status, which makes it harder to front-load prompts with the precise, structured information that would allow Claude to succeed in fewer iterations.

Practical mitigation strategies for users in this position generally fall into several categories. First, prompt compression — providing Claude with a dense but concise "system context" block at the start of each session covering the API's key endpoints, data structures, and known quirks — can dramatically reduce the number of clarifying exchanges needed, front-loading information rather than eliciting it iteratively. Second, breaking work into modular, isolated tasks rather than attempting to resolve an entire script in one thread prevents any single conversation from ballooning. Third, using Project-level custom instructions (available in Claude Pro) to persist key context about the API and the user's coding environment across sessions helps avoid re-explaining foundational details every time. These techniques collectively shift the token burden toward useful output rather than repeated context re-establishment.

The user's interest in agentic workflows and "vibe coding" — a term referring to the increasingly popular practice of building applications through natural-language-directed AI iteration rather than traditional structured development — points toward a broader trend reshaping how non-expert developers engage with software creation. Tools like Claude are increasingly being positioned not just as coding assistants but as the primary development interface for a new class of builder who lacks formal programming training. However, the context-limit problem the user describes represents a genuine ceiling on this vision in its current form. Agentic tasks, which involve multi-step planning, tool use, and sustained task memory, are inherently more token-intensive than single-turn generation, meaning the same limits that frustrate scripting work become more acute at the agentic layer.

Anthropic has been expanding Claude's context window and refining its efficiency over successive model versions, and the Pro tier does offer meaningfully higher usage allowances than the free tier, but the user's experience illustrates that even paid access is not unlimited for heavy iterative workloads. The gap between user expectations — shaped by the "just talk to it" framing that dominates AI marketing — and the practical token economics of sustained development sessions remains a significant adoption barrier. For users aiming to build non-trivial applications through AI-assisted workflows, developing fluency in context management is becoming as important a skill as any traditional programming concept, representing a new kind of AI literacy that the ecosystem has not yet fully addressed through tooling or documentation.

Read original article →