~/.claude/skills being wiped on agent run #8401
Replies: 1 comment
|
This looks like a collision with Paperclip's OpenCode cleanup rather than Claude Code itself. On current So if your central store is something like You can confirm it with: for link in ~/.claude/skills/*; do
[ -L "$link" ] && printf '%s -> %s\n' "$link" "$(readlink "$link")"
doneIf the targets contain Relevant code: If this is a remote execution target, use a managed home or a dedicated remote user: the remote path currently replaces the entire remote One more caveat: setting |
Uh oh!
There was an error while loading. Please reload this page.
Context:
I use multiple LLM providers/tools. Mainly Claude Code with a Team subscription through work. I manage by skill inside a centralised folder on my computer and sync them using symlinks to specific folders like ~/.claude/skills, ~/.copilot/skills, ...
My paperclip LLM setup:
I have my Claude Team subscription set up. I also have OpenCode running with models through OpenRouter.
My goal:
Set up a weekly routine on deepseek v4 pro that uses a skill to do some relatively basic stuff.
What's happening?
Whenever my agent starts running, Paperclip will clear my ~/.claude/skills folder and populate it with only the skills i assigned to the agent in Paperclip itself. I understand that this is like a feature now, but it literally clears my claude's skills folder everytime. I don't want my workflow outside of Paperclip to be effected by an agent configured in Paperclip.
The thing that confuses me most is that the agent isn't event using Claude Code, but is configured to use OpenCode.
Do you know of any way to fix my issue ?
Or just let all agents use any skill that they can find ?
All reactions