denissergeevitch/agents-best-practices — explained in plain English
Analysis updated 2026-05-18
Generate a minimal, production safe blueprint for a new AI agent in a specific domain.
Audit an existing agent that loses context or runs tools in an endless loop.
Design narrow, permission checked tools so an agent cannot take unsafe actions on real systems.
| denissergeevitch/agents-best-practices | anthropics/launch-your-agent | pyenv/pyenv-virtualenvwrapper | |
|---|---|---|---|
| Stars | 678 | 678 | 678 |
| Language | — | HTML | Shell |
| Last pushed | — | 2026-07-02 | 2017-08-20 |
| Maintenance | — | Active | Dormant |
| Setup difficulty | easy | moderate | easy |
| Complexity | 2/5 | 3/5 | 2/5 |
| Audience | developer | pm founder | developer |
Figures from each repo's GitHub metadata at analysis time.
Installs with a single command via the skills CLI or by cloning into the agent's skills folder.
Agents Best Practices is an Agent Skill, a document plus reference files that AI coding assistants like Codex and Claude Code can load, that teaches how to design safe and reliable agent systems. It is not tied to one AI provider and applies beyond coding assistants, covering agents for research, customer support, operations, sales, finance, data analysis, procurement, legal work, healthcare, and education. The core idea is that an AI model should only propose actions, while a separate runtime checks, authorizes, executes, records, and returns the results of those actions. The skill teaches you how to build that runtime: a typed loop where the model calls a tool, the tool call is validated and permission checked, then either executed or paused for human approval, with every step producing a structured observation the model can read back. Once installed, the skill activates automatically whenever a conversation touches agent architecture, tool permissions, planning mode, memory and context compaction, connectors, observability, evaluation, prompt caching, or getting an agent ready for production. It can generate a minimal but production safe blueprint for a new agent, audit an existing agent that behaves unpredictably or loses track of its state, or help design tools and permission boundaries so an agent does not get overly broad access to systems like Slack, Linear, or an internal deploy API. The project is organized as a main skill file plus a set of reference documents covering topics such as the agent loop, context and memory compaction, tool and permission design, skills and connector governance, prompt caching and cost, provider specific API patterns, and pre launch checklists. You install it either with the skills command line tool, by asking your AI agent to clone it into its skills folder, or by cloning it manually into the correct directory for Codex or Claude Code. The project is released under the MIT license.
An installable Agent Skill that teaches AI coding assistants how to design safe, reliable agent systems with proper permissions and approvals.
MIT license, so you can use, modify, and redistribute it freely, including commercially, as long as you keep the copyright notice.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.