Skip to main content

taste-review

Ask Claude Code to make a taste-driven call on something ambiguous — UI polish, prose phrasing, naming, formatting. Use when you'd otherwise guess.

설치로 이동

소스 정보

저장소
bholmesdev/hubble.md
최근 소스 활동
2026년 7월 24일 21:03
감지된 SKILL.md 언어
영어
스타
1,475
포크
95

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
taste-review
description
Ask Claude Code to make a taste-driven call on something ambiguous — UI polish, prose phrasing, naming, formatting. Use when you'd otherwise guess.
You hit something fuzzy and need a judgment call. Shell out to the `claude` CLI to get one back, then apply it. Run from the repo root so `claude` can read files by relative path: Run outside the sandbox when required, requesting reusable approval for the `claude -p` prefix. On macOS, use the optional long-lived subscription OAuth token from Keychain when present. Otherwise, fall back to that machine's normal Claude authentication. ```bash prompt="$(cat <<'EOF' <your question, stated plainly> Files to consider: <paths, if any> Weigh a few options, give your recommendation, and share others as alternatives considered. Length is up to you — a design call may warrant several paragraphs; a naming call may not. Match the depth to the decision. EOF )" if [[ "$(uname)" == "Darwin" ]] && oauth_token="$( security find-generic-password \ -a "$USER" \ -s "Claude Code skill OAuth" \ -w 2>/dev/null )"; then CLAUDE_CODE_OAUTH_TOKEN="$oauth_token" claude -p "$prompt" else claude -p "$prompt" fi ```
GitHub에서 보기