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
42 changes: 30 additions & 12 deletions registry.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,32 @@
{
"generated_at": "",
"items": [
{
"kind": "skill",
"slug": "multi-brain",
"name": "Multi-Brain",
"description": "Persistent multi-agent memory layout for Claude skills.",
"author": "enowdev",
"version": "1.0.0",
"path": "skill/multi-brain"
}
]
"generated_at": "2026-07-09T01:08:00Z",
"items": [
{
"kind": "skill",
"slug": "enowx-docs",
"name": "enowx-docs",
"description": "Use enowX docs for gateway APIs, provider accounts, gateway API keys, proxy pools, cloud sync, OTP numbers, the Skill registry, and endpoint references.",
"author": "! \u6069\u8bfa.",
"version": "1.1.0",
"path": "skill/enowx-docs"
},
{
"kind": "skill",
"slug": "multi-brain",
"name": "Multi-Brain",
"description": "Persistent multi-agent memory layout for Claude skills.",
"author": "enowdev",
"version": "1.0.0",
"path": "skill/multi-brain"
},
{
"kind": "skill",
"slug": "xquik-social-automation",
"name": "xquik-social-automation",
"description": "Use Xquik as an API or MCP source for public X/Twitter search, analytics, monitoring, webhooks, and approval-gated publishing workflows.",
"author": "Xquik",
"version": "1.0.0",
"path": "skill/xquik-social-automation"
}
]
}
9 changes: 9 additions & 0 deletions skill/xquik-social-automation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Xquik Social Automation

Use this skill when an agent needs public X/Twitter search, account monitoring,
tweet analytics, webhook-backed events, or approval-gated publishing through
Xquik.

The skill keeps API keys in the host environment, points MCP-capable clients to
the hosted Xquik MCP endpoint, and requires explicit approval before any write
action.
48 changes: 48 additions & 0 deletions skill/xquik-social-automation/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
name: xquik-social-automation
description: Use Xquik as an API or MCP source for public X/Twitter search, analytics, monitoring, webhooks, and approval-gated publishing workflows.
---

# Xquik Social Automation

Use this skill when an agent needs public X/Twitter context, account monitoring,
tweet analytics, webhook-backed events, or approval-gated publishing through
Xquik.

## Setup

1. Create a Xquik API key from the dashboard.
2. Store it as `XQUIK_API_KEY` in the host environment.
3. Configure the hosted MCP endpoint with the public manifest header shape:

```json
{
"servers": {
"xquik": {
"type": "http",
"url": "https://xquik.com/mcp",
"headers": {
"Authorization": "Bearer ${XQUIK_API_KEY}"
}
}
}
}
```

The public manifest at `https://xquik.com/.well-known/mcp.json` declares the
same Authorization bearer header for `https://xquik.com/mcp`.

## Workflow

1. Ask which public account, keyword, post, list, or monitor the user wants.
2. Read data through Xquik and keep source IDs, links, and timestamps visible.
3. Summarize missing fields, rate limits, and confidence before drafting.
4. Keep recommendations separate from write actions.
5. Request explicit user approval before publishing, replying, or scheduling.

## Safety

- Do not print, log, commit, or paste API keys.
- Do not infer private account data from public results.
- Do not publish, reply, follow, or message without explicit user approval.
- Prefer compact evidence tables with links, IDs, and timestamps.
10 changes: 10 additions & 0 deletions skill/xquik-social-automation/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"author": "Xquik",
"description": "Use Xquik as an API or MCP source for public X/Twitter search, analytics, monitoring, webhooks, and approval-gated publishing workflows.",
"kind": "skill",
"name": "xquik-social-automation",
"published_at": "2026-07-09T01:08:00Z",
"sha256": "2d2fcc07d154d6a29b512c7a44a28ac1fd72dab178de98a369b50af927ec2f71",
"slug": "xquik-social-automation",
"version": "1.0.0"
}