codex-xai-oauth 0.1.0 → 0.2.2
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/.codex-plugin/plugin.json +6 -5
- package/README.md +77 -7
- package/RELEASE_NOTES.md +13 -0
- package/dist/cli.js +14983 -279
- package/dist/mcp/server.js +159 -13
- package/dist/version.d.ts +1 -1
- package/dist/xai/constants.d.ts +1 -1
- package/dist/xai/image-artifacts.d.ts +33 -0
- package/dist/xai/index.d.ts +1 -1
- package/dist/xai/media.d.ts +10 -0
- package/package.json +1 -1
- package/skills/xai-generate-text/SKILL.md +25 -0
- package/skills/xai-grok/SKILL.md +59 -7
- package/skills/xai-image-generate/SKILL.md +58 -0
- package/skills/xai-login-instructions/SKILL.md +35 -0
- package/skills/xai-status/SKILL.md +16 -0
- package/skills/xai-tts/SKILL.md +28 -0
- package/skills/xai-video-generate/SKILL.md +43 -0
- package/skills/xai-web-search/SKILL.md +23 -0
- package/skills/xai-x-search/SKILL.md +25 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: xai_x_search
|
|
3
|
+
description: Use when the user asks to search X, Twitter, posts, handles, or tweets through xAI/Grok server-side x_search.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# xAI X Search
|
|
7
|
+
|
|
8
|
+
Use `xai_x_search` for X/Twitter search through xAI Responses server-side `x_search`.
|
|
9
|
+
|
|
10
|
+
Preferred MCP call:
|
|
11
|
+
|
|
12
|
+
```json
|
|
13
|
+
{
|
|
14
|
+
"prompt": "Summarize recent posts from @xai",
|
|
15
|
+
"allowed_x_handles": ["xai"]
|
|
16
|
+
}
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Options:
|
|
20
|
+
|
|
21
|
+
- `prompt`: required X search request.
|
|
22
|
+
- `allowed_x_handles`: optional handles to include.
|
|
23
|
+
- `excluded_x_handles`: optional handles to exclude.
|
|
24
|
+
|
|
25
|
+
Do not pass both `allowed_x_handles` and `excluded_x_handles` in the same call.
|