Avihs · internal

A marketplace of skills, agents, and profiles for AI coding tools. Browse below, then install into whichever tool you use.

Skill — one capability (a SKILL.md the model loads on demand).
Agent — a single-role persona (a system prompt + its skills).
Profile — a ready-to-work bundle combining agents and skills.

Install

choose your tool

Install a skill

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.md

Invoke with @frontend-conventions. Swap the name for any skill below. Project scope: use .claude/skills/.

Install an agent or profile

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.md

Invoke with @agent-devops. A profile also expects its skills — install those too (it lists them below).

Install a skill

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.md

claude.ai → New Project → Set custom instructions → paste.

Install an agent or profile

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.md

Tool/permission frontmatter doesn't apply on claude.ai — only the prompt carries over.

Install a skill

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.md

Cursor scans .cursor/skills/ recursively, or run /create-skill.

Install an agent or profile

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.md

Manage them with the /agents command. Install a profile's skills alongside it.

Install skills (registry)

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.

Install an agent or profile

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.md

Pick it from the agent dropdown in the composer. Croma honours the full frontmatter, including a profile's per-agent skill scoping.

Profiles

Agents

Skills