#productivity
9 tips tagged #productivity.
- from x.com#dev#productivity
2-min security sweep before you ship any vibe-coded app
Before pushing a Claude-built app to prod, paste this into Claude Code: "Act as a security auditor. Walk the whole codebase for OWASP top-10 issues — exposed API keys, SQL injection, XSS, missing auth, unchecked inputs, leaking error traces. Return a punch list: severity / file / fix." 2 minutes, catches the dumb stuff (which is almost always what gets you). From @hackSultan. Not a pen-test — the pre-flight check.
2026-04-24read → - from Loya#dev#productivity
Custom /statusline in Claude Code = always see token health
Run `/statusline` in Claude Code and paste a one-line config like: git branch + uncommitted file count + context token percent. Now every keystroke you see exactly how close you are to a context crash and what's dirty in git. 2 minutes to set up, permanent across sessions. Stops 'why did I lose context' surprises dead in their tracks.
2026-04-24read → - from Loya#dev#productivity
Install any Claude Code skill with `/plugin marketplace add user/repo`
To install any public Claude Code skill, don't clone repos + copy files into ~/.claude/skills/ by hand. Just run `/plugin marketplace add <user>/<repo>` inside Claude Code — it pulls, installs, and activates the skill in one command. Works with any public GitHub repo that ships a valid SKILL.md. Auto-updates on next install. Replaces the old download-copy-restart dance entirely.
2026-04-24read → - from Loya#dev#design#productivity
One line to kill every spinner in Claude's UIs
When Claude Code builds a page that fetches data, add this line to your prompt: "Every loading state must be a skeleton pulse matching the final layout dimensions exactly — no spinners." Claude stops shipping blank screens and spinners and starts building real skeleton loaders. Perceived load time drops roughly 40-50%. Works across React, Next, Vue, Svelte. Free, takes 10 seconds to add.
2026-04-24read → - from Loya#dev#productivity
rettiwt 7.0.0 silently returns empty — one-line patch fixes it
If you upgrade rettiwt (X scraping lib) to 7.0.0 and every feed / search / timeline call returns empty with no error, it's a null-access crash in node_modules/rettiwt-api/dist/models/User.js around line 49. One-line patch: change `pinned_tweet_ids_str[0]` to `pinned_tweet_ids_str?.[0]`. Saves ~3 hours of 'why is my scraper returning nothing.' Re-apply after every upgrade.
2026-04-24read → - from github.com#dev#productivity
Run /ultrareview before any critical merge
Before shipping anything load-bearing, run `/ultrareview` in Claude Code. It's slower and more thorough than `/review` — designed for the pre-merge moment specifically. Catches the kind of subtle bugs a careful human reviewer would (bad edge cases, missing null checks, silent state leaks). Takes about 30s more than a regular review. Pays for itself the first time it catches something that would've shipped.
2026-04-24read → - curated for Escape 9 to 5#dev#productivity
Sanitize PII before it hits your LLM — 5-line wrapper
Any app where users type free-text that gets forwarded to an LLM is leaking personal data into your provider's logs (and sometimes their training sets). Fix: run inputs through a PII sanitizer (OpenAI's privacy filter, Microsoft Presidio, or guardrails-ai) BEFORE the LLM call. Replace names / emails / phones / addresses with tokens, restore after. 5-line wrapper, major compliance win.
2026-04-24read → - from deepwiki.com#dev#productivity
Swap github.com → deepwiki.com for instant docs
Any GitHub repo URL works on deepwiki.com with the same path. Change github.com/owner/repo to deepwiki.com/owner/repo and you get a full auto-generated documentation site for that codebase — methods, architecture, and file tree, all searchable. Ten seconds to understand any repo you're thinking about installing.
2026-04-24read → - from github.com#design#dev#productivity
The 3-skill chain that makes AI UI stop looking AI-built
Install ui-ux-pro-max-skill AND make-interfaces-feel-better via the Claude Code plugin marketplace. After every UI pass, run them in order: /ui-ux-pro-max → /make-interfaces-feel-better → /simplify. They catch what Claude misses — inconsistent spacing, weird hover states, color clashes, missing loading states — and leave the interface feeling paid-for. Free, runs in 60 seconds, works after any design change.
2026-04-24read →