用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill clone-cornelius命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Generate an agent-specific `/update-dashboard` skill that keeps `dashboard.yaml` current for Trinity. Analyzes the agent's purpose and data sources, proposes metrics, gets user approval, then scaffolds a schedulable skill.
Modify an existing playbook based on conversation context or explicit instructions. Use when user wants to update, fix, extend, or refine a playbook they already have.
Create a new skill or playbook. Guides through requirements gathering and generates the appropriate template based on complexity.
基于 SOC 职业分类
正在显示 SKILL.md
| name | clone-cornelius |
| description | Clone the Cornelius agent repository and guide the user to open Claude Code inside it |
| argument-hint | [destination-path] |
| disable-model-invocation | false |
| user-invocable | true |
| allowed-tools | Bash, AskUserQuestion |
| metadata | {"version":"1.0","created":"2026-03-16T00:00:00.000Z","author":"Ability.ai","changelog":["1.0: Initial version — clone the Cornelius agent repository and guide the user to open Claude Code inside it"]} |
ℹ️ First, set expectations: before anything else, print one short line with this skill's version and its most recent change — the top entry of
metadata.changelogabove — e.g.clone-cornelius vX.Y — recent: <summary>. Then proceed.
Clone Cornelius and launch Claude Code inside the repository.
If the user provided a destination path as an argument, use it. Otherwise, ask:
Use AskUserQuestion:
~/cornelius — Home directory (recommended)./cornelius — Current directoryDefault to ~/cornelius if no preference.
Expand ~ to the actual home directory using:
echo "$HOME"
git clone https://github.com/Abilityai/cornelius [destination]
If the destination already exists and is non-empty, inform the user and stop — do not overwrite.
Report the result:
## Cornelius Cloned
Repository cloned to: [full path]
Display this message to the user:
## Next Step: Open Claude Code in Cornelius
Cornelius is a Claude Code agent — to use it, you need to start Claude Code
with the Cornelius directory as its working directory.
**Option 1 — Exit and reopen (recommended)**
Exit this Claude Code session, then run:
cd [destination]
claude
**Option 2 — Open a new terminal tab**
Keep this session open and run in a new terminal tab:
cd [destination]
claude
**Option 3 — Use the shell command directly**
claude [destination]
Once Claude Code starts inside Cornelius, it will load the agent's CLAUDE.md
and you'll be working with Cornelius.
Do not do anything else. The skill is complete once the instructions are displayed.
| Situation | Action |
|---|---|
git not found | Tell user to install Git first: brew install git or https://git-scm.com |
| Destination already exists | Warn the user, offer to use existing clone or pick a different path |
| Clone fails (network, permissions) | Show the error and suggest they try manually: git clone https://github.com/Abilityai/cornelius |