feat: install-skills creates CLAUDE.md for AI discoverability#573
Closed
Kovbo wants to merge 7 commits intoOpenPipe:mainfrom
Closed
feat: install-skills creates CLAUDE.md for AI discoverability#573Kovbo wants to merge 7 commits intoOpenPipe:mainfrom
Kovbo wants to merge 7 commits intoOpenPipe:mainfrom
Conversation
After copying skill files, `art install-skills` now also creates or updates a CLAUDE.md at the project root with an ART skills section. This lets AI coding assistants (Claude Code, etc.) automatically discover `/train-sft` and `/train-rl` skills when entering a project. The update is idempotent—re-running the command won't duplicate content, and existing CLAUDE.md content is preserved. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
When AI coding assistants read the package source to understand the API, the module docstring now points them to `art install-skills` and the `/train-sft` / `/train-rl` slash commands. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…erability" This reverts commit e41bdc1.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Tell AI assistants explicitly NOT to scan source code or suggest CLI commands, and instead install and use the skills. The previous wording was too passive — assistants would find the CLI wizard and recommend that instead of using the skills workflow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The previous wording led agents to search for skills in site-packages instead of running the install command. Now the docstring shows the exact shell command (uv run art install-skills), explains where the files end up, and explicitly says not to search site-packages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
art/__init__.pythat points AI coding assistants toart install-skillsand the/train-sft//train-rlslash commandsWhy this matters
When an AI coding assistant enters a project with
openpipe-artinstalled and a user asks for help with training, the assistant typically readsart/__init__.pyto understand the API. Without any hint, it falls back to scanning the source code and piecing together usage from internal implementation details — missing the curated, step-by-step skill workflows entirely. The docstring bridges this gap by surfacing the right entry point early.Test plan
art/__init__.pydocstring renders correctly viapython -c "import art; help(art)"🤖 Generated with Claude Code