Install workspace skills from curated sources or import open-source skills from GitHub.
66
78%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./runtime/harnesses/src/embedded-skills/skill-installer/SKILL.mdUse this skill to install workspace skills into the workspace-local skills/ directory, where the runtime auto-discovers them on the next run.
Open-source skills (e.g. github.com/anthropics/skills) are just SKILL.md folders in the same format used here, so they can be imported whole. Use the runtime endpoint — it fetches the entire folder (SKILL.md plus bundled scripts/, references/, assets/), maps foreign frontmatter (allowed-tools → holaboss_granted_tools, aligns name to the installed id), and writes it under skills/<id>/:
POST /api/v1/workspaces/{workspaceId}/skills/import-github/preview with { "url": "<github folder or SKILL.md URL>" } — returns the parsed name, description, granted tools, and file list so you can confirm before installing.POST /api/v1/workspaces/{workspaceId}/skills/import-github with the same body.Accepts github.com/<owner>/<repo>/tree/<ref>/<path> (folder), .../blob/<ref>/<path>/SKILL.md (single file), or a bare repo. Pass an optional "ref" for a specific branch/tag/commit (defaults to the repo's default branch). Skills whose bundled scripts assume tools this sandbox lacks still install and work as pure guidance.
skills/<skill-id>/ with its SKILL.md plus any helper files. For skills you author by hand, create these files directly with the Write tool.runtime/harnesses/src/embedded-skills/. Do not install into $CODEX_HOME/skills unless the user explicitly asks for a global install rather than a workspace install.74c7b6f
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.