From fe21a18d28c9255f3ce7777600210b1b3752db0e Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Thu, 21 May 2026 22:48:43 -0400 Subject: [PATCH] Add AI assistant onboarding note for contributors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a contributor-only block to CLAUDE.md pointing new contributors at the ponylang LLM skills — how to install them and to load `pony-skills` when working on the project. --- .markdownlintignore | 2 ++ CLAUDE.md | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 CLAUDE.md diff --git a/.markdownlintignore b/.markdownlintignore index bca6033..d694792 100644 --- a/.markdownlintignore +++ b/.markdownlintignore @@ -1,3 +1,5 @@ CHANGELOG.md CODE_OF_CONDUCT.md .release-notes/ +.claude/ +CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..fb51247 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,19 @@ +# glob + + +## Contributing with an AI assistant + +This is a Pony project. The ponylang org maintains a set of LLM coding skills. If your AI assistant isn't set up with them, install them once: + +```bash +git clone https://github.com/ponylang/llm-skills.git +cd llm-skills +python install.py +``` + +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. + +Before opening a pull request, read [CONTRIBUTING.md](CONTRIBUTING.md). +