# Feed

> View your social media feed on X, LinkedIn, or Reddit

- Skill: `ninnettesudanese653/feed` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ninnettesudanese653/feed`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ninnettesudanese653/feed/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ninnettesudanese653 (https://skillmd.com/u/ninnettesudanese653)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ninnettesudanese653/feed

---


# View Feed

Get the latest posts from your social media feed.

## Workflow

1. **Check connection**
   ```
   socials_check_access
   ```

2. **Determine platform**
   Ask if not provided: X, LinkedIn, or Reddit? (YouTube is not supported by **`socials_get_feed`**—use **`socials_open_tab`** with `https://www.youtube.com/` or a channel/subscriptions URL, and **`socials_scroll`** if needed; see **`using-socials`**.)

3. **Open the feed**

   **X:**
   ```
   socials_open_tab({ url: "https://x.com/home" })
   ```

   **LinkedIn:**
   ```
   socials_open_tab({ url: "https://linkedin.com/feed" })
   ```

   **Reddit:**
   ```
   socials_open_tab({ url: "https://reddit.com" })
   ```
   Or a specific subreddit:
   ```
   socials_open_tab({ url: "https://reddit.com/r/[subreddit]" })
   ```

4. **Get feed content**
   ```
   socials_get_feed({ platform: "[platform]" })
   ```

5. **Present posts**
   Show a summary of recent posts with:
   - Author
   - Content preview
   - Engagement stats
   - Post URL

6. **Offer actions**
   For each post:
   - View full content
   - Get thread context
   - Reply/engage
   - Like/repost

## Scrolling for more

To load more posts:
```
socials_scroll({ direction: "down" })
socials_get_feed({ platform: "[platform]" })
```

## Arguments

Specify the platform after the command.

Examples:
- `/socials:feed x`
- `/socials:feed linkedin`
- `/socials:feed r/startups`

