Markdown Converter
Agent skill for markdown-converter
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
The Body Electric is an integrated health & fitness platform that provides a unified dashboard for tracking various health metrics through specialized mini-apps. Part of the Quarterly Systems ecosystem.
Target URL:
body.quarterly.systems (Cloudflare Pages)
the-body-electric/ ├── index.html # Main landing/coming soon page ├── apps/ # Mini-apps directory │ ├── mini-apps/ # Mini-apps registry and docs │ │ ├── index.json # App metadata and registry │ │ └── README.md # Mini-apps documentation │ └── weight-tracker/ # Weight tracking mini-app (placeholder) ├── CLAUDE.md # This file └── .git/ # Git repository
Each mini-app is a self-contained application within the
/apps directory:
/apps/mini-apps/index.json contains metadata for all appsWeight Tracker (Active)
/apps/weight-tracker/ (to be implemented)Future Mini-Apps (Planned)
File:
index.html
Simple static HTML page showing:
Deployment:
/index.html directlymain branch/apps/[app-name]//apps/mini-apps/index.json with app metadataEach mini-app should expose a data endpoint returning:
{ "appId": "app-name", "lastUpdated": "2025-10-03T12:00:00Z", "summary": { "currentValue": 82.5, "unit": "kg", "trend": "decreasing", "changeRate": -0.2 }, "recentData": [...], "meta": {...} }
# No build required - static HTML git add . && git commit -m "..." git push # Auto-deploys to body.quarterly.systems
Each mini-app may have its own build process:
cd apps/[app-name] npm run build # or app-specific build command # Deploy to subdirectory or subdomain as needed
quarterly-systems-landing/src/pages/apps.astro when adding major featuresEach mini-app chooses its own stack. Example (Weight Tracker):
undefined values - all document fields must have valid values/apps/weight-tracker/index.html) can be opened directly in the browserThis project has the Chrome DevTools MCP server installed, which allows Claude to:
Use this for testing web pages, debugging issues, and analyzing performance without manual intervention.