← Back to Plugins
Tools

Pfc Openclaw

augmentedmike By augmentedmike 👁 42 views ▲ 0 votes

Prefrontal Cortex for OpenClaw — MiniClaw's cognitive architecture as a portable plugin. Persistent memory, kanban task management, and goal continuity for any OpenClaw agent.

GitHub

Install

openclaw plugins install pfc-openclaw

Configuration Example

{
  "agents": {
    "list": [
      {
        "id": "main",
        "tools": { "allow": ["pfc-openclaw"] }
      }
    ]
  }
}

README

# pfc-openclaw

> **The Prefrontal Cortex for OpenClaw** — MiniClaw's cognitive architecture as a portable plugin.

Give your OpenClaw agent persistent memory, a live task board, and goal continuity across sessions.

```bash
openclaw plugins install pfc-openclaw
```

---

## The Problem

Most AI agents are stateless. They start fresh every conversation, repeat the same research, lose all context, and can't build on previous work. They react. They don't plan.

## The Solution

The Prefrontal Cortex (PFC) is the cognitive layer that makes agents persistent. It gives your OpenClaw agent:

- 🗂️ **Kanban board** — live view of what's in progress, queued, blocked
- 🧠 **Knowledge base** — persistent memory that survives between sessions
- 📋 **Ticket notes** — decision audit trail, blocker logs, rationale
- 🎯 **Goal continuity** — work carries forward across sessions

## Install

**Prerequisites:**
1. [OpenClaw](https://openclaw.ai)
2. [MiniClaw](https://miniclaw.bot) — `curl -fsSL https://miniclaw.bot/install.sh | bash`

**Install the plugin:**
```bash
openclaw plugins install pfc-openclaw
```

**Enable the tools** in your OpenClaw config:
```json
{
  "agents": {
    "list": [
      {
        "id": "main",
        "tools": { "allow": ["pfc-openclaw"] }
      }
    ]
  }
}
```

## Tools

| Tool | What it does |
|------|-------------|
| `pfc_snapshot` | Full brain dump: kanban + KB stats |
| `pfc_kanban_board` | Board summary at a glance |
| `pfc_kanban_list` | Tasks by state |
| `pfc_kanban_show` | Full ticket detail |
| `pfc_kanban_add` | Create a ticket |
| `pfc_kanban_move` | Advance ticket state |
| `pfc_kanban_note` | Log a note on a ticket |
| `pfc_kanban_search` | Search tickets |
| `pfc_kb_search` | Search persistent memory |
| `pfc_kb_add` | Write to persistent memory |
| `pfc_kb_list` | Browse memory by category |

## The Cognitive Loop

```
ORIENT → PLAN → ACT → RECORD
```

Every session: start with `pfc_snapshot()`, reason about context, do work, record decisions with `pfc_kanban_note()` and `pfc_kb_add()`. Sessions accumulate value instead of resetting to zero.

## MiniClaw

This plugin is part of [MiniClaw](https://miniclaw.bot) — a prebuilt OpenClaw package with kanban brain, knowledge base, persona roles, and autonomous agent loops. It runs on a Mac Mini 24/7 for less than $0.10/day.

Install the brain, run MiniClaw.

## License

MIT
tools

Comments

Sign in to leave a comment

Loading comments...