mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-08-01 02:58:18 -05:00
- 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
31 lines
795 B
YAML
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" |