Metadata-Version: 2.4
Name: cogmyra
Version: 0.3.4
Summary: AI-powered personalized learning platform
License: MIT
Author: CogMyra Team
Author-email: dev@cogmyra.example
Requires-Python: >=3.11
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Typing :: Typed
Requires-Dist: typer (>=0.12)
Description-Content-Type: text/markdown

![CI](https://github.com/CogMyra/cogmyra/actions/workflows/ci.yml/badge.svg)

# CogMyra

AI-powered personalized learning platform.

## Vision

- Empower learners with adaptive, AI-driven experiences.
- Deliver meaningful insights for instructors and organizations.
- Build an open, developer-friendly platform.

## Mission

- Provide personalized learning paths and timely feedback.
- Make high-quality learning accessible and engaging for everyone.
- Enable rapid iteration via strong tooling, tests, and docs.

## Quick Start

Prerequisites: Python 3.11+ and Poetry installed.

```
poetry install
poetry run pytest -q
```

## Roadmap

- [ ] MVP features and data model
- [ ] Integrations and content ingestion
- [ ] Analytics and progress insights
- [ ] UI/UX and accessibility

## CLI

Install deps and run:

```bash
poetry install
poetry run cogmyra greet World
poetry run cogmyra mem add "example note" --user u1 --file mem.jsonl
poetry run cogmyra mem last --n 5 --file mem.jsonl
poetry run cogmyra mem search example --file mem.jsonl
git tag -a v0.2.0 -m "v0.2.0: add Typer CLI (greet + mem)"
git push origin v0.2.0
gh release create v0.2.0 --generate-notes
poetry build
poetry publish -r testpypi
python3 -m venv /tmp/cogvenv && source /tmp/cogvenv/bin/activate
python -m pip install --upgrade pip
python -m pip install -i https://test.pypi.org/simple cogmyra
cogmyra greet World


```
## Install from TestPyPI

```bash
python -m pip install \
  --index-url https://test.pypi.org/simple \
  --extra-index-url https://pypi.org/simple \
  cogmyra==0.2.5

```

