Skip to main content
ClaudeWave
Skill1.8k repo starsupdated 1mo ago

apple-notes

Manage Apple Notes via memo CLI: create, search, edit.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/Open-Curiosity/gini-agent /tmp/apple-notes && cp -r /tmp/apple-notes/skills/apple/apple-notes ~/.claude/skills/apple-notes
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Apple Notes

Use `memo` to manage Apple Notes directly from the terminal. Notes sync across all Apple devices via iCloud.

## Prerequisites

- **macOS** with Notes.app
- Install: `brew tap antoniorodr/memo && brew install antoniorodr/memo/memo`
- Grant Automation access to Notes.app when prompted (System Settings → Privacy → Automation)

## When to Use

- User asks to create, view, or search Apple Notes
- Saving information to Notes.app for cross-device access
- Organizing notes into folders
- Exporting notes to Markdown/HTML

## When NOT to Use

- Obsidian vault management → use the `obsidian` skill
- Bear Notes → separate app (not supported here)
- Quick agent-only notes → use the `memory` tool instead

## Quick Reference

### View Notes

```bash
memo notes                        # List all notes
memo notes -f "Folder Name"       # Filter by folder
memo notes -s "query"             # Search notes (fuzzy)
```

### Create Notes

```bash
memo notes -a                     # Interactive editor (optionally with -f "Folder Name")
```

`memo notes -a "Note Title"` is not supported by current memo versions. For a non-interactive quick note, use AppleScript instead:

```bash
osascript -e 'tell application "Notes"' \
  -e 'make new note with properties {name:"Test note", body:"Test note<br><br>Created by Gini as a test."}' \
  -e 'end tell'
```

### Edit Notes

```bash
memo notes -e                     # Interactive selection to edit
```

### Delete Notes

```bash
memo notes -d                     # Interactive selection to delete
```

### Move Notes

```bash
memo notes -m                     # Move note to folder (interactive)
```

### Export Notes

```bash
memo notes -ex                    # Export to HTML/Markdown
```

## Limitations

- Cannot edit notes containing images or attachments
- Interactive prompts require terminal access (use pty=true if needed)
- macOS only — requires Apple Notes.app

## Rules

1. Prefer Apple Notes when user wants cross-device sync (iPhone/iPad/Mac)
2. Use the `memory` tool for agent-internal notes that don't need to sync
3. Use the `obsidian` skill for Markdown-native knowledge management
dogfood-as-userSkill

How to dogfood and verify a Gini behavior change by driving a real chat turn as a real user would. Use when verifying that the agent reaches for a tool or path on its own — a behavioral steer, a new tool, an INSTRUCTIONS.md change, or a dispatch/provider/memory/skill change — or before claiming a steer "works". Enforces bare, uncoached prompts so the test measures the default, not instruction-following.

claude-codeSkill

Delegate coding work to Claude Code CLI for repository edits, reviews, and multi-turn implementation sessions.

codexSkill

Delegate coding work to the OpenAI Codex CLI for repository changes, reviews, and focused fixes.

giniSkill

Gini's self-knowledge: how Gini configures, extends, and operates on its own state via /api/* and registered tools. Load when the user asks Gini about its own capabilities or asks Gini to modify its own configuration.

apple-remindersSkill

Apple Reminders via remindctl: add, list, complete.

attachmentsSkill

Move bytes between Gini upload space, external URLs, and workspace files. Used by every attachment / file-upload / file-download flow regardless of the target system (Linear, GitHub, S3, Notion, etc.).

gini-bug-reportSkill

File a locally-captured, already-redacted Gini crash report as a GitHub issue, with the user's consent. Reads the pending crash queue and delegates the actual filing to the github-issues skill.

github-issuesSkill

Create, search, triage, label, assign, comment on, and close GitHub issues using the gh CLI, with a curl REST fallback.