소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill instruction-generator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | instruction-generator |
| description | >- Use when this capability is needed. |
Produces clear, scoped, non-contradictory instruction files that Claude loads and follows automatically.
Instructions are always-on: they apply whenever Claude processes matching files or contexts. Keep them concise. Every word in an instruction file costs context tokens on every invocation.
| Need | File | Location |
|---|---|---|
| Applies to the whole workspace / all files | copilot-instructions.md or AGENTS.md | .github/ or root |
| Applies to specific file types or folders | <name>.instructions.md | .github/instructions/ |
| Applies to user (cross-workspace) | <name>.instructions.md | {{VSCODE_USER_PROMPTS_FOLDER}}/ |
applyTo patterns:
"**" — matches all files"**/*.ts" — TypeScript files"src/**" — everything under src/"**/*.{ts,tsx}" — multiple extensionsapplyTo absent for on-demand instructions (not auto-applied)Follow these steps in order. Mark each ✓ when done.
Answer before writing:
| Variant | Use when | Target length |
|---|---|---|
| Concise rules | Simple preferences (naming, style, imports) | ≤ 20 lines |
| Extended rules | Fragile workflows, multi-step processes, error-prone areas | 20-60 lines |
| Reference-based | Large rule sets; use progressive disclosure | SKILL body → details.md |
If the instruction body would exceed 60 lines, split it:
*.md file: extended rules, examples, edge cases---
applyTo: "<glob>"
description: "<optional: use for on-demand instructions>"
---
# <Short title>
<Context sentence: what this file covers and why>
## Rules
- <Rule 1: imperative, specific, verifiable>
- <Rule 2: imperative, specific, verifiable>
- <Rule n>
## Do not
- <Prohibited action 1>
- <Prohibited action 2>
See templates/instructions-concise.md and templates/instructions-extended.md.
To scaffold a stub from the command line:
python skills/instruction-generator/scripts/generate_instruction_stub.py \
--apply-to "**/*.ts" --title "TypeScript rules" [--variant concise|extended]
Run each rule through this test: "Can Claude determine pass/fail without judgment?"
| Vague (reject) | Specific (accept) |
|---|---|
| "Write good code" | "Prefer pure functions; avoid side effects in utility modules" |
| "Be concise" | "Keep function bodies under 40 lines; extract helpers if exceeded" |
| "Handle errors properly" | "Wrap async calls in try/catch; surface errors to the caller — never swallow" |
| "Use modern syntax" | "Use ES2022+; prefer ?. and ?? over manual null checks" |
.github/copilot-instructions.md?applyTo patterns precise enough? (Overly broad patterns → high context cost)applyTo pattern is correct glob syntax — validated against target file paths.Run the validator to catch soft rules and frontmatter issues automatically:
python skills/instruction-generator/scripts/validate_instruction_output.py <path>
# or via poe:
poe validate-instructions <path>
applyTo: without a glob, the file is on-demand only; teams expecting auto-apply will be confused.Deliver the full instruction file (frontmatter + body) and note:
See examples/ for language-specific and workflow-specific patterns. Concise template: templates/instructions-concise.md Extended template: templates/instructions-extended.md
Source: Anselmoo/universal-creator — distributed by TomeVault.