A marketplace of skills, agents, and profiles for AI coding tools. Browse below, then install into whichever tool you use.
Drop the SKILL.md into your Claude skills folder (personal scope shown). Restart Claude Code.
mkdir -p ~/.claude/skills/frontend-conventions
curl -fsSL https://aihub.avihs.ai/skills/frontend-conventions/SKILL.md \
-o ~/.claude/skills/frontend-conventions/SKILL.mdInvoke with @frontend-conventions. Swap the name for any skill below. Project scope: use .claude/skills/.
Save the agent/profile file into your Claude agents folder.
# agent
curl -fsSL https://aihub.avihs.ai/agents/devops.md \
-o ~/.claude/agents/devops.md
# profile
curl -fsSL https://aihub.avihs.ai/profiles/avihs-dev.md \
-o ~/.claude/agents/avihs-dev.mdInvoke with @agent-devops. A profile also expects its skills — install those too (it lists them below).
claude.ai doesn't read SKILL.md files. Use a Project: open the skill, copy its contents, and paste them into the Project's custom instructions.
open https://aihub.avihs.ai/skills/frontend-conventions/SKILL.mdclaude.ai → New Project → Set custom instructions → paste.
A Project is the persona. Paste the agent's (or profile's) system prompt into the Project's custom instructions; add the skill text too for a profile.
open https://aihub.avihs.ai/profiles/avihs-dev.mdTool/permission frontmatter doesn't apply on claude.ai — only the prompt carries over.
Cursor 2.4+ reads SKILL.md natively. Put it under the project skills folder.
mkdir -p .cursor/skills/frontend-conventions
curl -fsSL https://aihub.avihs.ai/skills/frontend-conventions/SKILL.md \
-o .cursor/skills/frontend-conventions/SKILL.mdCursor scans .cursor/skills/ recursively, or run /create-skill.
Cursor 2.4+ subagents live in .cursor/agents/ (project) or ~/.cursor/agents/ (global).
mkdir -p .cursor/agents
curl -fsSL https://aihub.avihs.ai/profiles/avihs-dev.md \
-o .cursor/agents/avihs-dev.mdManage them with the /agents command. Install a profile's skills alongside it.
Point Croma at this hub once and it pulls every skill automatically. Add to ~/.config/opencode/croma.json and restart.
{ "skills": { "urls": ["https://aihub.avihs.ai/skills/"] } }Single skill instead: drop it in ~/.config/opencode/skill/<name>/SKILL.md.
Save the file into the Croma agents folder and restart — profiles and agents share the same folder.
# profile (bundles skills)
curl -fsSL https://aihub.avihs.ai/profiles/avihs-dev.md \
-o ~/.config/opencode/agent/avihs-dev.md
# single agent
curl -fsSL https://aihub.avihs.ai/agents/devops.md \
-o ~/.config/opencode/agent/devops.mdPick it from the agent dropdown in the composer. Croma honours the full frontmatter, including a profile's per-agent skill scoping.