Files
TinyTorch/modules/01_setup/module.yaml
T
Vijay Janapa Reddi a16bfc8a32 feat: Complete educational module-developer framework with progressive disclosure
- Enhanced module-developer agent with Dr. Sarah Rodriguez persona
- Added comprehensive educational frameworks and Golden Rules
- Implemented Progressive Disclosure Principle (no forward references)
- Added Immediate Testing Pattern (test after each implementation)
- Integrated package structure template (📦 where code exports to)
- Applied clean NBGrader structure with proper scaffolding
- Fixed tensor module formatting and scope boundaries
- Removed confusing transparent analysis patterns
- Added visual impact icons system for consistent motivation

🎯 Ready to apply these proven educational principles to all modules
2025-09-28 05:33:38 -04:00

31 lines
795 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "setup"
title: "Setup & Environment"
description: "Development environment setup and basic TinyTorch functionality"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: []
enables: ["tensor", "activations", "layers"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.setup"
# File Structure - What files exist in this module
files:
dev_file: "setup_dev.py"
readme: "README.md"
tests: "inline"
# Educational Metadata
difficulty: "⭐"
time_estimate: "1-2 hours"
# Components - What's implemented in this module
components:
- "personal_info"
- "system_info"
- "setup_health"
- "DeveloperProfile"