← Back to list

vibe-coding-yaml
by dredd-us
Web-based SSH session manager with chat-like interface
⭐ 0🍴 0📅 Nov 1, 2025
SKILL.md
name: vibe-coding-yaml description: AI outputs YAML descriptors instead of code, CLI executes deterministically for 100% auditable behavior with zero slop. Use when auditability is critical, generated code review needed, or deterministic execution required. YAML serves as intermediate representation. Triggers on "auditable generation", "YAML output", "deterministic execution", "code review", "vibe coding".
Vibe Coding YAML
Purpose
AI generates YAML descriptors instead of code, CLI executes deterministically for 100% auditable behavior with zero slop.
When to Use
- Auditable code generation
- Deterministic outputs required
- Generated code review needed
- UI component generation
- Infrastructure as code
- Compliance requirements
Core Instructions
Pattern
AI outputs YAML:
component:
type: Button
props:
text: "Submit"
variant: "primary"
onClick: "handleSubmit"
styles:
padding: "12px 24px"
borderRadius: "8px"
backgroundColor: "#007bff"
CLI executes deterministically:
generate-component component.yaml > Button.tsx
Benefits
- 100% auditable: Review YAML, not generated code
- Zero slop: Deterministic execution
- Versionable: YAML in Git
- Reproducible: Same YAML = same output
- Reviewable: Easier to review descriptors than code
Example Workflow
# 1. AI generates descriptor
descriptor = {
'type': 'api_endpoint',
'method': 'POST',
'path': '/users',
'handler': 'createUser',
'validation': {
'email': 'required|email',
'name': 'required|string'
}
}
# 2. Save as YAML
with open('endpoint.yaml', 'w') as f:
yaml.dump(descriptor, f)
# 3. Execute deterministically
$ generate-endpoint endpoint.yaml > routes/users.ts
# 4. Review YAML (not generated code)
$ git diff endpoint.yaml
Performance
- 100% auditable
- 0% slop rate
- Deterministic behavior
- Easy review process
Version
v1.0.0 (2025-10-23)
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon