/innovation_studio/
๐ Innovation Studio LMS Curriculum¶
Welcome to the Cortado Group Innovation Studio training archive. This repository contains structured training modules, lessons, assignments, and quizzes designed for TalentLMS import.
Viewing Mermaid Diagrams¶
Mermaid diagrams appear throughout this curriculum. On GitHub they render automatically. Locally you can install a Mermaid plugin for VS Code or use mermaid.live.
See Lesson 00 โ Visualizing with Mermaid for a quick primer.
The curriculum is broken into four core modules (3 weeks each), each focused on a critical stage of intern development โ from technical foundations to AI, Agile, and productization.
๐งญ Course Overview¶
| Module | Focus Area | Duration | Key Skills |
|---|---|---|---|
| M01 | Software Development | Weeks 1โ3 | Python, SQL, Algorithms, OOP, Testing |
| M02 | AI-Assisted Development | Weeks 4โ6 | Prompt Engineering, OpenAI API, Refactoring |
| M03 | Agile and QA | Weeks 7โ9 | Agile, Kanban, Testing Lifecycle, Peer Review |
| M04 | From Concept to Market | Weeks 10โ12 | MVP Scoping, GTM Strategy, Technical Demos |
Each module includes:
- ๐ Lessons (video, slides, readings)
- ๐งช Quizzes (multiple choice, fill-in-the-blank)
- ๐ Assignments (code submission, documentation)
- ๐ Badges and certificates (TalentLMS-integrated)
- ๐งต Slack prompts for discussion, daily check-ins
๐ Folder Structure¶
/innovation_studio/
โ
โโโ M01_Software_Development/
โ โโโ lessons/
โ โ โโโ 00_mermaid_basics.md
โ โ โโโ 01_markdown_fundamentals.md
โ โ โโโ 02_python_basics.md
โ โ โโโ 03_sql_foundations.md
โ โ โโโ 04_oop_and_algorithms.md
โ โ โโโ 05_solid_design_principles.md
โ โ โโโ 06_csv_import_export.md
โ โ โโโ 07_env_files.md
โ โ โโโ 08_init_py.md
โ โ โโโ 09_ajax_basics.md
โ โ โโโ 10_ui_design_patterns.md
โ โโโ quizzes/
โ โ โโโ 01_python_quiz.json
โ โ โโโ 02_sql_quiz.json
โ โโโ assignments/
โ โ โโโ crud_project_instructions.md
โ โ โโโ crud_project_starter.md
โ โ โโโ requirements_spec_template.md
โ โโโ media/
โ โโโ 01_python_video.mp4
โ โโโ 02_sql_schema.mmd
โ
โ
โโโ M02_AI_Assisted_Developer/
โ โโโ lessons/
โ โ โโโ 01_intro_to_llms.md
โ โ โโโ 02_prompt_engineering.md
โ โ โโโ 03_using_openai_api.md
โ โโโ quizzes/
โ โ โโโ 01_prompting_basics.json
โ โโโ assignments/
โ โ โโโ ai_refactor_exercise.md
โ โโโ media/
โ โโโ 01_llm_demo.mp4
โ โโโ 02_prompt_examples.md
โ
โโโ M03_Agile_QA/
โ โโโ lessons/
โ โ โโโ 01_agile_kanban.md
โ โ โโโ 02_bug_reporting.md
โ โ โโโ 03_browser_console_debugging.md
โ โ โโโ 04_tdd_unit_testing.md
โ โ โโโ 05_cyclomatic_complexity.md
โ โ โโโ 06_testing_types.md
โ โโโ quizzes/
โ โ โโโ 01_qa_basics.json
โ โโโ assignments/
โ โ โโโ peer_review_checklist.md
โ โ โโโ unit_test_writeup.md
โ โโโ media/
โ โโโ kanban_flow_example.mmd
โ
โโโ M04_From_Concept_To_Market/
โ โโโ lessons/
โ โ โโโ 01_mvp_definition.md
โ โ โโโ 02_gtm_strategy.md
โ โ โโโ 03_crm_hierarchy.md
โ โโโ assignments/
โ โ โโโ capstone_guide.md
โ โ โโโ business_case_template.md
โ โโโ quizzes/
โ โ โโโ 01_gtm_quiz.json
โ โโโ media/
โ โโโ 01_capstone_demo_day.mp4
โ โโโ 02_slide_pitch_template.pptx
โ
โโโ common_assets/
โ โโโ badge_icons/
โ โ โโโ python_mastery.svg
โ โ โโโ ai_prompting_pro.svg
โ โโโ certificate_template.md
โ โโโ orientation_slides.md
โ
โโโ README.md
๐ Deployment Instructions¶
-
Use TalentLMS bulk import tools to upload lessons and quizzes by folder.
-
Assign each intern to the full 4-module course path.
-
Use built-in gamification to assign badges for each module.
-
Upload
orientation_slides.mdas part of the onboarding track. -
Encourage daily Slack check-ins aligned with module channels (
#m01-python,#m02-ai-dev, etc.).
๐งฉ Optional Enhancements¶
-
Streamlit Dashboards: Show cohort progress, quiz scores, or assignment completion.
-
GitHub Integration: Link assignment repos for real-world collaboration and PR-based feedback.
-
Notebook Delivery: Deliver
.ipynbversions of code exercises for Jupyter-based environments.
๐ Building the Site with MkDocs¶
This repo contains a mkdocs.yml file that organizes every module for easy navigation as a static site.
Preview Locally¶
- Install MkDocs with
pip install mkdocs. - Run
mkdocs servefrom the repository root. - Open
http://127.0.0.1:8000to view the docs with live reload.
๐ Deploy to Production¶
After editing, deploy by:
- Building the site:
mkdocs build --clean
scp -r site/* root@162.243.115.198:/var/www/innovationstudio/
๐ฃ Questions or Contributions?¶
All mentors and contributors should edit or submit new modules using pull requests. Use the Slack channel #studio-curriculum-dev to coordinate content reviews.