explaingit

anode1/agent-recipes

Analysis updated 2026-05-18

0Audience · developerComplexity · 1/5Setup · easy

TLDR

A written guide of short practical recipes and best practices for driving AI coding agents effectively.

Mindmap

mindmap
  root((agent-recipes))
    What it does
      Coding agent tips
      Recipe format
      Say and Do guidance
    Themes
      Testing agent output
      Files as memory
      Fresh sessions
    House style
      Plain code
      Thin backends
      Restricted C style
    Audience
      Developers using AI agents
      Agent workflow designers

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Learn concrete phrasing to tell a coding agent so it tests its own work automatically.

USE CASE 2

Adopt a pattern for storing project memory in files so agent sessions can restart cleanly.

USE CASE 3

Pick up house-style advice on writing plain, framework-light code that is easier for an agent to verify.

What is it built with?

MarkdownCJavaSQL

How does it compare?

anode1/agent-recipes00kaku/gallery-slider-block04amanrajj/netwatch
Stars00
LanguageJavaScriptRust
Last pushed2021-05-19
MaintenanceDormant
Setup difficultyeasyeasymoderate
Complexity1/52/53/5
Audiencedevelopergeneralops devops

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · easy Time to first run · 5min
No license information was found in the description provided.

In plain English

This repository is a collection of practical tips for working with AI coding agents, written as short recipes rather than a piece of software you install. Each recipe has a one line instruction you either say to the agent or a practice you follow yourself, followed by a short paragraph explaining the reasoning behind it. The core idea running through the recipes is that an agent only truly knows what is written down in the project's files. Whatever lives only in your head or in a chat conversation disappears the moment that session ends, so the author argues you should keep goals, state, and checks inside the files themselves rather than relying on memory. One major theme is testing. The author recommends giving every feature, including visual interface work, an automated test the agent can run and check on its own, without a person watching. For web pages this means using a headless browser to take screenshots and compare them programmatically, and for other kinds of software it means a normal automated test suite. Two small companion tools the author built, one for taking those screenshots and one for message passing between multiple agents, are linked as examples. Another recurring piece of advice is to start a new conversation with the agent once the current one gets long, rather than trying to keep working in an overloaded conversation history, and instead to store important facts in a small searchable memory tool so they can be looked up again cheaply later instead of being explained from scratch every time. The later sections lean more personal, describing the author's own preferences, such as writing plain code without heavy frameworks so an AI agent has less to understand and fewer ways to get things wrong, keeping web backends simple by returning results straight from a database query, and writing C code in a careful, restricted style similar to standards used in safety critical industries like aviation and medical devices. There is no programming language listed for the project itself, since it is really a written guide plus a handful of small example files and companion tool links rather than an application.

Copy-paste prompts

Prompt 1
Summarize the testing recipe from agent-recipes and help me set up a screenshot harness for my web UI.
Prompt 2
Explain the recall don't re-derive recipe and how I could apply it to my own agent workflow.
Prompt 3
Based on the plain code no frameworks recipe, review my code for unnecessary abstractions.
Prompt 4
Help me write a SKILL.md file inspired by the ais.SKILL.md example in agent-recipes.

Frequently asked questions

What is agent-recipes?

A written guide of short practical recipes and best practices for driving AI coding agents effectively.

What license does agent-recipes use?

No license information was found in the description provided.

How hard is agent-recipes to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is agent-recipes for?

Mainly developer.

Open on GitHub → Explain another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.