원클릭으로
using-skills
Use when learning how to use the cliagents skills system
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when learning how to use the cliagents skills system
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when creating, modifying, or reviewing a cliagents provider adapter for a CLI tool such as Codex, Claude Code, Gemini CLI, Qwen CLI, or OpenCode.
Use when operating as a supervised root that delegates work to child sessions through cliagents
Use when reducing prompt size for roots and child sessions without losing the information needed to execute well
Use when passing work between agents with context preservation
Use when exploring design options or solving open-ended problems
Use when reviewing code for quality, bugs, security, and maintainability
| name | using-skills |
| description | Use when learning how to use the cliagents skills system |
| tags | ["meta","help"] |
Skills are reusable workflows that provide domain-specific guidance for tasks. They help you follow best practices and maintain consistency across projects.
list_skills to see all available skillslist_skills tag="debugging" to find relevant skillslist_skills adapter="claude-code" to find compatible skillsWhen you encounter a task that matches a skill's domain:
invoke_skill skill="skill-name" message="Your task description"Skills are discovered from three locations (in priority order):
.cliagents/skills/): Project-specific workflows~/.cliagents/skills/): Your custom workflowsHigher-priority skills shadow lower-priority ones with the same name.
Create a SKILL.md file in any of the skill directories:
---
name: my-skill
description: Use when [trigger condition]
adapters: [claude-code, gemini-cli] # Optional: restrict adapters
tags: [category1, category2] # For discovery
---
# My Skill
Your workflow instructions here...