소스 정보
- 저장소
- fabioc-aloha/Alex_Skill_Mall
- 최근 소스 활동
- 2026년 7월 28일 21:46
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/fabioc-aloha/Alex_Skill_Mall --skill prompt-builder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | prompt-builder |
| description | Create and validate .prompt.md files that pass brain-qa on first attempt |
| lastReviewed | 2026-04-30T00:00:00.000Z |
Build
.prompt.mdfiles that pass brain-qa on first attempt — no regressions
.prompt.md fileEvery .prompt.md has two parts: YAML frontmatter and Markdown body.
| Field | Required | Gate | Purpose |
|---|---|---|---|
description | Yes | Yes | What the prompt does (1 sentence) |
application | Yes | Yes | When/why to use it (distinct from description) |
mode | Conditional | No | Set to agent for loop prompts |
agent | Conditional | No | Named agent for root prompts |
tools | Conditional | No | Tool array for loop prompts |
Gate fields (description + application) are mandatory — brain-qa fails without both.
| Flag | Points | Rule |
|---|---|---|
desc | 1 | description: exists in frontmatter |
app | 1 | application: exists in frontmatter |
agent | 1 | agent: OR mode: agent exists |
>20L | 1 | Body exceeds 20 lines |
Pass = both gates (desc + app) AND score >= 3.
.github/prompts/*.prompt.md)Invoked directly by name. Typically route to a named agent.
---
description: "What this prompt does"
application: "When to use this prompt"
agent: the AI assistant
---
Key rules:
agent: to name the target agent (the AI assistant, Researcher, Validator, etc.)mode: or tools: — those are for loop prompts.github/prompts/loop/*.prompt.md)Sidebar buttons in the extension Loop tab. Loaded by loopMenu.ts.
---
mode: agent
description: "What this prompt does"
application: "When to use this prompt"
tools: ["read_file", "create_file", "run_in_terminal"]
---
Key rules:
mode: agenttools: array with relevant tool namesagent: — loop prompts use mode-based routingdescription vs applicationThese are distinct fields — do not duplicate content between them.
| Field | Answers | Example |
|---|---|---|
description | "What does this do?" | "3-pass code review with confidence scoring" |
application | "When should I use this?" | "Review code for correctness, security, and maintainability" |
Anti-pattern: Making application a rephrasing of description.
tools Array (Loop Prompts Only)Include only tools the prompt actually needs:
| Tool | When to Include |
|---|---|
read_file | Reads existing code or docs |
create_file | Generates new files |
replace_string_in_file | Edits existing files |
run_in_terminal | Runs commands (build, test, deploy) |
grep_search | Searches codebase for patterns |
semantic_search | Semantic code search |
list_dir | Explores directory structure |
fetch_webpage | Web research |
view_image | Image analysis |
get_errors | Reads diagnostics |
codebase | VS Code codebase tool |
terminal | VS Code terminal tool |
editFiles | VS Code edit tool |
# {Title}
{1-2 sentence intro describing the workflow}
## Phase 1: {Discovery/Setup}
{Steps for initial context gathering}
## Phase 2: {Execution}
{Core workflow steps}
## Phase 3: {Validation}
{How to verify the work}
## Output
{What the user should expect}
$ARGUMENTS — User's input text (root prompts)${{input}} — VS Code variable for selected text.github/skills/{name}/SKILL.md"Run mentally before saving any .prompt.md:
description: present and meaningfulapplication: present and distinct from descriptionagent: OR loop prompt has mode: agent + tools:.github/prompts/).github/config/loop-menu.json| Failure | Cause | Fix |
|---|---|---|
app=0 | Missing application: | Add field after description: |
desc=0 | Missing description: | Add field in frontmatter |
agent=0 | No agent: or mode: agent | Add appropriate field |
>20L=0 | Body too short | Expand with phases/instructions |
| Score 3 but FAIL | Has score but missing a gate | Ensure both description AND application exist |