Summary
npx skills add Agenta-AI/agenta-skills reports symlink → Claude Code as part of a successful install, but the .claude/skills/ directory is never actually created. Claude Code sessions cannot find the skill until the symlink is created manually.
Tested against: Agenta host https://bighetzner.agenta.dev, workspace mahmoud/Default.
Repro
- Run
npx skills add Agenta-AI/agenta-skills in a fresh project directory.
- Installer output reports
symlink → Claude Code as part of a successful install (exit 0).
- Inspect the target directory — no
.claude/ directory exists (confirmed via ls and readlink).
- Start a Claude Code session and attempt to use the skill:
"There's no 'build-agent' skill available in this session"
- Manually run the workaround:
mkdir -p .claude/skills
ln -s ../../.agents/skills/build-agent .claude/skills/build-agent
- After this, the skill loads correctly in Claude Code.
Manual workaround
mkdir -p .claude/skills
ln -s ../../.agents/skills/build-agent .claude/skills/build-agent
Required fix
The installer must verify the symlink was actually created (e.g. via readlink -f or ls -la) before reporting success. If creation fails, it should either retry, fall back, or surface a clear actionable error — not silently report success with a false status line.
Environment
|
|
| Agenta host |
https://bighetzner.agenta.dev |
| Workspace |
mahmoud/Default |
| Skill version |
build-agent from Agenta-AI/agenta-skills (current main) |
Summary
npx skills add Agenta-AI/agenta-skillsreportssymlink → Claude Codeas part of a successful install, but the.claude/skills/directory is never actually created. Claude Code sessions cannot find the skill until the symlink is created manually.Tested against: Agenta host
https://bighetzner.agenta.dev, workspacemahmoud/Default.Repro
npx skills add Agenta-AI/agenta-skillsin a fresh project directory.symlink → Claude Codeas part of a successful install (exit 0)..claude/directory exists (confirmed vialsandreadlink).Manual workaround
Required fix
The installer must verify the symlink was actually created (e.g. via
readlink -forls -la) before reporting success. If creation fails, it should either retry, fall back, or surface a clear actionable error — not silently report success with a false status line.Environment
https://bighetzner.agenta.devmahmoud/Defaultbuild-agentfromAgenta-AI/agenta-skills(current main)