원클릭으로
source-driven-development
Ground implementation in authoritative sources — specs, RFC, official docs — not assumptions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Ground implementation in authoritative sources — specs, RFC, official docs — not assumptions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build UIs that work for all users including keyboard navigation, screen readers, and WCAG 2.2
Design multi-agent systems with robust tool interfaces, state management, and failure handling
Build ML systems with disciplined training, evaluation, deployment, and safety practices
Design APIs that are stable, ergonomic, and evolvable
Design systems at the right scale with explicit trade-off documentation
Design services that are reliable, observable, secure, and maintainable
| name | source-driven-development |
| description | Ground implementation in authoritative sources — specs, RFC, official docs — not assumptions |
| difficulty | senior |
| domains | ["general"] |
Assumptions are expensive. This skill requires every non-obvious implementation decision to be traceable to an authoritative source: the spec, the RFC, the official documentation, the ticket. Without a source, it's a guess.
What standard, protocol, API, or requirement are you implementing? What is the authoritative source?
For protocols: read the RFC. For APIs: read the official API documentation (not a blog post). For requirements: re-read the spec.
For non-obvious behavior: add a comment citing the source. Example:
# Per RFC 7519 Section 4.1.4, exp claim is NumericDate (seconds since epoch)
# https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.4
What does the source not specify? These are places where you must make explicit decisions. Document them as decisions, not silently.
After implementation: validate your implementation against the authoritative source. For protocols: test against a reference implementation.