-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Add ai-ready skill (wrapper) #1551
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+36
−0
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
dc9688a
Add ai-ready skill (wrapper)
johnpapa a5e3bb1
fix: use numbered steps to satisfy skill validator
johnpapa 3ea18d4
Merge remote-tracking branch 'upstream/staged' into add-ai-ready-skill
johnpapa e80e978
fix: address Copilot review feedback
johnpapa 0c57a2c
Merge remote-tracking branch 'upstream/staged' into add-ai-ready-skill
johnpapa 847a420
Merge remote-tracking branch 'upstream/staged' into add-ai-ready-skill
johnpapa b2fef37
docs: add ai-ready to skills index table
johnpapa 0bc65a2
Merge remote-tracking branch 'upstream/staged' into add-ai-ready-skill
johnpapa babeda1
Merge remote-tracking branch 'upstream/staged' into add-ai-ready-skill
johnpapa 96cdc33
fix: correct ai-ready skill alphabetical order in README.skills.md
johnpapa f78e70d
fix: add review step before loading downloaded skill
johnpapa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| --- | ||
| name: ai-ready | ||
| description: 'Make any repo AI-ready — analyzes your codebase and generates AGENTS.md, copilot-instructions.md, CI workflows, issue templates, and more. Mines your PR review patterns and creates files customized to your stack. USE THIS SKILL when the user asks to "make this repo ai-ready", "set up AI config", or "prepare this repo for AI contributions".' | ||
| --- | ||
|
|
||
| # AI Ready | ||
|
|
||
| This skill helps the user install the latest [ai-ready](https://github.com/johnpapa/ai-ready) `SKILL.md` by [John Papa](https://github.com/johnpapa) into their personal skills directory. | ||
|
|
||
| *Why?*: The full ai-ready skill is ~600 lines of detailed instructions that evolve frequently. This wrapper keeps it discoverable here while the source of truth stays in [johnpapa/ai-ready](https://github.com/johnpapa/ai-ready) — always up to date. | ||
|
|
||
| ## Steps | ||
|
|
||
| 1. Tell the user to download the latest `SKILL.md` to their personal skills directory by running one of these commands in their terminal. This will overwrite any existing local copy. | ||
|
|
||
| **bash / zsh** | ||
| ```bash | ||
| mkdir -p ~/.copilot/skills/ai-ready | ||
| curl -fsSL https://raw.githubusercontent.com/johnpapa/ai-ready/main/skills/ai-ready/SKILL.md \ | ||
| -o ~/.copilot/skills/ai-ready/SKILL.md | ||
| ``` | ||
|
|
||
| **PowerShell** | ||
| ```powershell | ||
| New-Item -ItemType Directory -Force -Path "$HOME/.copilot/skills/ai-ready" | Out-Null | ||
| Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/johnpapa/ai-ready/main/skills/ai-ready/SKILL.md" -OutFile "$HOME/.copilot/skills/ai-ready/SKILL.md" | ||
| ``` | ||
|
|
||
| For reproducible behavior, the user can replace `main` in the URL with a specific tag or commit SHA. | ||
| 2. Suggest the user review the downloaded skill before loading it to confirm it contains expected instructions: | ||
| ```bash | ||
| head -20 ~/.copilot/skills/ai-ready/SKILL.md | ||
| ``` | ||
| 3. After the user confirms they've installed it, tell them to reload skills with `/skills reload` and then say `make this repo ai-ready`. | ||
| 4. Do **not** run the install command on the user's behalf. The user must run it themselves. | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.