using-agent-skills

Maps user intents to matching agents, skills, and lifecycle commands in the Artibot catalog.

3|2|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/Yoodaddy0311/artibot --skill using-agent-skills-yoodaddy0311
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: using-agent-skills
Source: https://github.com/Yoodaddy0311/artibot/tree/main/plugins/artibot/skills/using-agent-skills
Command: npx skills add https://github.com/Yoodaddy0311/artibot --skill using-agent-skills-yoodaddy0311

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When facing an unfamiliar task, users often do not know which skill, agent, or command in a large plugin library applies to their request. This meta-skill provides a discovery flowchart that routes intents like planning, TDD, code review, debugging, or security audits to the correct tool without trial and error. ## Core Features & Use Cases - Intent-to-skill mapping: A lookup table pairs common intents ("plan a feature", "review what I wrote", "find a bug") with the right agent and skill combination. - Lifecycle command overview: Documents the 7 auto-invoked Artibot commands (/plan, /implement, /code-review, /verify, /improve, /team, /daily) and their autopilot phases. - Skill cluster catalog: Groups the skill library into clusters (Planning, Implementation, Review, Cognitive, Orchestration, Memory, DDD, Marketing, Meta) with a Glob-based enumeration method for the authoritative count. - Use Case: A user asks "how do I audit my dependencies for vulnerabilities?" The flowchart routes directly to the security-reviewer agent plus the security-standards skill, skipping irrelevant options. ## Quick Start Ask the assistant what skills are available or how to accomplish a specific task, and it will use this discovery flowchart to point you to the right skill.

Frequently Asked Questions about using-agent-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the right skill for a task in Artibot?▼

State your intent in natural language, such as "plan a feature" or "review my code". The discovery flowchart maps that intent to a matching agent and skill pair, so you never need to browse the full catalog manually.

What commands are available in the Artibot plugin?▼

Artibot provides 7 lifecycle commands: /plan, /implement, /code-review, /verify, /improve, /team, and /daily. These are auto-invoked by intent detection, so users do not need to type them directly.

How do I list all skills in the Artibot skill library?▼

Run a Glob search for "plugins/artibot/skills/*/SKILL.md" to enumerate every skill directory. This directory scan is the authoritative source for the total skill count, since each valid skill contains a SKILL.md file.

When should I not use the skill discovery flowchart?▼

Skip discovery when you already know which skill applies or when you are inside an active skill mid-task. The flowchart is an orientation aid only; re-reading it during execution wastes context.

Does Artibot ask which skill I want to use?▼

No. Artibot follows an auto-invoke principle: it detects your intent and triggers the matching skill silently. Asking the user to pick a skill manually is explicitly listed as an anti-pattern.