pawmode 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +337 -0
- package/dist/index.js +2925 -0
- package/dist/permissions-BHOAvP8i.js +55 -0
- package/dist/permissions-CoaVX2ZM.js +3 -0
- package/dist/skills-CJ_pyPlv.js +53 -0
- package/dist/skills-DwMXaN3R.js +3 -0
- package/package.json +60 -0
- package/skills/c-ai/SKILL.md +68 -0
- package/skills/c-apps/SKILL.md +42 -0
- package/skills/c-bluetooth/SKILL.md +42 -0
- package/skills/c-briefing/SKILL.md +80 -0
- package/skills/c-browser/SKILL.md +66 -0
- package/skills/c-calendar/SKILL.md +47 -0
- package/skills/c-core/SKILL.md +83 -0
- package/skills/c-cron/SKILL.md +58 -0
- package/skills/c-display/SKILL.md +45 -0
- package/skills/c-email/SKILL.md +54 -0
- package/skills/c-files/SKILL.md +52 -0
- package/skills/c-github/SKILL.md +61 -0
- package/skills/c-jira/SKILL.md +66 -0
- package/skills/c-lights/SKILL.md +55 -0
- package/skills/c-linear/SKILL.md +64 -0
- package/skills/c-location/SKILL.md +47 -0
- package/skills/c-memory/SKILL.md +86 -0
- package/skills/c-messaging/SKILL.md +51 -0
- package/skills/c-music/SKILL.md +59 -0
- package/skills/c-network/SKILL.md +71 -0
- package/skills/c-notes/SKILL.md +45 -0
- package/skills/c-notify/SKILL.md +39 -0
- package/skills/c-notion/SKILL.md +53 -0
- package/skills/c-obsidian/SKILL.md +63 -0
- package/skills/c-research/SKILL.md +45 -0
- package/skills/c-screen/SKILL.md +55 -0
- package/skills/c-secrets/SKILL.md +62 -0
- package/skills/c-slack/SKILL.md +46 -0
- package/skills/c-social/SKILL.md +57 -0
- package/skills/c-speakers/SKILL.md +59 -0
- package/skills/c-system/SKILL.md +72 -0
- package/skills/c-tasks/SKILL.md +60 -0
- package/skills/c-telegram/SKILL.md +66 -0
- package/skills/c-tracking/SKILL.md +46 -0
- package/skills/c-video/SKILL.md +56 -0
- package/skills/c-voice/SKILL.md +58 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: c-tasks
|
|
3
|
+
description: Manage tasks across Todoist (todoist-cli), Things 3 (things-cli), and Taskwarrior (task). Detects which tool is installed. Supports adding, listing, completing, and filtering tasks across all three managers.
|
|
4
|
+
tags: [tasks, todoist, things, taskwarrior, productivity, todo]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
This skill supports three task managers. Detect which is available with `which todoist-cli things-cli task` and use accordingly.
|
|
8
|
+
|
|
9
|
+
## Todoist — `todoist-cli`
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
todoist-cli list # List today's tasks
|
|
13
|
+
todoist-cli list --project "Work" # Tasks in a project
|
|
14
|
+
todoist-cli add "Task name" --due today --priority 2
|
|
15
|
+
todoist-cli add "Task" --project "Work" --label "urgent"
|
|
16
|
+
todoist-cli complete <task-id>
|
|
17
|
+
todoist-cli delete <task-id>
|
|
18
|
+
todoist-cli projects # List all projects
|
|
19
|
+
todoist-cli search "query"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Things 3 — `things-cli`
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
things-cli today # Today's tasks
|
|
26
|
+
things-cli list # All tasks
|
|
27
|
+
things-cli list --area "Work"
|
|
28
|
+
things-cli add "Task name" --when today --tag "urgent"
|
|
29
|
+
things-cli add "Task" --project "Project Name" --deadline "2026-03-01"
|
|
30
|
+
things-cli complete "Task name"
|
|
31
|
+
things-cli projects # List projects
|
|
32
|
+
things-cli areas # List areas
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Taskwarrior — `task`
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
task list # List pending tasks
|
|
39
|
+
task next # Highest-priority next task
|
|
40
|
+
task add "Task name" due:tomorrow pri:H project:work
|
|
41
|
+
task add "Task" +tag1 +tag2
|
|
42
|
+
task <id> done # Complete a task
|
|
43
|
+
task <id> delete
|
|
44
|
+
task <id> modify priority:H
|
|
45
|
+
task project:work list # Filter by project
|
|
46
|
+
task +OVERDUE list # Overdue tasks
|
|
47
|
+
task summary # Project summary
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Usage Guidelines
|
|
51
|
+
|
|
52
|
+
- Check which tool is installed before running commands.
|
|
53
|
+
- If multiple are installed, ask the user which they prefer or use the one matching their request context.
|
|
54
|
+
- For natural language dates, Todoist and Things handle them natively; Taskwarrior uses `due:YYYY-MM-DD` or `due:tomorrow`.
|
|
55
|
+
|
|
56
|
+
## Notes
|
|
57
|
+
|
|
58
|
+
- Todoist requires API token configured via `todoist-cli auth`.
|
|
59
|
+
- Things 3 requires macOS and the Things 3 app.
|
|
60
|
+
- Taskwarrior stores tasks locally in `~/.task/`.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: c-telegram
|
|
3
|
+
description: Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
|
|
4
|
+
tags: [telegram, messaging, communication, bot, bridge]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Telegram Bridge
|
|
8
|
+
|
|
9
|
+
Full bidirectional Claude-from-Telegram. Send messages from your phone, get responses from Claude with all your skills available.
|
|
10
|
+
|
|
11
|
+
## How It Works
|
|
12
|
+
|
|
13
|
+
The OpenPaw Telegram bridge (`openpaw telegram`) connects a Telegram bot to Claude via the Agent SDK. Every skill installed in `~/.claude/skills/` is available as a bot command.
|
|
14
|
+
|
|
15
|
+
## Starting the Bridge
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
openpaw telegram
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This starts a long-running process. Keep it open in a terminal or tmux session.
|
|
22
|
+
|
|
23
|
+
## Bot Commands
|
|
24
|
+
|
|
25
|
+
Built-in:
|
|
26
|
+
- `/start` — show status and available skills
|
|
27
|
+
- `/model sonnet|opus|haiku` — switch Claude model
|
|
28
|
+
- `/skills` — list installed skills
|
|
29
|
+
- `/stop` — cancel current operation
|
|
30
|
+
- `/clear` — reset conversation
|
|
31
|
+
|
|
32
|
+
Skill commands (auto-generated from your installed skills):
|
|
33
|
+
- `/email check my inbox`
|
|
34
|
+
- `/music play some jazz`
|
|
35
|
+
- `/notes add grocery list`
|
|
36
|
+
- `/calendar what's on tomorrow`
|
|
37
|
+
- (any installed skill becomes a /command)
|
|
38
|
+
|
|
39
|
+
Or just send a regular message — Claude will figure out which skill to use.
|
|
40
|
+
|
|
41
|
+
## Setup
|
|
42
|
+
|
|
43
|
+
Run during `openpaw setup` or separately:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
openpaw telegram setup
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
You'll need:
|
|
50
|
+
1. A Telegram bot token (from @BotFather)
|
|
51
|
+
2. Your Telegram user ID (from @userinfobot)
|
|
52
|
+
|
|
53
|
+
Config is saved to `~/.config/openpaw/telegram.json`.
|
|
54
|
+
|
|
55
|
+
## Security
|
|
56
|
+
|
|
57
|
+
- Only responds to whitelisted user IDs
|
|
58
|
+
- Bot token stored with 600 permissions (owner-only)
|
|
59
|
+
- All Claude operations run locally on your machine
|
|
60
|
+
|
|
61
|
+
## Guidelines
|
|
62
|
+
|
|
63
|
+
- The bridge maintains conversation context per user
|
|
64
|
+
- Use `/clear` to start fresh if Claude gets confused
|
|
65
|
+
- Use `/stop` to cancel long-running operations
|
|
66
|
+
- Model can be switched anytime with `/model`
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: c-tracking
|
|
3
|
+
description: Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
|
|
4
|
+
tags: [tracking, shipping, packages, ups, fedex, usps, dhl, delivery]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What This Skill Does
|
|
8
|
+
|
|
9
|
+
Uses `ordercli` to look up package tracking information across all major carriers. Returns current status, location, and estimated delivery without opening a browser.
|
|
10
|
+
|
|
11
|
+
## CLI Tool: `ordercli`
|
|
12
|
+
|
|
13
|
+
### Common Commands
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Track a package (carrier auto-detected)
|
|
17
|
+
ordercli track 1Z999AA10123456784
|
|
18
|
+
|
|
19
|
+
# Specify carrier explicitly
|
|
20
|
+
ordercli track --carrier ups 1Z999AA10123456784
|
|
21
|
+
ordercli track --carrier fedex 123456789012
|
|
22
|
+
ordercli track --carrier usps 9400111899223397623472
|
|
23
|
+
ordercli track --carrier dhl 1234567890
|
|
24
|
+
|
|
25
|
+
# Get full shipment history/events
|
|
26
|
+
ordercli track --history 1Z999AA10123456784
|
|
27
|
+
|
|
28
|
+
# Track multiple packages
|
|
29
|
+
ordercli track 1Z999AA10123456784 9400111899223397623472
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Supported Carriers
|
|
33
|
+
|
|
34
|
+
`ups`, `fedex`, `usps`, `dhl`
|
|
35
|
+
|
|
36
|
+
## Usage Guidelines
|
|
37
|
+
|
|
38
|
+
1. If the user provides a tracking number, attempt auto-detection first before specifying a carrier.
|
|
39
|
+
2. Show: current status, last known location, and estimated delivery date.
|
|
40
|
+
3. If tracking fails or carrier is unrecognized, ask the user to confirm the carrier name.
|
|
41
|
+
4. Use `--history` when the user asks for a full timeline of events.
|
|
42
|
+
|
|
43
|
+
## Notes
|
|
44
|
+
|
|
45
|
+
- Tracking numbers must be exact — no spaces or dashes unless the carrier format requires them.
|
|
46
|
+
- Some carriers have delayed updates; results reflect the last carrier scan.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: c-video
|
|
3
|
+
description: Download videos, extract audio, convert formats, and clip segments using `yt-dlp` and `ffmpeg`. Supports YouTube, Vimeo, and hundreds of other sites.
|
|
4
|
+
tags: [video, audio, download, yt-dlp, ffmpeg, conversion]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What This Skill Does
|
|
8
|
+
|
|
9
|
+
Enables Claude to download online videos, extract audio tracks, convert between formats, and cut/clip video segments using `yt-dlp` and `ffmpeg`.
|
|
10
|
+
|
|
11
|
+
## Available CLI Tools
|
|
12
|
+
|
|
13
|
+
### `yt-dlp` — Video Downloading
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Download a video (best quality)
|
|
17
|
+
yt-dlp "https://youtube.com/watch?v=ID"
|
|
18
|
+
|
|
19
|
+
# Download audio only as MP3
|
|
20
|
+
yt-dlp -x --audio-format mp3 "https://youtube.com/watch?v=ID"
|
|
21
|
+
|
|
22
|
+
# Download specific format/resolution
|
|
23
|
+
yt-dlp -f "bestvideo[height<=1080]+bestaudio" "URL"
|
|
24
|
+
|
|
25
|
+
# Download to specific output path
|
|
26
|
+
yt-dlp -o "~/Downloads/%(title)s.%(ext)s" "URL"
|
|
27
|
+
|
|
28
|
+
# List available formats
|
|
29
|
+
yt-dlp -F "URL"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### `ffmpeg` — Processing & Conversion
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# Convert video format
|
|
36
|
+
ffmpeg -i input.mp4 output.webm
|
|
37
|
+
|
|
38
|
+
# Extract audio from video
|
|
39
|
+
ffmpeg -i input.mp4 -vn -acodec mp3 output.mp3
|
|
40
|
+
|
|
41
|
+
# Clip a segment (start time, duration)
|
|
42
|
+
ffmpeg -i input.mp4 -ss 00:01:30 -t 00:00:45 -c copy clip.mp4
|
|
43
|
+
|
|
44
|
+
# Resize video
|
|
45
|
+
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Usage Guidelines
|
|
49
|
+
|
|
50
|
+
- Confirm the output directory before downloading large files
|
|
51
|
+
- Use `-x` with `yt-dlp` for audio-only extraction instead of downloading video first
|
|
52
|
+
|
|
53
|
+
## Notes
|
|
54
|
+
|
|
55
|
+
- Only download content you have rights to use
|
|
56
|
+
- `yt-dlp` may need periodic updates: `pip install -U yt-dlp`
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: c-voice
|
|
3
|
+
description: Convert speech to text using `sag` (ElevenLabs STT) and synthesize speech using `say` (macOS built-in TTS). Enables voice input transcription and audio output.
|
|
4
|
+
tags: [voice, speech, tts, stt, elevenlabs, say, sag, audio]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What This Skill Does
|
|
8
|
+
|
|
9
|
+
Enables Claude to transcribe spoken audio to text via `sag` (powered by ElevenLabs) and to speak text aloud using the macOS `say` command.
|
|
10
|
+
|
|
11
|
+
## Available CLI Tools
|
|
12
|
+
|
|
13
|
+
### `sag` — Speech-to-Text (ElevenLabs)
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Transcribe an audio file
|
|
17
|
+
sag transcribe --file recording.mp3
|
|
18
|
+
|
|
19
|
+
# Record from microphone and transcribe
|
|
20
|
+
sag record --output transcript.txt
|
|
21
|
+
|
|
22
|
+
# Transcribe with a specific language hint
|
|
23
|
+
sag transcribe --file audio.wav --language en
|
|
24
|
+
|
|
25
|
+
# Output transcript to stdout
|
|
26
|
+
sag transcribe --file audio.m4a --stdout
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### `say` — Text-to-Speech (macOS built-in)
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
# Speak text aloud
|
|
33
|
+
say "Hello, how can I help you today?"
|
|
34
|
+
|
|
35
|
+
# Use a specific voice
|
|
36
|
+
say -v Samantha "Your report is ready."
|
|
37
|
+
|
|
38
|
+
# Save spoken audio to a file
|
|
39
|
+
say -o output.aiff "Text to synthesize"
|
|
40
|
+
|
|
41
|
+
# List available voices
|
|
42
|
+
say -v ?
|
|
43
|
+
|
|
44
|
+
# Control speaking rate (words per minute)
|
|
45
|
+
say -r 180 "Speaking at a custom rate"
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Usage Guidelines
|
|
49
|
+
|
|
50
|
+
- Use `sag` to process audio files the user provides or to capture mic input
|
|
51
|
+
- Use `say` to read back responses, summaries, or alerts aloud
|
|
52
|
+
- Prefer `say -v Samantha` or `-v Alex` for natural-sounding output on macOS
|
|
53
|
+
|
|
54
|
+
## Notes
|
|
55
|
+
|
|
56
|
+
- `sag` requires a valid ElevenLabs API key configured in environment
|
|
57
|
+
- `say` is built into macOS — no installation needed
|
|
58
|
+
- Supported audio input formats for `sag`: MP3, WAV, M4A, FLAC
|