소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 4월 28일 22:53
- 감지된 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 galahad명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | galahad |
| description | How to approach tests, types, lints, and coverage Use when this capability is needed. |
| metadata | {"author":"ad-sdl"} |
Based on Jonathan Lange's "The Galahad Principle": https://jml.io/galahad-principle/
Core idea: getting to 100% yields disproportionate value—especially simplicity and trust. When checks are truly "all green", any new failure is a strong, unambiguous signal; "absence of evidence becomes evidence of absence".
Before enforcing these rules strictly, understand the context:
tsconfig.json, pyproject.toml, .eslintrc, setup.cfg, mypy.ini for existing standardsany types, don't block progress on fixing all of themWhen working in a codebase that doesn't meet these standards:
TypeScript: Check tsconfig.json for strict, noImplicitAny, strictNullChecks. Match existing settings.
Python: Check for mypy.ini, pyproject.toml [tool.mypy], pyrightconfig.json. Note the strictness level.
General: Look at existing test files for patterns, existing code for style. When in doubt, match what's there.
Treat type errors, test failures, pre-commit hooks, lint errors, and coverage warnings as helpful feedback. Fix root causes.
any, sketchy unknown laundering, unchecked casts, as any, @ts-ignore, disabling strict mode, weakening compiler flags# type: ignore, # pyright: ignore, # mypy: ignore-errors, cast() without justification, Any in public APIs, disabling type checkersnoqa, pragma comments to silence legitimate warnings/* istanbul ignore */, /* c8 ignore */, artificial exclusions in config# pragma: no cover, # coverage: skip, excluding entire modules from coverage configIf the user explicitly asks for a type escape, to skip tests, or similar:
any here—this will need cleanup before the type system can catch errors in this area."The user owns the codebase. Your job is to inform, not obstruct.
Type safety is part of correctness and outranks tests.
When tradeoffs exist, prioritize in this order:
Breaking changes are acceptable when they improve verifiability and simplify the system, but:
Goal: a repo where "all green" is normal, and any new red is a loud, trustworthy signal.
✅ Meaningful tests:
❌ Not meaningful:
The test: "If this test failed, would I learn something useful about a real bug?"
Coverage comes from exercising real behavior, not from exclusion comments.
If a test is genuinely flaky:
If something is hard to test or hard to type, treat it as a design smell.
Refactor towards:
Record<string, any>dict[str, Any]Avoid injecting mocks via monkeypatching or replacing system utilities by default.
Preferred approach:
Examples:
TypeScript:
// ❌ Bad: hard-coded dependency, requires monkeypatching to test
function processOrder(orderId: string) {
const now = new Date();
const order = database.getOrder(orderId);
// ...
}
// ✅ Good: explicit dependencies
function processOrder(
orderId: string,
deps: { getTime: () => Date; getOrder: (id: string) => Order }
) {
const now = deps.getTime();
const order = deps.getOrder(orderId);
// ...
}
Python:
# ❌ Bad: hard-coded dependency, requires monkeypatching to test
def process_order(order_id: str) -> OrderResult:
now = datetime.now()
order = database.get_order(order_id)
# ...
# ✅ Good: explicit dependencies
def process_order(
order_id: str,
*,
get_time: Callable[[], datetime] = datetime.now,
get_order: Callable[[str], Order] = database.get_order,
) -> OrderResult:
now = get_time()
order = get_order(order_id)
# ...
Converted and distributed by TomeVault — claim your Tome and manage your conversions.