How this skill is triggered — by the user, by Claude, or both
Slash command
/artemis:runner-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Artemis is TurinTech AI's code optimization and analysis platform. It analyzes, optimizes, and validates codebases at scale — improving performance, efficiency, and reducing costs. The platform uses **runners** (agents installed on user machines) to execute build, test, and benchmark commands against code. Users configure their project on the Artemis web UI, and the runner executes commands in ...
Artemis is TurinTech AI's code optimization and analysis platform. It analyzes, optimizes, and validates codebases at scale — improving performance, efficiency, and reducing costs. The platform uses runners (agents installed on user machines) to execute build, test, and benchmark commands against code. Users configure their project on the Artemis web UI, and the runner executes commands in a temporary copy of the repo.
You are guiding the user through installing and configuring the Artemis runner on their machine. Be patient and step-by-step.
Before installing, confirm the user has:
Before installing, the user needs the runner download credentials (username and password). These are available in the Artemis web UI. Ask the user to retrieve them from the platform before proceeding.
curl -L --digest -u "<username>:<password>" \
"https://files.artemis.turintech.ai/tools-bundle/artemis-tools-installer-latest.sh" \
-o installer.sh && chmod +x installer.sh && ./installer.sh
iwr -Uri "https://files.artemis.turintech.ai/tools-bundle/artemis-tools-installer-latest.ps1" `
-OutFile "installer.ps1" `
-Credential (New-Object PSCredential('<username>', (ConvertTo-SecureString '<password>' -AsPlainText -Force))); `
.\installer.ps1
Replace <username> and <password> with the credentials from the Artemis UI.
If the quick installer doesn't work:
curl --digest -u '<username>:<password>' \
"https://files.artemis.turintech.ai/tools-bundle/artemis-tools-latest.tar.gz" \
-o artemis-tools-latest.tar.gz
tar -xzf artemis-tools-latest.tar.gz && cd artemis-toolspython3.11 -m venv .venv && source .venv/bin/activate && pip install --find-links wheels/ artemis-runner
artemis-runner (credentials prompted on first run, can be saved in .env.credentials)The runner name should appear in the Artemis web UI under the runner selection menu. Ask the user to check this.
python3.11 --version.chmod +x installer.sh).files.artemis.turintech.ai and the Artemis platform API.Before finishing, verify:
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub turintech/skills --plugin artemis