How this skill is triggered — by the user, by Claude, or both
Slash command
/agentless:agent-installerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install specialist modes from GitHub.
Install specialist modes from GitHub.
user-invocable: false description: Handles specialist mode installation by downloading from the agency-agents GitHub repository. Always confirms with user before installing. allowed-tools: [Read, Write, Bash, WebFetch, Glob, AskUserQuestion]
When called with an agent to install, follow this flow.
Glob: .claude/agents/{agent-id}.md
Glob: ~/.claude/agents/{agent-id}.md
Download the agent file from GitHub:
WebFetch: https://raw.githubusercontent.com/msitarzewski/agency-agents/main/{path}
Where {path} is the full path (e.g., engineering/engineering-frontend-developer.md)
Determine install location:
.claude/agents/{agent-id}.md~/.claude/agents/{agent-id}.mdCreate the directory if needed:
mkdir -p .claude/agents
Write the downloaded content:
Write: .claude/agents/{agent-id}.md
Add include reference to CLAUDE.md:
@agents/{agent-id}.md as an include line if not already present.claude/agents/{agent-id}.mdAfter installation, verify:
Provide a clear summary:
npx claudepluginhub 0oooooooo0/agentlessCreates Claude Code agents from scratch or by adapting templates. Guides requirements gathering, template selection, and file generation following Anthropic best practices (v2.1.63+).
Creates Claude Code agents with YAML frontmatter for name, description, tools, model selection, and color. Use when adding specialized agents to plugins.
Create custom agents for Claude Code including YAML frontmatter, system prompts, tool restrictions, and discovery optimization. Use when creating, building, or designing agents, or when asked about agent creation, subagent configuration, Task tool delegation, or agent best practices.