You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@mind-your-now/openclaw-plugin

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mind-your-now/openclaw-plugin

OpenClaw plugin for Mind Your Now - AI-powered task and life management

latest
Source
npmnpm
Version
0.3.6
Version published
Weekly downloads
884
882.22%
Maintainers
1
Weekly downloads
 
Created
Source

@mind-your-now/openclaw-plugin

npm version License: MIT

OpenClaw plugin for Mind Your Now - AI-powered task and life management

Overview

This plugin integrates Mind Your Now (MYN) with OpenClaw agents, enabling AI assistants to manage tasks, calendar, habits, and more using the MYN productivity methodology.

Features

  • 12 powerful tools for complete MYN integration
  • Urgency-based prioritization following the MYN methodology
  • Shared API client with automatic authentication
  • Built-in skill companion for workflow guidance
  • TypeScript-first with full type safety
  • Comprehensive test coverage

Installation

# Install via OpenClaw
openclaw plugins install @mind-your-now/openclaw-plugin

# Or via npm
npm install @mind-your-now/openclaw-plugin

Configuration

Add to your OpenClaw configuration:

plugins:
  entries:
    myn:
      enabled: true
      config:
        apiKey: "your-myn-api-key"  # Required: API key with AGENT_FULL scope
        baseUrl: "https://api.mindyournow.com"  # Optional: defaults to production

Getting an API Key

  • Log into your Mind Your Now account
  • Go to Settings → API Keys
  • Generate a new key with AGENT_FULL scope

Tools Reference

myn_tasks

Manage tasks, habits, and chores.

action: list | get | create | update | complete | archive | search

Examples:

# List critical tasks
action: list
priority: CRITICAL
status: PENDING

# Create a task
action: create
id: "550e8400-e29b-41d4-a716-446655440000"  # Client-generated UUID
title: "Finish quarterly report"
taskType: TASK
priority: CRITICAL
startDate: "2026-03-01"
duration: "2h"

myn_briefing

Generate and manage Compass briefings.

action: status | generate | get | apply_correction | complete_session

Examples:

# Generate morning briefing
action: generate
context: "Morning planning session"
focusAreas:
  - work
  - health

myn_calendar

Manage calendar events and meetings.

action: list_events | create_event | delete_event | meetings

Examples:

# Create an event
action: create_event
title: "Team Standup"
startTime: "2026-03-01T09:00:00Z"
endTime: "2026-03-01T09:30:00Z"

myn_habits

Track habits, streaks, and reminders.

action: streaks | skip | chains | schedule | reminders

myn_lists

Manage grocery and shopping lists.

action: get | add | toggle | bulk_add | convert_to_tasks

Unified search across tasks, events, notes, and memories.

action: search
query: "quarterly report"
types:
  - task
  - event

myn_timers

Manage countdowns, alarms, and pomodoro sessions.

action: create_countdown | create_alarm | list | cancel | snooze | pomodoro

Examples:

# Create a pomodoro session
action: pomodoro
workDuration: 25
breakDuration: 5
sessions: 4

# Create a countdown
action: create_countdown
durationMinutes: 30
label: "Focus time"

myn_memory

Store and retrieve agent memories.

action: remember | recall | forget | search

Examples:

# Remember user preference
action: remember
content: "User prefers morning meetings before 10am"
category: user_preference
tags: ["meetings", "preferences"]
importance: medium

myn_profile

Manage user profile, goals, and preferences.

action: get_info | get_goals | update_goals | preferences

myn_household

Manage household members, invites, and chores.

action: members | invite | chores | chore_schedule | chore_complete

myn_projects

Manage projects and categories.

action: list | get | create | move_task

myn_planning

AI-powered planning and scheduling.

action: plan | schedule_all | reschedule

The MYN Methodology

Mind Your Now uses urgency-based prioritization rather than traditional importance-based systems.

Critical Now (≤ 5 items)

The "Going Home Test": "Would you work until midnight to finish this?"

  • If NO → It's not Critical Now
  • If YES → It belongs here
  • Maximum 5 items - More than 5 and things slip

Opportunity Now (≤ 20 items)

Tasks you'd like to do soon but aren't burning. The max you can scan in one glance.

Over-the-Horizon (10+ days out)

Items with start dates 10+ days in the future. This gets them OFF your mental radar so you can focus.

Parking Lot

Low urgency tasks that don't fit elsewhere.

Task Creation Rules

When creating tasks, you MUST provide:

FieldDescription
idClient-generated UUID (crypto.randomUUID())
taskTypeTASK, HABIT, or CHORE
priorityCRITICAL, OPPORTUNITY_NOW, OVER_THE_HORIZON, or PARKING_LOT
startDateISO 8601 date (YYYY-MM-DD)

Type-Specific Requirements:

  • HABIT: Must have recurrenceRule
  • CHORE: Must have recurrenceRule, always household-scoped

Duration Format: Use simple format like "30m", "1h", "1h30m" (NOT ISO PT prefix)

Skill Companion

This plugin includes a companion skill at skills/myn/SKILL.md that teaches agents MYN workflow patterns including:

  • The morning routine (Compass briefing)
  • Task creation best practices
  • Priority management
  • Common workflows

Development

# Clone the repository
git clone https://github.com/mindyournow/openclaw-plugin.git
cd openclaw-plugin

# Install dependencies
npm install

# Run tests
npm test

# Build
npm run build

# Type check
npm run typecheck

API Reference

MynApiClient

The shared API client used by all tools:

import { MynApiClient } from '@mind-your-now/openclaw-plugin';

const client = new MynApiClient(
  'https://api.mindyournow.com',
  'your-api-key'
);

// Make authenticated requests
const tasks = await client.get('/api/v2/unified-tasks');
const newTask = await client.post('/api/v2/unified-tasks', { ... });

Testing

The plugin includes comprehensive test coverage:

# Run all tests
npm test

# Run with coverage
npm run test -- --coverage

# Watch mode
npm run test:watch

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

License

MIT © Mind Your Now

Support

Built with ❤️ by the Mind Your Now team

Keywords

openclaw

FAQs

Package last updated on 09 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts