From ef2296d45eca9bf49071551e2cd42defccc94c82 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Fri, 11 Jul 2025 18:33:56 +0300 Subject: [PATCH] docs: add AGENTS usage guidance (#21) --- AGENTS.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..7b246cd --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,12 @@ +# AGENTS + +This repo is a Go CLI that aggregates code files into a single text output. The +main entry point is `main.go` with packages under `config` and `fileproc`. +Tests exist for each package, and CI workflows live in `.github/workflows`. + +## Contributions +- Look for additional `AGENTS.md` files under `.github` first. +- Use Semantic Commit messages and PR titles. +- Run `go test ./...` and linting for code changes. Docs-only changes skip this. +- Use Yarn if installing Node packages. +- Follow `.editorconfig` and formatting via pre-commit.