소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 27일 19:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill human-friendly-agent-name명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| description | Standards for Copilot custom agent definition files |
| applyTo | **/*.agent.md |
These instructions apply to custom agent definition files (for example: .github/agents/*.agent.md).
Goals:
.github/instructions/Each .agent.md file MUST start with valid YAML front matter:
--- to open and close the front matter.Recommended minimum fields:
---
name: { Human-friendly agent name }
description: { 1-2 sentences, specific scope }
tools:
- { tool-id-or-pattern }
handoffs:
- { other-agent-id }
---
namedescriptiontoolsazure-pricing/*, azure-mcp/*).tools: [] explicitly.agent (not agent/runSubagent) as the tool ID for subagent delegation.tools: [read/readFile, edit/createFile, agent, "azure-mcp/*"]
handoffshandoffs to connect workflow steps (for example: Architect -> Bicep Plan -> Bicep Code).agent value matching the agent's display name (from frontmatter).
For example: agent: Architect (matching name: Architect in frontmatter).model on individual handoff entries unless the target agent requires a specific
model that differs from the agent's own frontmatter model value.model[!IMPORTANT] Model selection is intentional and must not be changed without explicit approval.
Agents that specify Claude Opus 4.6 as priority model do so deliberately:
Current model assignments:
| Agent | Model | Rationale |
|---|---|---|
| Requirements | Opus 4.6 | Deep understanding |
| Architect | Opus 4.6 | WAF analysis + cost |
| Bicep Plan | Opus 4.6 | Efficient planning |
| Bicep Code | Opus 4.6 / GPT-5.3-Codex | Code generation |
| Deploy | GPT-5.3-Codex | Deployment execution |
| As-Built | GPT-5.3-Codex | Documentation gen |
| Subagents | GPT-5.3-Codex | Fast validation |
Rules:
model arrays, match the pattern of similar workflow-stage agentsTop-level agents live in .github/agents/ and are user-invokable: true. They correspond to
the 7-step workflow:
| Step | Agent | File |
|---|---|---|
| 1 | Requirements | 02-requirements.agent.md |
| 2 | Architect | 03-architect.agent.md |
| 3 | Design (optional) | 04-design.agent.md |
| 4b | Bicep Plan | 05b-bicep-planner.agent.md |
| 5b | Bicep Code | 06b-bicep-codegen.agent.md |
| 6b | Bicep Deploy | 07b-bicep-deploy.agent.md |
| 4t | Terraform Plan | 05t-terraform-planner.agent.md |
| 5t | Terraform Code | 06t-terraform-codegen.agent.md |
| 6t | Terraform Deploy | 07t-terraform-deploy.agent.md |
| 7 | As-Built | 08-as-built.agent.md |
| — | InfraOps Conductor | 01-conductor.agent.md |
| — | Diagnose | 09-diagnose.agent.md |
| — | Challenger (wrapper) | 10-challenger.agent.md |
Subagents live in .github/agents/_subagents/ and are user-invokable: false. They isolate
expensive or specialized work from their parent agent's context window.
| Subagent | Parent Agent | Purpose |
|---|---|---|
challenger-review-subagent | All workflow agents | Adversarial review (1x or 3x passes) |
cost-estimate-subagent | Architect | Pricing MCP queries |
governance-discovery-subagent | Bicep Plan / Terraform Plan | Azure Policy REST API discovery |
bicep-lint-subagent | Bicep Code | bicep build + bicep lint |
bicep-review-subagent | Bicep Code | AVM/security/naming code review |
bicep-whatif-subagent | Bicep Deploy | az deployment group what-if |
terraform-lint-subagent | Terraform Code | terraform fmt + terraform validate |
terraform-review-subagent | Terraform Code | AVM-TF/security/naming code review |
terraform-plan-subagent | Terraform Deploy | terraform plan change preview |
Subagent definition rules:
user-invokable: false — subagents are never called directly by users.agents: [] — subagents do not chain to other agents.GPT-5.3-Codex as the default model for fast, isolated execution.All top-level workflow agents in .github/agents/ MUST read the azure-defaults skill for shared
knowledge. Include a reference near the top of the agent body:
Read `.github/skills/azure-defaults/SKILL.md` FIRST for regional standards, naming conventions,
security baseline, and workflow integration patterns common to all agents.
When an agent delegates work to a subagent, follow this pattern:
This keeps the parent agent's context focused on its primary responsibility while the subagent handles isolated, tool-heavy work (pricing queries, REST API calls, lint runs).
When an agent outputs a specific document type, it MUST treat these as authoritative:
.github/instructions/cost-estimate.instructions.md.github/instructions/workload-documentation.instructions.md.github/instructions/markdown.instructions.md.github/instructions/bicep-code-best-practices.instructions.mdIf an agent contains an embedded template in its body, it MUST match the relevant instruction file.
````)
for the outer fence to avoid accidental termination.##, ###).tools: uses agent (not the deprecated agent/runSubagent) for subagent delegationtools: only contains valid tool IDs/patternshandoffs: only references real agents (including As-Built for Step 7)model when the target agent already defines itazure-defaults skill reference is correctuser-invokable: false and agents: [].github/instructions/* standardsnpm run lint:md passes