Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ goose skills are compatible with Claude Desktop and other [agents that support A
Skills can be stored globally and/or per-project. goose checks all of these directories in order and combines what it finds. If the same skill name exists in multiple directories, later directories take priority:

1. `~/.claude/skills/` — Global, shared with Claude Desktop
2. `~/.config/agents/skills/` — Global, portable across AI coding agents
2. `~/.config/agent/skills/` — Global, portable across AI coding agents (`~/.config/agents/skills` in goose v1.20.0 and later)
Copy link

Copilot AI Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The documentation change is incorrect. The actual implementation in crates/goose/src/agents/skills_extension.rs line 83 uses ~/.config/agents/skills/ (plural "agents"), not ~/.config/agent/skills/ (singular "agent"). This change would mislead users about the correct directory path.

Suggested change
2. `~/.config/agent/skills/` — Global, portable across AI coding agents (`~/.config/agents/skills` in goose v1.20.0 and later)
2. `~/.config/agents/skills/` — Global, portable across AI coding agents

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

current release version uses "agent"

3. `~/.config/goose/skills/` — Global, goose-specific
4. `./.claude/skills/` — Project-level, shared with Claude Desktop
5. `./.goose/skills/` — Project-level, goose-specific
Expand Down
Loading