-
Notifications
You must be signed in to change notification settings - Fork 2.4k
docs: temp correction for agent directory #6544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR attempts to correct the global agents directory path in the skills documentation, claiming that the current implementation uses ~/.config/agent/skills/ (singular) and will change to ~/.config/agents/skills/ (plural) in v1.20.0.
Changes:
- Updated the skills location documentation to change
agentstoagent(singular) for the current path with a note about a future change to plural form
|
|
||
| 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) |
Copilot
AI
Jan 16, 2026
There was a problem hiding this comment.
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.
| 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 |
There was a problem hiding this comment.
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"
|
* 'main' of github.com:block/goose: (28 commits) chore(deps): bump aiohttp from 3.13.0 to 3.13.3 in /scripts/provider-error-proxy (#6539) chore(deps): bump brotli from 1.1.0 to 1.2.0 in /scripts/provider-error-proxy (#6538) docs: temp correction for agent directory (#6544) chore: upgrade rmcp (#6516) docs: clarify directory in /documentation readme (#6541) Release 1.20.0 Standalone mcp apps (#6458) don't add escaping to the command field (#6519) Fix popular topics not starting chat when clicked (#6508) fix[desktop]: deeplink ui repeat on refresh (#6469) fixed test compilation on main branch (#6512) fix: correctly parse extension name from tool call for MCP apps (#6482) fixed 0 token in openrouter steaming (#6493) feat(goose-acp): enable parallel sessions with isolated agent state (#6392) copilot instruction to flag prelease docs (#6504) docs: acp mcp support (#6491) feat: add flatpak support for linux (#6387) fix(code_execution): serialize record_result output as JSON (#6495) perf(google): avoid accumulating thoughtSignatures across conversation history (#6462) fix(openai): make tool_call arguments optional and fix silent stream termination (#6309) ...
Summary
This PR corrects the global agents directory path for the current implementation and notes that it will change in v1.20.0.
Documentation updates:
Type of Change
AI Assistance
Testing
None