An advanced AI-powered system for creating personalized Active Inference and Free Energy Principle curricula Quick links: activeinference.institute β’ activities.activeinference.institute β’ x.com/InferenceActive β’ discord.activeinference.institute β’ donate.activeinference.institute β’ youtube.com/c/ActiveInference β’ video.activeinference.institute
START combines optional live research capabilities with sophisticated content generation to produce personalized educational materials for Active Inference and the Free Energy Principle. Every generated artifact carries an evidence status; synthetic foundation material is not presented as live research.
π Start here: here.md β interactive landing for the full experience. Also see the Docs Hub and this README for GitHub-oriented navigation.
- GitHub Pages site: activeinferenceinstitute.github.io/Start
- Docs Hub: docs/README.md
- Start Here (interactive): here.md
- Getting Started: docs/getting_started.md
- Environment Setup: docs/environment.md
- Pipeline Overview: docs/pipeline.md
- Testing Guide: docs/TESTING.md
- Configuration Reference: docs/configuration.md
- Examples & Outputs: docs/examples.md
- Clone Management: docs/clones.md
- Conventions: docs/conventions.md
- User Usage Guide (GitHub): https://github.com/ActiveInferenceInstitute/Start/blob/main/learning/curriculum_creation/USAGE_GUIDE.md
- API Integration (GitHub): https://github.com/ActiveInferenceInstitute/Start/blob/main/learning/curriculum_creation/README.md
- Matrix Terminal UI (end-to-end interactive):
./run.sh- Documentation Website (serve, build, deploy):
# Serve locally with live reload
./run_docs.sh --serve
# Build static site to ./site and open it
./run_docs.sh --build
# Deploy to GitHub Pages and open the URL
./run_docs.sh --deploy- High-level docs live under
docs/. Each page is modular and links to deeper guides. - Start with the Docs Hub, then dive into:
- Getting Started β install, first research session, generate outputs
- Environment β prerequisites, API keys, CI parity
- Pipeline β architecture, stages, data layout
- Testing β policies, markers, offline/CI rules
- Configuration β YAML schemas and CLI usage
- Examples β where to find generated artifacts
graph LR
A[START] --> R[Research]
A --> C[Content Generation]
A --> V[Visualizations]
A --> T[Translation]
A --> Q[Quality & Testing]
R --> R1[Perplexity API]
C --> C1[OpenRouter LLMs]
V --> V1[Charts & Mermaid]
T --> T1[Configured languages]
Q --> Q1[pytest, ruff, black]
click R "docs/pipeline.md" "Pipeline"
click Q "docs/TESTING.md" "Testing"
click V "docs/pipeline.md" "Visualizations"
click T "docs/pipeline.md" "Translation"
- Live Domain Analysis: Optional research using Perplexity API for current industry insights
- Personalized Learner Profiling: In-depth analysis of individual learning needs and backgrounds
- Configurable Professional Domains: Life sciences, technology, business, healthcare, education, and more
- Configuration-Driven: YAML-based target management with priority and category filtering
- Enhanced Error Handling: Robust validation and retry mechanisms for reliable operation
- Structured Curricula: Prompt-guided learning programs whose actual scope is checked by output quality gates
- Prompt-defined Modules: structured learning units with integrated assessment prompts; generated scope is recorded and requires review
- Prompt-Guided Analyses: Research and personalization prompts with explicit length, structure, citation, and evidence checks
- Enhanced Prompts: Section frameworks with validation and quality assurance; generated length is not a factual guarantee
- Content Quality Validation: Automatic checking for completeness and consistency
- Data Charts: PNG visualizations of curriculum metrics and learning analytics
- Process Diagrams: Mermaid flowcharts showing curriculum structure and pathways
- Interactive Elements: Visual learning aids and conceptual frameworks
- Metrics Dashboard: Comprehensive curriculum analysis and reporting
- Configured Languages: Language and script mappings are loaded from
data/config/languages.yaml - Cultural Adaptation: Full localization beyond literal translation
- Quality Boundaries: Structural, parity, and script checks are automated; fluency and technical accuracy still require human review
- Smart Language Handling: Configured language/script mappings with explicit warnings for unsupported or unverified outputs
- Test Suite: Unit, integration, CLI, GUI, repository, and pipeline coverage; run
uv run pytest --collect-only -qfor the current count - Provider Validation: Real local HTTP protocol tests by default; live provider probes are opt-in
- Error Scenario Coverage: Comprehensive testing of edge cases and error conditions
- Continuous Integration: Ruff, Black, shell syntax, repository validation, all-
srccoverage, and strict docs gates - Reviewable methods: First-principles constraints, falsifiable engineering hypotheses, and a manuscript-facing evidence note
See docs/getting_started.md for full command lists and script paths.
- Docs Hub:
docs/README.md - Getting Started:
docs/getting_started.md - Configuration:
docs/configuration.md - Examples & Outputs:
docs/examples.md - Pipeline & Architecture:
docs/pipeline.md - Environment & CI:
docs/environment.md - Testing Policy:
docs/TESTING.md - Clone Management:
docs/clones.md
- Python 3.10+ (3.11+ recommended)
- uv package manager
- Perplexity API key for research
- OpenRouter API key for content generation
# Install uv package manager
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone and set up project
git clone https://github.com/ActiveInferenceInstitute/Start.git
cd Start
# Install dependencies
uv sync --all-extras --dev
# Download language models
uv run python -m spacy download en_core_web_sm
# Configure API keys
cp .env.example .env
$EDITOR .env # Add PERPLEXITY_API_KEY and OPENROUTER_API_KEY
# Verify installation
uv run pytest -q
uv run ruff check .
uv run black --check .See docs/getting_started.md for first-run commands, generation steps, and exploring outputs.
See docs/configuration.md for YAML examples and CLI usage.
- Domain Reports: Prompt-targeted professional landscape analysis, validated for structure and provenance
- Entity Profiles: Prompt-targeted personalized learning strategies, validated before publication
- Evidence-labeled Data: Live, source-material, synthetic, and offline-fixture outputs remain distinguishable
- Source-aware Generation: Provider, model, prompt, input hashes, citations, and quality status are recorded when available
- Structured Programs: Comprehensive learning experiences whose sections and quality status are recorded in manifests
- Modular Design: Prompt-defined frameworks with integrated assessments where the generated artifact passes validation
- Practical Applications: Real-world case studies and hands-on exercises
- Professional Integration: Career development and workplace applications
- Full Localization: Examples adapted to target cultures
- Technical Accuracy: Precise translation of scientific terms
- Educational Quality: Maintains pedagogical effectiveness across languages
- Review Required: Translation completeness and script checks are automated; publication requires qualified language review
flowchart TD
A[data/config/*] --> B[Research]
B --> C[Curriculum]
C --> D[Visualizations]
D --> E[Translations]
E --> F[data/* outputs]
click B "docs/pipeline.md" "Pipeline"
click F "docs/README.md" "Docs Hub"
See docs/pipeline.md for architecture, templates, and data flow.
data/prompts/
βββ research_domain_analysis.md # 6-section domain framework (3K-5K words)
βββ research_domain_curriculum.md # Prompt-defined curriculum generation framework
βββ research_entity.md # 6-section personalization (5K-8K words)
βββ curriculum_section.md # Prompt target for a substantial module (not a duration guarantee)
βββ translation.md # 7-section multilingual framework
- Comprehensive Testing: pytest with TDD approach
- Code Quality: ruff linting and black formatting
- API Integration: Real-time validation with Perplexity and OpenRouter
- Content Standards: Structural, provenance, and quality-gate validation with explicit human-review boundaries
See docs/examples.md for example outputs and paths.
- University Courses: Neuroscience, psychology, AI program curricula
- Professional Development: Corporate training for data science, healthcare, management
- Research Training: Graduate-level courses with theory and implementation
- Self-Directed Study: Personalized curricula based on background and goals
- Career Transition: Bridge existing expertise to Active Inference applications
- Academic Research: Foundation for thesis work and research projects
- Technology Companies: AI ethics, decision frameworks, intelligent systems
- Healthcare Organizations: Evidence-based practice, clinical decision support
- Consulting Firms: Advanced analytical frameworks, problem-solving methodologies
- See the Docs Hub for the complete documentation:
docs/README.md - Environment Setup:
docs/environment.md - Pipeline Overview:
docs/pipeline.md - Methods & evidence protocol:
docs/methods.md - Manuscript-facing engineering note:
docs/manuscript.md - Usage Guide:
learning/curriculum_creation/USAGE_GUIDE.md
- API Documentation:
learning/curriculum_creation/README.md - Configuration Reference & Docs Hub:
docs/README.md - Clone Management:
docs/clones.md
- Prompt Engineering: Custom templates in
data/prompts/ - Extension Development: Adding new domains and entities
- Integration Patterns: Incorporating START into existing workflows
- Website: activeinference.institute
- Activities: activities.activeinference.institute
- X (Twitter): x.com/InferenceActive
- Discord: discord.activeinference.institute
- Donate: donate.activeinference.institute
- YouTube: youtube.com/c/ActiveInference
- Livestreams: video.activeinference.institute
See also: implementation repos and knowledge resources in docs/clones.md.
The actionable forward backlog is maintained in TODO.md, the sole canonical list of future work.
We welcome contributions! See our Contributing Guide for details on:
- Code style and development process
- Pull request procedure and review guidelines
- Community guidelines and communication
- Testing requirements and quality standards
# Set up development environment
uv sync --all-extras --dev
# Run quality checks
uv run pytest -q # Test suite
uv run ruff check . # Linting
uv run black --check . # Formatting
# Stable installed entry points
uv run start-curriculum --help
uv run start-clone --help
uv run start-validate-outputs --checkThe project includes a comprehensive testing framework covering:
- Unit Tests: Individual component testing with local protocols and temporary data
- Integration Tests: End-to-end pipeline validation
- Provider Tests: Local HTTP completion servers exercising the production client protocol
- Error Handling: Edge cases and failure scenarios
- Repository Gates: Authored terminology, stale path, Markdown link, and tracked JSON/YAML/TOML validation
# Run full test suite
uv run pytest -q
# Run specific test categories
uv run pytest -m "not integration" # Skip integration tests
uv run pytest -m integration # Only integration tests
uv run pytest tests/test_domain.py # Specific test file
# Branch-aware release coverage gate
uv run pytest --cov=src --cov-branch --cov-report=term-missing --cov-fail-under=90 -q
# Repository validation gate
uv run python scripts/validate_repository.py
# Set environment for GUI-free testing
export MPLBACKEND=Agg
uv run pytest -q- Code Quality: Black formatting, Ruff linting, comprehensive type hints
- Testing: Write tests for all new functionality using real local I/O
- Documentation: Include docstrings and update relevant docs
- Error Handling: Implement graceful degradation and user-friendly messages
βββ src/ # Core system modules
β βββ common/ # Shared utilities
β βββ perplexity/ # API integrations
β βββ system/ # System utilities
β βββ terminal/ # CLI components
βββ learning/ # Educational pipeline scripts
βββ tests/ # Test suite (run pytest --collect-only for the current count)
βββ docs/ # Documentation
β βββ TESTING.md # Testing guide
β βββ environment.md # Setup instructions
βββ data/ # Generated content storage
For detailed testing information, see docs/TESTING.md.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License - see the LICENSE file for details.
This repository is archived and citable via Zenodo: 10.5281/zenodo.17047617
If you use START in academic work, please cite:
Daniel Ari Friedman, & Active Inference Institute. (2025).
ActiveInferenceInstitute/Start: v1 (v1). Zenodo.
https://doi.org/10.5281/zenodo.17047617
START: Scalable, Tailored Active-inference Research & Training
Active Inference Institute (2024)
https://github.com/ActiveInferenceInstitute/Start
Licensed under Creative Commons Attribution-ShareAlike 4.0 International
- Active Inference Institute for foundational research and community support
- Contributors to pymdp, ActiveInference.jl, RxInfer.jl, and related implementation packages
- Educational partners providing feedback and validation for curriculum effectiveness
- Open source community for tools, libraries, and collaborative development
- GitHub Issues: Project Issues
- Community: Active Inference Institute
- Email: blanket@activeinference.institute
Together we're building tools to make Active Inference accessible and adaptable across domains, languages, and perspectives. START represents a new paradigm in AI-powered educational content creation - join us in making advanced neuroscience and cognitive science accessible to learners worldwide!
π Explore Documentation | π Get Started | π€ Join Community
- 2025: 2025.activeinference.institute
- Active Blockference: active-blockference.activeinference.institute
- Activities: activities.activeinference.institute
- Affordances: affordances.activeinference.institute
- BoD: bod.activeinference.institute
- Discord: discord.activeinference.institute
- Donate: donate.activeinference.institute
- Ecosystem: ecosystem.activeinference.institute
- EduActive: eduactive.activeinference.institute
- Fellows: fellows.activeinference.institute
- Fellowship: fellowship.activeinference.institute
- Intern: intern.activeinference.institute
- Knowledge Engineering: knowledge-engineering.activeinference.institute
- Measure: measure.activeinference.institute
- Mentorship: mentorship.activeinference.institute
- Newsletter: newsletter.activeinference.institute
- Obsidian: obsidian.activeinference.institute
- Ontology: ontology.activeinference.institute
- Partnership: partnership.activeinference.institute
- Partnerships: partnerships.activeinference.institute
- PayPal: paypal.activeinference.institute
- Prepare: prepare.activeinference.institute
- Projects: projects.activeinference.institute
- ReInference: reinference.activeinference.institute
- RxInfer: rxinfer.activeinference.institute
- SAB: sab.activeinference.institute
- Strategy: strategy.activeinference.institute
- Support: support.activeinference.institute
- Symposium: symposium.activeinference.institute
- Textbook Group: textbook-group.activeinference.institute
- TNB: tnb.activeinference.institute
- Video: video.activeinference.institute
- Volunteer: volunteer.activeinference.institute
- Wave Hypothesis: wave-hypothesis.activeinference.institute
- Weekly: weekly.activeinference.institute
- Welcome: welcome.activeinference.institute