Resources for llm coding agents
  • JavaScript 98.8%
  • TypeScript 1.2%
Find a file
2026-06-18 11:18:19 -06:00
commands fix: remove model from prime skill 2026-05-30 09:53:08 -06:00
mcp feat: add an mcp-cli config and README for using it 2026-05-16 07:45:41 -06:00
plugins chore: update env-ineject plugin 2026-06-11 09:54:39 -06:00
skills feat: add a deepwiki-cli skill 2026-06-18 11:18:19 -06:00
.gitignore feat: check in AGENTS.md file 2026-01-12 14:14:40 -07:00
AGENTS.md chore: tweak agents package text and prime skill text 2026-05-29 16:06:19 -06:00
README.md docs: add a readme with a quick descripion of using AGENTS.md 2026-03-09 15:42:24 -06:00

Project AGENTS Template

This is the AGENTS file I use to bootstrap new projects. It defines the workflow and conventions for working with LLMs on software engineering tasks. It only explains how I want it to keep track of the work, it is not prescriptive about any technologies, so it should be usable anywhere.

Workflow

  1. Plan Mode - Start by discussing what you want to build with the LLM
  2. Flesh Out - Iterate on the idea, clarify requirements
  3. Generate - Have the LLM generate /docs and /memory-bank based on the agreed plan

Key Files

  • AGENTS.md - This file. Contains the core workflow and conventions.
  • /docs/ - Permanent documentation layer (PRD, Architecture, API, Schema, Discoveries)
  • /memory-bank/ - Operational state for the AI agent (projectBrief, productContext, activeContext, systemPatterns, progress)