Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ Agent Skills are portable, [open standard](https://agentskills.io/home), version
- [Calculator](https://github.com/Code-and-Sorts/awesome-copilot-agents/tree/main/skills/calculator/SKILL.md) - Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents.
- [Jira CLI](https://github.com/Code-and-Sorts/awesome-copilot-agents/tree/main/skills/jira-cli/SKILL.md) - Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows.
- [Skill Creator](https://github.com/anthropics/skills/blob/main/skills/skill-creator/SKILL.md) - Create new skills, modify and improve existing skills, and measure skill performance.
- [X Research](https://github.com/Code-and-Sorts/awesome-copilot-agents/tree/main/skills/x-research/SKILL.md) - Read-only X/Twitter research: public post search, trends, post details, profiles, profile posts/media, and replies.

### Documents

Expand Down
32 changes: 32 additions & 0 deletions skills/x-research/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: x-research
description: Search and inspect current public X/Twitter posts, trends, profiles, profile posts, media, and replies through AgentBody's fixed REST contract. Use when the user asks to search X or Twitter, monitor a topic or account, inspect a post, track trends, or gather current X evidence.
license: MIT
compatibility: Requires Python 3 and an AgentBody API key
metadata:
author: AgentBody
version: "1.0"
---

# X Research

Read-only X/Twitter research through AgentBody's REST API: public post search, trends, post details, profiles, profile posts/media, and post replies.

## When to Use

- Search public X posts ("search X for AI agents")
- Read current trends ("what is trending on X")
- Inspect a post or profile
- Read profile posts, media, or post replies

## Setup

Configure `AGENTBODY_API_KEY` once using the [AgentBody Agent Quickstart](https://agentbody.io/docs/agent-quickstart.md). Run the bundled client with:

```bash
python3 scripts/x_client.py search --query "AI agents"
python3 scripts/x_client.py trending --country US
python3 scripts/x_client.py profile --username OpenAI
```

The skill is read-only. Posting, OAuth, likes, follows, and account management are out of scope.