playbooks

Create and manage trigger-action automation rules for handling incoming messages.

1|Updated Mar 30, 2026
One-click install
npx skills add https://github.com/Logarn/Worklin-ai --skill playbooks-logarn
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: playbooks
Source: https://github.com/Logarn/Worklin-ai/tree/main/assistant/src/config/bundled-skills/playbooks
Command: npx skills add https://github.com/Logarn/Worklin-ai --skill playbooks-logarn

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires drizzle-orm.

What problem does it solve? Manually deciding how to respond to every incoming message is repetitive and inconsistent. This Skill lets an assistant store reusable trigger-action rules so messages matching a pattern are handled automatically, drafted for review, or surfaced as notifications. ## Core Features & Use Cases - Rule Creation: Define playbooks with a trigger pattern, action, channel, category, autonomy level, and priority. - Rule Management: List, update, and delete playbooks with filtering by channel or category. - Autonomy Control: Choose between auto execution, draft-for-review, or notify-only handling per rule. - Use Case: Create a playbook with trigger "meeting request" and action "check calendar, propose 3 times" so every scheduling email gets a drafted reply without manual triage. ## Quick Start Ask the assistant to create a playbook that drafts a reply proposing meeting times whenever an incoming email looks like a meeting request.

Frequently Asked Questions about playbooks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an automation rule for incoming messages?▼

Use the playbook_create tool with a trigger pattern and a natural language action. You can optionally set the channel, category, autonomy level (auto, draft, or notify), and priority for the rule.

How do I list or filter existing message automation rules?▼

Use the playbook_list tool to show all playbooks, optionally filtered by channel or category. Results are sorted by priority and include each rule's ID, trigger, action, and autonomy level.

What autonomy levels are available for message handling rules?▼

Three levels are supported: auto executes the action immediately, draft prepares a response for user review (the default), and notify only alerts the user without taking action.

Can I update or delete a playbook rule after creating it?▼

Yes. Use playbook_update with the playbook ID to change any field, or playbook_delete to remove it. Deletion is a soft delete that marks the stored rule as gone.

What happens if I create a duplicate playbook rule?▼

The create tool checks stored rules for an exact matching configuration and returns the existing rule's ID instead of creating a duplicate. Updates are also blocked if they would collide with another rule.