Provider Skill Paths — Verified Reference

Provider Skill Paths — Verified Reference

Prompt-first procedure: Describe the outcome you want in your agent conversation. The agent should select and load the appropriate AIWG assets, explain material changes, request any needed approval, and report verification evidence. Exact commands and flags appear only in the CLI reference.

Ground-truth skill discovery paths for all AIWG-supported providers. Paths are verified from platform source code where available, or from official documentation.

Issue tracking full audit + fixes: roctinam/aiwg#766


Universal Cross-Platform Path

`.agents/skills/` is scanned by multiple platforms as a shared convention:

  • Codex CLI (primary, confirmed from `codex-rs/core-skills/src/loader.rs`)
  • OpenClaw (confirmed from `src/agents/skills/workspace.ts`)
  • Warp Terminal (also scans alongside `.warp/skills/`)
  • GitHub Copilot / VS Code (also scans alongside `.github/skills/`)

Deploying to `.agents/skills/` is the most portable option if you need a single directory that works across providers.


Per-Provider Skill Paths

Claude Code

ScopePathSource
Project`.claude/skills/`Official docs
  • Discovery: scans `.claude/skills/` for SKILL.md files
  • Plugin namespace: `plugin-name:skill-name`
  • Copilot/VS Code source confirms it also scans `.claude/skills/` directly

OpenAI Codex

ScopePathSourceStatus
Project`.agents/skills/``codex-rs/core-skills/src/loader.rs`Primary (use this)
User-global`~/.agents/skills/``codex-rs/core-skills/src/loader.rs`Primary (use this)
User-global`~/.codex/skills/`LegacyDeprecated — pruned on deploy

skills to `~/.agents/skills/`. The legacy `~/.codex/skills/` home dir is no longer written; AIWG-managed dirs left there by pre-fix versions are pruned on every codex skill deploy.

  • Project-local addon skills deployed via the agent-owned use operation

also land in `.agents/skills/`; `.codex/.aiwg/skills/` remains the indexed artifact tier, not the Codex native runtime discovery path.

  • Each deployed native skill includes `agents/openai.yaml` with a display name

and short description for Codex UI discovery. Kernel skills are copied by default; use the copy-all option only when standard skills must also be native.

  • the agent-owned use operation treats `.codex/` and `.agents/` as generated

provider trees and adds them to `.gitignore` unless already covered. Existing tracked files remain tracked, and the dry-run option does not mutate the ignore file.

  • Duplicate-listing regression (fixed): #766's first fix added the

`.agents/skills/` write but never removed the legacy `~/.codex/skills/` write. codex-rs scans both, so every kernel skill appeared twice in the slash-command list (e.g. the agent-owned context regeneration procedure listed twice). `.agents/skills/` is now the single project-scope target.


GitHub Copilot / VS Code

ScopePathSourceNotes
Project`.github/skills/``promptFileLocations.ts`Copilot-specific
Project`.claude/skills/``promptFileLocations.ts`Also scanned — already visible to Copilot when AIWG is deployed for Claude
  • Source repo: https://github.com/microsoft/vscode (full TypeScript)
  • AIWG skills in `.claude/skills/` are already visible to Copilot users without extra deployment
  • Deploying to `.github/skills/` is still correct for Copilot-only projects

Factory AI

ScopePathSource
Project`.factory/skills/``docs/cli/configuration/skills.mdx`
  • Source: docs only (no public source code)
  • Path not independently verified from source; treat as provisional

Cursor IDE

ScopePathSource
Project`.cursor/skills/`Official docs
  • Closed source — path from documentation only

OpenCode

ScopePathSource
Project`.opencode/skill/``packages/opencode/src/skill/index.ts`
  • Source repo: https://github.com/sst/opencode (full TypeScript)
  • Note: agents (`.opencode/agent/`) and commands (`.opencode/command/`) are config-only via `opencode.jsonc` — file-based discovery only works for skills
  • Skills-only file-based discovery confirmed from source

Warp Terminal

ScopePathSourceNotes
Project`.warp/skills/`Official docsWarp-specific
Project`.agents/skills/`warpdotdev/oz-skills examplesAlso scanned
  • Closed source — paths from official docs and example repos
  • `.agents/skills/` cross-platform path likely scanned; needs verification

Windsurf

ScopePathSource
Project`.windsurf/skills/`Official docs
  • Codeium — closed source; path from documentation only
  • Status: experimental
  • Devin Desktop is modeled as the renamed/evolved Windsurf local IDE surface.

AIWG keeps `windsurf` as the deployable compatibility id, and `devin-desktop`, `devin-local`, and `cascade` resolve to the same writer adapter. Use the agent-owned use operation or the agent-owned use operation.

  • AIWG does not currently emit `.devin/` provider output. `.devin/` remains

ignored local provider state; committed source should use `.windsurf/` output plus `AGENTS.md` until a dedicated Devin CLI provider writer exists.

  • Bare `the provider option devin` and `the provider option devin-cli` are intentionally rejected

with guidance, because Devin CLI has distinct rules/skills surfaces.


OpenClaw

ScopePathSource
User-global`~/.openclaw/skills/``src/agents/skills/workspace.ts`, `local-loader.ts`
  • Source repo: https://github.com/openclaw/openclaw (full TypeScript)
  • All artifacts deploy to home directory — no project-local skill paths
  • Inherits Claude Code SKILL.md behavior including deep subdirectory recursion

Hermes Agent

ScopePathSource
User-global`$HERMES_HOME/skills/` (default `~/.hermes/skills/`)`hermes_constants.py`, `agent/skill_utils.py`, `tools/skills_tool.py`
  • Source repo: https://github.com/NousResearch/hermes-agent (full Python)
  • Discovery: recursive `SKILL.md` scan under the active profile's skills directory
  • NOT MCP-only for skills; file-based discovery is the primary mechanism
  • Managed Agent Skills imports deployed with the agent-owned skills operation land at `$HERMES_HOME/skills/<name>` as strict Agent Skills

bundles with AIWG ownership sidecars. This is separate from the agent-owned use operation, which deploys framework/kernel skills and provider bridge files.


Distribution Mechanism by Provider

Not all providers have a native plugin marketplace. The table below distinguishes providers with marketplace-based distribution from those that use the agent-owned use operation as the file-deploy adapter.

ProviderDistribution MechanismInstall Command / Marketplace
Claude CodeFile-deploy adapterthe agent-owned use operation
OpenAI CodexFile-deploy adapterthe agent-owned use operation
GitHub CopilotVS Code Marketplace for extensions; file-deploy adapter for agents/skills/rulesthe agent-owned use operation
Factory AIFile-deploy adapterthe agent-owned use operation
CursorFile-deploy adapterthe agent-owned use operation
OpenCodeFile-deploy adapterthe agent-owned use operation
Warp TerminalFile-deploy adapterthe agent-owned use operation
WindsurfFile-deploy adapterthe agent-owned use operation
OpenClawFile-deploy adapterthe agent-owned use operation
HermesFile-deploy adapter; managed Agent Skills targetthe agent-owned use operation; the agent-owned skills operation

Marketplace vs. file-deploy distinction:

  • VS Code Marketplace (GitHub Copilot): Distributes Copilot extensions — GitHub App-based integrations built with the Extensions API. It does not distribute project-local agent/skill/rule file bundles. AIWG uses the agent-owned use operation for those.
  • File-deploy adapter (all other providers): No native plugin marketplace exists for distributing AI framework packages. the agent-owned use operation writes framework artifacts to the platform's native discovery paths. This provides equivalent capability to a marketplace install and is by design, not a missing feature.

Capability-Matrix.yaml vs. Ground Truth

ProviderMatrix `skills:`Ground-truth primaryCorrect?
claude-code`.claude/skills/``.claude/skills/`Yes
codex`.agents/skills/``.agents/skills/`Yes (#766; legacy `~/.codex/skills/` pruned)
copilot`.github/skills/``.github/skills/` (also `.claude/skills/`)Partial
factory`.factory/skills/``.factory/skills/`Unverified
cursor`.cursor/skills/``.cursor/skills/`Unverified
opencode`.opencode/skill/``.opencode/skill/`Yes
warp`.warp/skills/``.warp/skills/` (also `.agents/skills/`)Partial
windsurf`.windsurf/skills/``.windsurf/skills/`Unverified
openclaw`~/.openclaw/skills/``~/.openclaw/skills/`Yes

Source Repositories

PlatformRepoOpen SourceKey skill loader
Claude Codehttps://github.com/anthropics/claude-codePartial (no loader)Docs: code.claude.com/docs/en/skills
Codex CLIhttps://github.com/openai/codexFull Rust`codex-rs/core-skills/src/loader.rs`
GitHub Copilot / VS Codehttps://github.com/microsoft/vscodeFull TypeScript`promptFileLocations.ts`
Factory AI— (docs only)No`docs/cli/configuration/skills.mdx`
Cursor— (closed)NoDocs only
OpenCodehttps://github.com/sst/opencodeFull TypeScript`packages/opencode/src/skill/index.ts`
Warp— (closed)No (examples: warpdotdev/oz-skills)Docs only
Windsurf— (closed)NoDocs only
OpenClawhttps://github.com/openclaw/openclawFull TypeScript`src/agents/skills/workspace.ts`, `local-loader.ts`
Hermes Agenthttps://github.com/NousResearch/hermes-agentFull Python`agent/skill_commands.py`
agentskills spechttps://github.com/agentskills/agentskillsFullSpecification + reference library

Last verified: 2026-07-28. Re-verify before implementing path changes — source repos move fast.