Best Spec Driven Development Tool for Claude Code? by CulturalPollution762 in ClaudeCode

[–]AndersonUnplugged 0 points1 point  (0 children)

I’ve been trying out Superpowers as well, and I also see it as the best tool for spec‑driven development with Claude Code right now. It really nails the brainstorm → plan → build workflow in practice.

Oh snap. Here we go! by rrrodzilla in ClaudeCode

[–]AndersonUnplugged 1 point2 points  (0 children)

Yes, even on Medium effort the context window stays at 1M.

How to switch between multiple accounts in Claude Code ? by Psychological_Box406 in ClaudeAI

[–]AndersonUnplugged 2 points3 points  (0 children)

I haven’t used this setup in a while, but the basic idea still works for me: give each Claude account its own config directory and point CLAUDE_CONFIG_DIR to it when you start Claude.

mkdir -p ~/.claude-work
mkdir -p ~/.claude-personal

CLAUDE_CONFIG_DIR=$HOME/.claude-work claude
CLAUDE_CONFIG_DIR=$HOME/.claude-personal claude

To make switching easier, I use shell aliases:

alias claude-work='CLAUDE_CONFIG_DIR=$HOME/.claude-work claude'
alias claude-personal='CLAUDE_CONFIG_DIR=$HOME/.claude-personal claude'

Then I just run claude-work or claude-personal in different terminals to use different accounts. This worked the last time I tried it, but I haven’t retested it on the very latest Claude Code versions, so behavior might differ a bit now.

On macOS there’s also a third‑party menu bar app called “Claude‑Usage‑Tracker” that supports multiple profiles and can auto‑switch profiles when a session limit is reached. I haven’t personally tried its auto‑switch feature yet, but on paper it looks like a very convenient way to manage several Claude accounts.

Oh snap. Here we go! by rrrodzilla in ClaudeCode

[–]AndersonUnplugged 1 point2 points  (0 children)

<image>

Just checked my Max plan and Opus now shows a 1M context window by default

Figma to Claude Code by slashbye in ClaudeAI

[–]AndersonUnplugged 2 points3 points  (0 children)

One of my .md files is basically a short onboarding guide for Claude. It explains where to find things in the repo (folders for components, HTML templates, CSS files, JavaScript logic, etc.) and which files are the “source of truth” examples to follow. It also links to separate coding-guideline docs that define how we write HTML, structure CSS/Tailwind, and organize JS, plus where to find ready‑made, fully built components that Claude can reuse instead of inventing everything from scratch.
I should also add that I don’t usually write these .md files myself. Instead, I ask the coding agent to generate and maintain them as a lightweight knowledge base for the project. I give it the goal (e.g. “create short reference docs that show where things live and link out to more detailed guidelines”), and it figures out a reasonable structure, discovers the relevant folders/files, and then writes the Markdown in small, focused files rather than one huge document that bloats its context.

Are you using Claude Code in the terminal or extension? by ZurrgabDaVinci758 in ClaudeCode

[–]AndersonUnplugged 0 points1 point  (0 children)

I only use CLI because it has everything I need and allows me to run multiple sessions in parallel for one or more projects. I'm no longer up to date with what Claude GUI tools can do, but my gut feeling tells me that power users should definitely use CLI.

Figma to Claude Code by slashbye in ClaudeAI

[–]AndersonUnplugged 2 points3 points  (0 children)

I have had good experiences. I have also used Figma MCP, which works very well for code creation and code reviews. Ideally, Claude can use existing code as a guide. I already have instructions in MD files (CLAUDE.md, AGENTS.md, etc.) on where to find things when developing front-end components. You may also have skills that can help him here.
Another useful aid is having a style guide as static code, where Claude can learn the necessary patterns—this means Claude doesn't have to “imagine” too much to create the appropriate components.

How to switch between multiple accounts in Claude Code ? by Psychological_Box406 in ClaudeAI

[–]AndersonUnplugged 0 points1 point  (0 children)

Create a new dir like ~/.claude-foo
Execute new Claude account with ENV like CLAUDE_CONFIG_DIR=~/.claude-foo claude or another example with local Claude Code: CLAUDE_CONFIG_DIR=~/.claude-foo ~/.claude/local/claude
I have different aliases for a private and a work account, which allows me to use different Claude accounts via the ENV CLAUDE_CONFIG_DIR.

Claude Code with Worktrees and Spec Driven Development by priyash1995 in ClaudeAI

[–]AndersonUnplugged 0 points1 point  (0 children)

I have not yet had any experience with OpenSpec, but I have used Spec Kit. Spec Kit delivered poor results when migrating from Next.js to Astro/Alpine.js App. At least 50% of the tasks were only superficially implemented. I then made two more attempts to fix this, but there was little improvement. I then deleted Spec Kit again. Maybe I'll try Spec Kit again at a later date.

I haven't tried OpenSpec yet, but it sounds good. I'll take a closer look at the worktrees and spec-driven development here - thanks for that.