소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 2월 28일 04:24
- 감지된 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 doc-ctr-validator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | doc-ctr-validator |
| description | Validate Data Contracts (CTR) documents against Layer 8 schema standards |
| tags | ["sdd-workflow","layer-8-artifact","quality-assurance"] |
| custom_fields | {"layer":8,"artifact_type":"CTR","architecture_approaches":["ai-agent-based","traditional-8layer"],"priority":"shared","development_status":"active","skill_category":"quality-assurance","upstream_artifacts":["CTR"],"downstream_artifacts":[],"version":"1.2","last_updated":"2026-02-11T18:00:00"} |
Validate Data Contracts (CTR) documents against Layer 8 schema standards.
Invoke when user requests validation of CTR documents or after creating/modifying CTR artifacts.
Schema: ai_dev_ssd_flow/08_CTR/CTR_SCHEMA.yaml
Layer: 8
Artifact Type: CTR
Nested Folder Rule: ALL CTR documents MUST be in nested folders regardless of size.
Required Structure:
| CTR Type | Required Location |
|---|---|
| Dual-File | docs/08_CTR/CTR-NN_{slug}/CTR-NN_{slug}.md + CTR-NN_{slug}.yaml |
Validation:
1. Check document is inside a nested folder: docs/08_CTR/CTR-NN_{slug}/
2. Verify folder name matches CTR ID pattern: CTR-NN_{slug}
3. Verify both .md and .yaml files exist with matching names
4. Parent path must be: docs/08_CTR/
Example Valid Structure:
docs/08_CTR/
├── CTR-01_f1_iam_api/
│ ├── CTR-01_f1_iam_api.md ✓ Valid
│ ├── CTR-01_f1_iam_api.yaml ✓ Valid (companion schema)
│ ├── CTR-01.R_review_report_v001.md
│ └── .drift_cache.json
├── CTR-02_f2_session_api/
│ ├── CTR-02_f2_session_api.md ✓ Valid
│ └── CTR-02_f2_session_api.yaml ✓ Valid
Invalid Structure:
docs/08_CTR/
├── CTR-01_f1_iam_api.md ✗ NOT in nested folder
├── CTR-01_f1_iam_api.yaml ✗ NOT in nested folder
Error Codes:
| Code | Severity | Description |
|---|---|---|
| CTR-E020 | ERROR | CTR not in nested folder (BLOCKING) |
| CTR-E021 | ERROR | Folder name doesn't match CTR ID |
| CTR-E022 | ERROR | File name doesn't match folder name |
| VAL-H001 | ERROR | Drift cache missing hash for upstream document |
| VAL-H002 | ERROR | Invalid hash format (must be sha256:<64 hex chars>) |
This check is BLOCKING - CTR must pass folder structure validation before other checks proceed.
Required custom_fields:
- document_type: ["ctr", "template"]
- artifact_type: "CTR"
- layer: 8
- architecture_approaches: [array format]
- priority: ["primary", "shared", "fallback"]
- development_status: ["active", "draft", "deprecated", "reference"]
Required tags:
- ctr (or ctr-template)
- layer-8-artifact
Forbidden tag patterns:
- "^ctr-document$"
- "^contract$"
- "^api-contract$"
- "^ctr-\\d{3}$"
File Format:
.md file.yaml fileCTR-NNN_descriptive_name.md + CTR-NNN_descriptive_name.yamlRequired Sections (12 Sections + 2 Optional Appendices):
| Section | Title | Required |
|---|---|---|
| Title | # CTR-NN: Title (H1) | MANDATORY |
| 1 | Document Control | MANDATORY |
| 2 | Context | MANDATORY |
| 3 | Contract Definition | MANDATORY |
| 4 | Requirements Satisfied | MANDATORY |
| 5 | Interface Definition | MANDATORY |
| 6 | Error Handling | MANDATORY |
| 7 | Quality Attributes | MANDATORY |
| 8 | Versioning Strategy | MANDATORY |
| 9 | Examples | MANDATORY |
| 10 | Verification | MANDATORY |
| 11 | Traceability | MANDATORY |
| 12 | References | MANDATORY |
Optional Appendices:
| Section | Title | Required |
|---|---|---|
| Appendix A | Alternatives Considered | OPTIONAL |
| Appendix B | Implementation Notes | OPTIONAL |
Document Control Required Fields:
Status Values:
Communication Patterns:
Error Code Format:
^[A-Z_]+$Versioning:
YAML Schema Requirements:
Layer 8 Cumulative Tags:
Downstream Expected:
Same-Type References:
| Code | Severity | Description |
|---|---|---|
| CTR-E001 | error | Missing required tag 'ctr' |
| CTR-E002 | error | Missing required tag 'layer-8-artifact' |
| CTR-E003 | error | Invalid document_type |
| CTR-E004 | error | Invalid architecture_approaches format |
| CTR-E005 | error | Forbidden tag pattern detected |
| CTR-E006 | error | Missing required section |
| CTR-E007 | error | Multiple H1 headings detected |
| CTR-E008 | error | Section numbering not sequential (1-12) |
| CTR-E009 | error | Document Control missing required fields |
| CTR-E010 | error | Missing companion YAML schema file |
| CTR-E011 | error | YAML schema is not valid OpenAPI 3.x or JSON Schema |
| CTR-E012 | error | Missing request/response schemas for endpoints |
| CTR-E013 | error | Missing Error Handling section |
| CTR-E014 | warning | File name does not match format |
| CTR-E015 | error | Contract Definition missing Provider/Consumer |
| CTR-E016 | error | Error Codes table missing |
| CTR-W001 | warning | Missing Context Problem Statement |
| CTR-W002 | warning | Missing success/failure examples |
| CTR-W003 | warning | Missing upstream tags (require 7) |
| CTR-W004 | warning | Missing Versioning Strategy Version Policy |
| CTR-W005 | warning | Error responses not defined in YAML schema |
| CTR-W006 | warning | Missing contract testing requirements |
| CTR-I001 | info | Consider adding performance metrics |
| CTR-I002 | info | Consider documenting migration strategy |
# Validate single CTR document (validates both .md and .yaml)
python ai_dev_flow/scripts/validate_ctr.py docs/08_CTR/CTR-001_example.md
# Validate all CTR documents
python ai_dev_flow/scripts/validate_ctr.py docs/08_CTR/
# Check with verbose output
python ai_dev_flow/scripts/validate_ctr.py docs/08_CTR/ --verbose
CTR Validation Report
=====================
Document: CTR-001_example.md
Status: PASS/FAIL
Dual-File Check:
- Markdown file: Present
- YAML schema file: Present/Missing
- Schema valid: Yes/No
Contract Structure:
- Provider defined: Yes/No
- Consumer defined: Yes/No
- Error codes table: Present/Missing
Schema Coverage:
- OpenAPI/JSON Schema: Valid/Invalid
- Request schemas: Complete/Incomplete
- Response schemas: Complete/Incomplete
- Error responses: Defined/Missing
Errors: N
Warnings: N
Info: N
[Details listed by severity]
.claude/skills/doc-ctr/SKILL.md.claude/skills/doc-naming/SKILL.md (ID and naming conventions)ai_dev_ssd_flow/08_CTR/CTR_MVP_VALIDATION_RULES.mdai_dev_ssd_flow/08_CTR/CTR_SCHEMA.yaml| Version | Date | Changes | Author |
|---|---|---|---|
| 1.2 | 2026-02-11 | Nested Folder Rule: Added Section 0 Folder Structure Validation (BLOCKING); CTR must be in docs/08_CTR/CTR-NN_{slug}/ folders; Added error codes CTR-E020, CTR-E021, CTR-E022 | |
| 1.1.0 | 2026-02-08 | Updated layer assignment from 9 to 8 per LAYER_REGISTRY v1.6; removed @impl from cumulative tags | System |
| 1.0.0 | 2025-01-15 | Initial validator skill definition | System |
| CTR-I003 |
| info |
| Consider adding alternative approaches |