pawmode 1.0.0 → 1.2.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/README.md +229 -72
- package/dist/dashboard-server--wwlA0Pa.js +426 -0
- package/dist/dashboard-server-Cg_1CvKn.js +3 -0
- package/dist/index.js +684 -872
- package/dist/permissions-AJXigU7k.js +3 -0
- package/dist/scheduler-DAmd0GzB.js +888 -0
- package/dist/scheduler-DppXPNqK.js +4 -0
- package/dist/{skills-DwMXaN3R.js → skills-CUY0swcW.js} +1 -1
- package/package.json +1 -1
- package/skills/c-calendar/SKILL.md +12 -11
- package/skills/c-clipboard/SKILL.md +53 -0
- package/skills/c-contacts/SKILL.md +63 -0
- package/skills/c-core/SKILL.md +17 -1
- package/skills/c-memory/SKILL.md +32 -0
- package/skills/c-obsidian/SKILL.md +22 -3
- package/skills/c-schedule/SKILL.md +98 -0
- package/skills/c-timer/SKILL.md +59 -0
- package/skills/c-video-edit/SKILL.md +147 -0
- package/skills/c-weather/SKILL.md +61 -0
- package/dist/permissions-CoaVX2ZM.js +0 -3
- package/skills/c-social/SKILL.md +0 -57
- /package/dist/{permissions-BHOAvP8i.js → permissions-BlGEHCXO.js} +0 -0
- /package/dist/{skills-CJ_pyPlv.js → skills-CMqq9k1-.js} +0 -0
package/skills/c-social/SKILL.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: c-social
|
|
3
|
-
description: Post tweets, read timelines, search, and reply on Twitter/X using the `bird` CLI. Supports text posts, media attachments, quote tweets, and user lookups.
|
|
4
|
-
tags: [twitter, x, social-media, bird, posting]
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## What This Skill Does
|
|
8
|
-
|
|
9
|
-
Enables Claude to interact with Twitter/X — posting, reading, searching, and replying — via the `bird` CLI.
|
|
10
|
-
|
|
11
|
-
## Available CLI Tool: `bird`
|
|
12
|
-
|
|
13
|
-
### Common Commands
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
# Post a tweet
|
|
17
|
-
bird tweet post "Hello world!"
|
|
18
|
-
|
|
19
|
-
# Post with media
|
|
20
|
-
bird tweet post "Check this out" --media ./image.png
|
|
21
|
-
|
|
22
|
-
# Read your home timeline
|
|
23
|
-
bird timeline home
|
|
24
|
-
|
|
25
|
-
# Read a user's timeline
|
|
26
|
-
bird timeline user --username elonmusk
|
|
27
|
-
|
|
28
|
-
# Search tweets
|
|
29
|
-
bird search "openai announcement" --limit 10
|
|
30
|
-
|
|
31
|
-
# Reply to a tweet
|
|
32
|
-
bird tweet reply --id 1234567890 --text "Great point!"
|
|
33
|
-
|
|
34
|
-
# Quote tweet
|
|
35
|
-
bird tweet quote --id 1234567890 --text "Adding context here"
|
|
36
|
-
|
|
37
|
-
# Like a tweet
|
|
38
|
-
bird tweet like --id 1234567890
|
|
39
|
-
|
|
40
|
-
# Get your own profile info
|
|
41
|
-
bird user me
|
|
42
|
-
|
|
43
|
-
# Look up a user
|
|
44
|
-
bird user get --username sama
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## Usage Guidelines
|
|
48
|
-
|
|
49
|
-
- Keep tweets under 280 characters; check length before posting
|
|
50
|
-
- Search results are newest-first by default
|
|
51
|
-
- Always confirm content before posting on behalf of the user
|
|
52
|
-
|
|
53
|
-
## Notes
|
|
54
|
-
|
|
55
|
-
- Requires `bird` CLI authenticated with Twitter API v2 credentials
|
|
56
|
-
- Media uploads support JPG, PNG, GIF, and MP4
|
|
57
|
-
- Rate limits: 50 tweets/day on free tier; check before bulk posting
|
|
File without changes
|
|
File without changes
|