Include ~/.agents/skills in default skill discovery
Problem
DevSpace currently discovers skills from:
- the default agent directory, which defaults to
~/.codex and therefore includes ~/.codex/skills
- project-local
.pi/skills
- extra paths provided through
DEVSPACE_SKILL_PATHS
However, ~/.agents/skills is also a common skills directory used by many agent workflows. It is also the default location used by npx skill when installing Codex-compatible skills.
This creates a confusing setup issue: a skill can be installed successfully under ~/.agents/skills, but DevSpace does not show it in open_workspace unless the user manually sets DEVSPACE_SKILL_PATHS.
Example
A skill installed at:
~/.agents/skills/understand/SKILL.md
does not appear in the open_workspace skills list with the default DevSpace configuration.
It appears only after manually setting:
DEVSPACE_SKILL_PATHS="$HOME/.agents/skills"
Expected behavior
DevSpace should include ~/.agents/skills in the default skill discovery paths, or make the effective default for DEVSPACE_SKILL_PATHS include that directory.
Suggested default discovery order:
~/.codex/skills
~/.agents/skills
- project
.pi/skills
- user-provided
DEVSPACE_SKILL_PATHS entries
Why this matters
~/.agents/skills is used by many agent workflows.
npx skill installs Codex-compatible skills there by default.
- Users can otherwise install a skill successfully but still think DevSpace failed to load it.
- Adding this default path would reduce setup friction and better match the current agent ecosystem.
Include ~/.agents/skills in default skill discovery
Problem
DevSpace currently discovers skills from:
~/.codexand therefore includes~/.codex/skills.pi/skillsDEVSPACE_SKILL_PATHSHowever,
~/.agents/skillsis also a common skills directory used by many agent workflows. It is also the default location used bynpx skillwhen installing Codex-compatible skills.This creates a confusing setup issue: a skill can be installed successfully under
~/.agents/skills, but DevSpace does not show it inopen_workspaceunless the user manually setsDEVSPACE_SKILL_PATHS.Example
A skill installed at:
does not appear in the
open_workspaceskills list with the default DevSpace configuration.It appears only after manually setting:
DEVSPACE_SKILL_PATHS="$HOME/.agents/skills"Expected behavior
DevSpace should include
~/.agents/skillsin the default skill discovery paths, or make the effective default forDEVSPACE_SKILL_PATHSinclude that directory.Suggested default discovery order:
~/.codex/skills~/.agents/skills.pi/skillsDEVSPACE_SKILL_PATHSentriesWhy this matters
~/.agents/skillsis used by many agent workflows.npx skillinstalls Codex-compatible skills there by default.