From b57e22af88296aac21bf9daa7e040677b41d0a9b Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Fri, 22 May 2026 08:40:21 -0400 Subject: [PATCH] Make AGENTS.md the canonical agent doc, imported by CLAUDE.md Moves the agent/contributor guidance from CLAUDE.md into AGENTS.md (the cross-tool standard) so non-Claude tools read it directly. CLAUDE.md now imports it via Claude Code's `@AGENTS.md` syntax. AGENTS.md is added to .markdownlintignore alongside CLAUDE.md. --- .markdownlintignore | 1 + AGENTS.md | 23 +++++++++++++++++++++++ CLAUDE.md | 24 +----------------------- 3 files changed, 25 insertions(+), 23 deletions(-) create mode 100644 AGENTS.md diff --git a/.markdownlintignore b/.markdownlintignore index d694792..a54690b 100644 --- a/.markdownlintignore +++ b/.markdownlintignore @@ -3,3 +3,4 @@ CODE_OF_CONDUCT.md .release-notes/ .claude/ CLAUDE.md +AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..1d69bbd --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,23 @@ +# fork_join + + +## Contributing with an AI assistant + +This is a Pony project. The ponylang org maintains a set of LLM coding skills. Get set up with them before contributing: + +- **Not set up yet?** Install them once: + + ```bash + git clone https://github.com/ponylang/llm-skills.git + cd llm-skills + python install.py + ``` + +- **Already set up?** Make sure you're on the latest. If you installed with the script above, `git pull` in the directory where you cloned `llm-skills` and the symlinked skills update automatically — if you set them up another way, refresh them however that setup expects. + +See the [llm-skills README](https://github.com/ponylang/llm-skills) for details and other harnesses. + +When you start working on this project, load the `pony-skills` skill — it tells your assistant which Pony skill to use for each task. + +Read [CONTRIBUTING.md](CONTRIBUTING.md). + diff --git a/CLAUDE.md b/CLAUDE.md index 1d69bbd..43c994c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,23 +1 @@ -# fork_join - - -## Contributing with an AI assistant - -This is a Pony project. The ponylang org maintains a set of LLM coding skills. Get set up with them before contributing: - -- **Not set up yet?** Install them once: - - ```bash - git clone https://github.com/ponylang/llm-skills.git - cd llm-skills - python install.py - ``` - -- **Already set up?** Make sure you're on the latest. If you installed with the script above, `git pull` in the directory where you cloned `llm-skills` and the symlinked skills update automatically — if you set them up another way, refresh them however that setup expects. - -See the [llm-skills README](https://github.com/ponylang/llm-skills) for details and other harnesses. - -When you start working on this project, load the `pony-skills` skill — it tells your assistant which Pony skill to use for each task. - -Read [CONTRIBUTING.md](CONTRIBUTING.md). - +@AGENTS.md