Ai ready
Skill MarieLynneBlock/arcanum-artifex/skills/agentic/ai-ready
Prompts, skills, and agents that survive contact with real workflows. No vendor loyalty. Occasionally heretical. 🧙🏻♀️
npx -y skills add MarieLynneBlock/arcanum-artifex --skill ai-readyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Guide users to review and install the external ai-ready skill from its upstream repository. Use when the user asks to install or try John Papa's ai-ready skill.
SKILL.md
2.1 KB, as published. Nobody here has run it
AI Ready
This skill helps the user review and install the external ai-ready SKILL.md by John Papa into their personal skills directory.
Why?: The full ai-ready skill is maintained upstream and may change over time. This helper is a self-contained installer guide; the upstream repository remains an explicit external prerequisite.
External prerequisite
This package does not vendor the upstream ai-ready skill. Before installing it, ask the user to review the source repository and confirm they are comfortable downloading that external content.
Steps
-
Tell the user to download the latest
SKILL.mdto their personal skills directory by running one of these commands in their terminal. This will overwrite any existing local copy.bash / zsh
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.mdPowerShell
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 behaviour, the user can replace
mainin the URL with a specific tag or commit SHA. -
Suggest the user review the downloaded skill before loading it to confirm it contains expected instructions:
head -20 ~/.copilot/skills/ai-ready/SKILL.md -
After the user confirms they've installed it, tell them to reload skills with
/skills reloadand then saymake this repo ai-ready. -
Do not run the install command on the user's behalf. The user must run it themselves.