# Motherlabs Research

Public research website for Motherlabs autonomous cognitive infrastructure.

## Repository

- **GitHub Pages:** https://motherlabs-ai.github.io
- **Repo:** github.com/MotherlabsAI/motherlabs.ai
- **Branch:** main

## Structure

```
motherlabs.ai/
├── _config.yml           # Jekyll configuration
├── index.md              # Homepage
├── README.md             # This file
├── _posts/               # Blog articles (Jekyll convention)
├── _docs/                # Technical documentation
└── .github/
    └── workflows/        # CI/CD workflows
```

## Jekyll Collections

### Posts (`_posts/`)

Blog articles published on `/blog/`. File naming: `YYYY-MM-DD-title.md`

### Docs (`_docs/`)

Technical documentation published on `/docs/`. Organized by topic.

## Development

### Local Build

```bash
# Install dependencies
bundle install

# Build and serve locally
bundle exec jekyll serve --host 0.0.0.0
```

Site runs on http://localhost:4000

### Publishing

Push to `main` branch. GitHub Actions automatically deploys to GitHub Pages.

## Content Guidelines

- **Posts:** Research, insights, announcements (include frontmatter with date, title, author)
- **Docs:** Architecture, operational procedures, technical references
- **Markdown:** Use standard Markdown with YAML frontmatter

## GitHub Pages Settings

- **Source:** Deploy from branch (main)
- **Folder:** / (root)
- **Custom Domain:** Not configured (uses motherlabs-ai.github.io)

## License

Research and technical content published by Motherlabs. See LICENSE file for details.

---

Built for OpenClaw operational infrastructure.

