---
title: OMP (Oh My Pi) Integration
description: Use Siglata's Agent Plugins, skills, and hosted MCP tools within the Oh My Pi (OMP) harness.
sidebar:
  label: OMP (Oh My Pi)
  order: 6
---

[Oh My Pi (OMP)](https://github.com/oh-my-pi) is an agent coding harness built for fast, autonomous engineering workflows. Siglata provides native Agent Plugins and skills for OMP.

## Enabling the Siglata Plugin

Add Siglata to your OMP project configuration or global plugin roster (`~/.omp/plugins.json`):

```json
{
  "plugins": ["@siglata/files"],
  "mcpServers": {
    "siglata": {
      "type": "streamable-http",
      "url": "https://www.siglata.com/v1/mcp"
    }
  }
}
```

Or start the supported installer flow:

```bash
siglata install
```

## Available Skills

- **`files`**: Transactional plan & apply file operations for spreadsheet models and organization documents.
- **`diagnostics`**: Automated verification and integrity checking for repository worktrees.

## Running Autonomous Tasks

In OMP, agents can invoke Siglata skills in multi-step execution plans:

```bash
omp --task "Audit the financial workbook in Siglata, verify formulas against tests, and commit changes"
```
