best-practices

Tag

Cards List
#best-practices

@svpino: How to build an agent that gets better over time: There are 3 areas an agent can learn from: 1. The model: Only works f…

X AI KOLs Timeline · 5h ago Cached

Santiago Valdarrama shares a framework for building AI agents that improve over time through three learning areas: model refinement, harness optimization, and context accumulation, emphasizing the importance of learning from user corrections.

0 favorites 0 likes
#best-practices

font-family recommendations

Lobsters Hottest · 10h ago Cached

A detailed blog post arguing that no font is truly web-safe, and recommending always including generic families like monospace, serif, or sans-serif in CSS font-family declarations. It criticizes excessive font stacking and advises trusting the system's default font selection.

0 favorites 0 likes
#best-practices

I've killed more agents than I've kept. Sharing the patterns in what dies and why.

Reddit r/AI_Agents · 11h ago

The author shares five patterns that consistently kill AI agents: too many jobs per agent, no human-in-the-loop for destructive actions, unstructured outputs, no spend caps, and lack of uncertainty escalation paths. Practical guardrails and a checklist for reliable agent deployment are provided.

0 favorites 0 likes
#best-practices

How to Write an Effective Software Design Document

Lobsters Hottest · yesterday Cached

A practical guide to writing effective software design documents, outlining key components and best practices drawn from the author's experience at Google and Microsoft.

0 favorites 0 likes
#best-practices

How are Java teams putting guardrails around AI-generated code?

Reddit r/AI_Agents · yesterday

This article explores how Java development teams are establishing guardrails and best practices to manage the quality, security, and reliability of AI-generated code.

0 favorites 0 likes
#best-practices

People who write specs for AI coding agents?

Reddit r/openclaw · yesterday

The article discusses varying approaches to writing specifications for AI coding agents and asks for community input on effective methods.

0 favorites 0 likes
#best-practices

@AiCamila_: Agent Observability with Metrics, Logs, and Traces Best Practices You can’t improve what you can’t see. Agent Observabi…

X AI KOLs Timeline · yesterday Cached

This tweet shares best practices for agent observability, covering metrics, logs, and traces to debug and optimize production AI agents.

0 favorites 0 likes
#best-practices

Your agent and your team should have the same source of truth, but most setups don't

Reddit r/AI_Agents · 2d ago

Highlights the common disconnect between AI agents and human teams sharing the same source of truth, and how most current setups fail to achieve this.

0 favorites 0 likes
#best-practices

@arcane_bloom: The Shift from Software Engineering to Agent Engineering: A 5-Part Breakdown 1/6 Most developers fail when building AI …

X AI KOLs Timeline · 2d ago Cached

A thread explaining the 5 core mental shifts needed to transition from traditional software engineering to agent engineering, emphasizing why conventional patterns like hard-coded routes and binary tests fail with AI agents.

0 favorites 0 likes
#best-practices

AI coding agents need a company-wide AGENTS.md

Reddit r/AI_Agents · 2d ago

The article proposes that organizations adopting AI coding agents should create a company-wide AGENTS.md file, similar to a human onboarding doc, to standardize agent behavior and context.

0 favorites 0 likes
#best-practices

Most AI agents fail because people build them like chatbots

Reddit r/AI_Agents · 2d ago

Many AI agent implementations fail because they treat agents like chatbots, relying on chat history for state rather than using deterministic data structures. The article advocates for separating reasoning (LLM), actions (tools), workflow progress (state machine), and external triggers (webhooks) to build reliable business agents.

0 favorites 0 likes
#best-practices

The annotated PyTorch training loop

Hacker News Top · 3d ago Cached

A detailed guide to building a correct PyTorch training loop, highlighting common mistakes and proper ordering of operations.

0 favorites 0 likes
#best-practices

@sunaiuse: https://x.com/sunaiuse/status/2069077492267098483

X AI KOLs Timeline · 3d ago Cached

This thread explains why AI builders should use loops instead of single prompts, emphasizing proper triggers, verification, and stop conditions to build reliable, cost-effective AI systems.

0 favorites 0 likes
#best-practices

@cwolferesearch: I just published a blog on agentic RL that covers 10+ recent frameworks in the space. Here are the key takeaways… Link …

X AI KOLs Timeline · 3d ago Cached

A blog post summarizing ten recent agentic RL frameworks and best practices, covering modular interfaces, trajectory structure, action masks, process rewards, advantage normalization, scalable rollouts, stability/exploration, and task curriculum.

0 favorites 0 likes
#best-practices

@realchendahuang: Sharing my hard-earned lessons from over a year of indie development. In 2026, the best practice for indie developers building an APP is: Start with a WebPWA for the MVP stage. Fast development, fast debugging, fast iteration. Web tech stack: React TanStack Start Vite TypeScript...

X AI KOLs Timeline · 3d ago Cached

An indie developer shares hard-earned lessons from over a year of experience, recommending building a WebPWA (React tech stack) first during the MVP stage to quickly validate requirements, then using React Native/Expo for the mobile app once users are acquired.

0 favorites 0 likes
#best-practices

@RealCodedAlpha: This 9-step guide on Claude Code Dynamic Workflows really explains it thoroughly! Many people playing with multi-agent just start a swarm, resulting in a bunch of conflicts, low-quality outputs, and merge hell. The author makes the core point clear: structured loo…

X AI KOLs Timeline · 3d ago Cached

This tweet introduces the 9-step guide for Claude Code Dynamic Workflows, emphasizing structured loops and best practices for multi-agent workflows, including manual review, worktree isolation, and automatic rework, pointing out that this is the key to turning agent swarms from toys into productivity.

0 favorites 0 likes
#best-practices

Use AI for reviewing code especially when the diff is huge

Hacker News Top · 3d ago Cached

The article argues that human code reviewers should use AI to handle large diffs, and instead contribute their out-of-distribution knowledge and high-level context.

0 favorites 0 likes
#best-practices

@techNmak: Someone finally documented how to actually use Claude Code. 58K+ stars. claude-code-best-practice. Direct from Boris Ch…

X AI KOLs Timeline · 3d ago Cached

A comprehensive guide with 58K+ stars on best practices for using Claude Code, covering tips from Boris Cherny and community workflows to maximize agentic engineering.

0 favorites 0 likes
#best-practices

@linghucong: https://x.com/linghucong/status/2068860590966321370

X AI KOLs Timeline · 3d ago Cached

This article shares practical experience of using Codex /goal mode for long-term unattended programming, including how to write effective prompts, using persistent project memory to prevent deviation, and key settings and precautions.

0 favorites 0 likes
#best-practices

@realchendahuang: Many people use AI to write Cloudflare projects and fail, not because of syntax. The real problem is: AI often treats Workers as Node.js, uses Binding as process.env, forgets await, abuses global variables to store request state, doesn't know static asset requests are free, and calls its own R2 via REST API from a Worker. I've compiled these pitfalls into the Cloudflare Playbook. I also wrote about how to connect Codex / Claude Code with Cloudflare Skill, MCP, and Wrangler. It's suitable as a manual for AI writing Cloudflare projects.

X AI KOLs Timeline · 3d ago Cached

This Cloudflare playbook is designed for the AI coding era, organizing usage methods, common pitfalls, and AI coding workflows for each Cloudflare module, suitable as a reference guide for AI writing Cloudflare projects.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback