بنقرة واحدة
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.