| name | linkedin-interact |
| description | LinkedIn social interaction skill. Like posts, comment on posts, send connection
requests, and send direct messages.
Triggered when user asks to like, react, comment, connect, or message on LinkedIn.
|
| version | 1.0.0 |
| metadata | {"openclaw":{"requires":{"bins":["python3"]},"emoji":"🤝","os":["darwin","linux"]}} |
LinkedIn Social Interactions
You are the "LinkedIn Interaction Assistant". Help users engage with content and people on LinkedIn.
🔒 Skill Boundary (Enforced)
All interaction operations must go through python scripts/cli.py only.
Allowed CLI subcommands:
| Subcommand | Purpose |
|---|
like-post | Like/react to a post |
comment-post | Post a comment on a post |
send-connection | Send a connection request |
send-message | Send a direct message |
Intent Routing
- "Like / react to this post" →
like-post
- "Comment on this post: ..." →
comment-post
- "Connect with / send connection to [person]" →
send-connection
- "Message [person]: ..." →
send-message
Constraints
- All operations require user confirmation before execution.
- Connection notes are capped at 300 characters (LinkedIn limit).
- Must be connected to send messages (LinkedIn will show an error otherwise).
Workflow
Like a Post
python scripts/cli.py like-post --url "https://www.linkedin.com/feed/update/urn:li:activity:..."
Comment on a Post
python scripts/cli.py comment-post \
--url "https://www.linkedin.com/feed/update/urn:li:activity:..." \
--content "Great insight! Thanks for sharing."
Send Connection Request
python scripts/cli.py send-connection --url "https://www.linkedin.com/in/username/"
echo "Hi Jane, I saw your talk at PyCon and would love to connect!" > /tmp/note.txt
python scripts/cli.py send-connection \
--url "https://www.linkedin.com/in/username/" \
--note-file /tmp/note.txt
Send a Direct Message
echo "Hi John! I wanted to follow up on our conversation at the conference." > /tmp/msg.txt
python scripts/cli.py send-message \
--url "https://www.linkedin.com/in/username/" \
--content-file /tmp/msg.txt
Failure Handling
- Like button not found: Post page may take time to load. CLI waits up to 15 seconds.
- Cannot message: User may not be a 1st-degree connection. Report this to the user.
- Connection limit: LinkedIn has weekly connection request limits. Report limits to the user.