How agents gather, compress, structure, and use context.
Two new guides map how Claude Code teams are using `.claude/`, `CLAUDE.md`, commands, agents, skills, and global rules. The overlap matters because commenters favor short instructions and a small number of repeatable guardrails over larger prompt stacks.
ChatGPT now saves uploaded and generated files into an account-level Library that can be reused across conversations from the web sidebar or recent-files picker. It removes repetitive re-uploading and makes past PDFs, spreadsheets, and images part of a persistent working context.
Nous Research said Hermes Agent crossed 10,000 stars, while users reported easy migrations from OpenClaw and stable long-running use. If you test it, focus on persistent memory, MCP browser control, and delegation behavior under real workloads.
Agent Flywheel lays out a planning-first workflow built on beads, agent mail, swarms, and TUI inspection for very large coding runs. It is useful because the guide exposes coordination primitives and review loops, not just benchmark screenshots.
Anthropic rolled Projects into Cowork on the Claude desktop app, giving each project its own local folder, persistent instructions, and import paths from existing work. It makes Cowork more practical for ongoing tasks, though teams should test current folder-location limits.
Next.js 16.2 adds version-matched AGENTS.md docs, a terminal browser for inspecting running apps, browser-error forwarding, and a dev-server lock file. It gives coding agents better frontend context and cuts duplicate-server and client-side debugging waste.
LlamaIndex open-sourced LiteParse, a model-free local parser for 50+ document types that preserves layout well enough for agent workflows. Use it as a fast first pass before expensive OCR or VLM parsing, especially when you need table structure and local execution.
Google rolled out a redesigned Stitch workspace that accepts text, code, PRDs, and images on a spatial canvas, then generates prototypes and portable DESIGN.md files. Teams testing AI-native UI workflows can use it to try a tighter design-to-code loop in the live product.
Morph released FlashCompact, a specialized compaction model and SDK for coding agents, claiming 33k tokens per second and near-invisible long-context compression. Use it or copy the approach if compaction latency and noisy tool output are blocking longer agent runs.
Geoffrey Huntley published a four-loop Ralph workflow for porting codebases by turning tests and source into cited specs before implementation. Try it when you need AI help translating a mature codebase across languages without losing behavioral coverage.
ACE open-sourced ace-platform so teams can self-host its playbook-based context engineering workflow instead of relying only on the hosted service. Use it if you want MCP-compatible prompting infrastructure with your own Postgres, Redis, and deployment controls.
supermemory launched a CLI that exposes platform actions directly to agents and added scoped agent access with tag-level permissions plus audit logs. Use it to wire memory into agent loops without granting a full account.
Keep added an in-app feed reader so saved links can be read directly inside its bookmark store for agent workflows. Use it to turn bookmarks, RSS feeds, and markdown exports into reusable context instead of scattered tabs.
Anthropic made 1M-token context generally available for Opus 4.6 and Sonnet 4.6, removed the long-context premium, and raised media limits to 600 images or PDF pages. Use it for retrieval-heavy and codebase-scale workflows that previously needed beta headers or special long-context pricing.
Claude Code added /btw, a side-channel prompt that can inspect the current session without interrupting the main task. Use it to ask clarifying questions mid-run without polluting history or triggering extra tool work.
OpenAI detailed how repo-local skills, AGENTS.md, and GitHub Actions now drive repeatable verification, release, and pull request workflows across its Agents SDK repositories. Maintainers can copy the pattern to reduce prompt sprawl and keep agent behavior closer to the codebase.