소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 3월 1일 18:11
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill permission-patterns명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | permission-patterns |
| description | Rules for evaluating, classifying, and deduplicating AI tool permissions |
| version | 1.0.0 |
| author | JacobPEvans |
Unified patterns for permission safety classification and deduplication. Use these rules to evaluate permissions consistently.
Classification rules for evaluating permission safety. Use these criteria to categorize permissions consistently.
Keywords: list, ls, show, info, view, get, describe, inspect, status, doctor, ping, check, --version, --help
Safe domains: github.com, docker.com, kubernetes.io, python.org, npmjs.com, official documentation sites
Keywords: update, set, edit, patch, modify, apply, rm, delete, remove, prune, clean, exec, run, eval, push, publish, deploy, kill, stop
Requires user confirmation before execution.
Keywords: sudo, chmod 777, dd, file patterns like **/.env, **/*_rsa, **/*.key, **/*secret*
Local addresses: localhost, 127.0.0.1, private IP ranges
Claude Code's WebFetch(domain:X) uses exact host matching — subdomains are NOT covered by a root domain entry:
github.com does NOT cover api.github.com or docs.github.com — each needs its own entrygithub.io does NOT cover github.github.io — separate entry requiredgithubusercontent.com and raw.githubusercontent.com are separate entries (different hostnames)localhost is separate from localhost:3000 (ports are distinct)Each hostname that needs to be fetched must be listed explicitly.
Local/private addresses always DENY:
localhost, 127.0.0.1, 192.168.x.x, 10.x.x.x rangesRules for detecting when a specific permission is already covered by a broader existing pattern.
Each hostname must be listed exactly — there is no wildcard or subdomain coverage. Ports are also distinct:
localhost does NOT cover localhost:3000Broader wildcards cover more specific patterns:
Read(**) covers any Read permissionGlob(**/*) covers Glob(**/*.js), Glob(**/package.json)Since WebFetch uses exact host matching, list each hostname explicitly. When multiple hostnames share a
common vendor, add all needed hostnames individually rather than assuming a root domain covers them.
When discovering a safe permission, suggest related safe commands in the same family:
docker volume ls → suggest docker volume inspectaws s3 ls → suggest aws s3 sync --dryrunnpm list → suggest npm outdated, npm auditpermissions-analyzer agent - Uses classification and deduplication to filter permissions during discovery/sync-permissions command - Indirectly uses this skill through the permissions-analyzer agent