# Laikaloop Workspace Skill

## Overview

Create and manage AI-powered business workspaces for autonomous company operations planning.

## Skill

**Name:** workspace  
**Type:** skill-md  
**Description:** Create a business workspace from a company name and vision, or by providing a website URL for automatic extraction. The workspace generates AI-driven plans, goals, artifacts, and reports.

## Usage

### Create a workspace

POST /api/companies with JSON body:

```json
{
  "name": "Company Name",
  "vision": "What the company is trying to achieve",
  "targetCustomer": "Who the product is for",
  "focus": "Current strategic focus area"
}
```

Or from a URL:

```json
{
  "websiteUrl": "https://example.com"
}
```

### Run the AI planning cycle

POST /api/companies/{slug}/runs to queue a new AI run.

Stream progress with GET /api/companies/{slug}/runs/{id}/stream (Server-Sent Events).

## Authentication

Session cookie required. Obtain a session via POST /api/auth/login.

## Artifacts produced

- CEO Plan
- Engineer Output
- Tweet Drafts
- Outbound Email Draft
- Campaign Angle
- Daily Report
