👋 Join the community of builders & lifestyle enthusiasts
Attach your own markdown curriculum (an Obsidian folder, a git repo) to a plan and the AI coach reads it when planning your weeks — your files stay the source of truth for content, tracking.so keeps the accountability, streaks, and visuals. Works over MCP, so Claude Code / Cursor can author the curriculum and push it in one session.
→ Setup guide (MCP, API, script)
To run the project locally, follow these steps:
-
Navigate to the frontend directory and start the development server:
cd frontend yarn dev -
Navigate to the backend directory and start the backend server:
cd backend python -m main
-
Ensure all dependencies are installed beforehand.
frontend
yarn
backend We recommended to use a local virtual environment (.venv):
python -m venv .venv source .venv/bin/activate pip install -r requirements.txt -
Make sure you have a ngrok account and auth token setup
-
Make sure you create and link your clerk account and link the necessary env vars
- frontend
CLERK_SECRET_KEYCLERK_JWT_PUBLIC_KEY
- backend
CLERK_JWT_PUBLIC_KEY(get this in API Keys > Show JWT Public Key)
- frontend