From d22364d5ae00a6f22cb056d88d1cdcb6410f5967 Mon Sep 17 00:00:00 2001 From: Jess-yaozu Date: Wed, 19 Aug 2026 16:27:48 +0800 Subject: [PATCH] Add x-research skill --- README.md | 1 + skills/x-research/SKILL.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 skills/x-research/SKILL.md diff --git a/README.md b/README.md index 2cf2886..4a65c7b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/skills/x-research/SKILL.md b/skills/x-research/SKILL.md new file mode 100644 index 0000000..2909a4c --- /dev/null +++ b/skills/x-research/SKILL.md @@ -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. \ No newline at end of file