
Hermes Tweet
FreeAutomate X/Twitter research and actions with user approval.
Free · Opens the source repo
What Hermes Tweet does
Hermes Tweet is a specialized skill designed for users needing to perform research and automation tasks on X (formerly Twitter) while ensuring controlled access and user approval for actions. This skill leverages the Xquik API to facilitate read and write operations in a secure manner, avoiding direct HTTP fallbacks and unverified endpoints. It is particularly useful for developers and designers engaged in social media monitoring, brand research, and other automated workflows that require a structured approach to data handling.
The skill operates through a series of commands: tweet_explore, tweet_read, and tweet_action. Users begin with tweet_explore to discover available catalog endpoints and methods. Once a read-only endpoint is identified, tweet_read can be employed to fetch data. For any actions that modify data or require sensitive permissions, users must utilize tweet_action, but only after providing explicit approval along with details about the operation. This ensures that all actions are transparent and authorized, reducing the risk of unintended consequences.
Hermes Tweet is ideal for tasks like social listening, community audits, and controlled publishing workflows. It allows users to engage with X data in a read-first manner, making it suitable for both real-time monitoring and scheduled tasks. The skill is particularly valuable for teams that prioritize security and accountability in their social media interactions, ensuring that all operations are conducted within a safe framework.
However, it is important to note that Hermes Tweet is not a general-purpose tool for casual users who might seek quick interactions with X. Its design focuses on structured workflows and requires proper configuration and user approval for any actions, making it less suitable for users looking for a straightforward tweeting experience without the need for detailed oversight.
When to use it
Use Hermes Tweet when you need to perform controlled research or automated actions on X/Twitter, particularly when user approval is required for sensitive operations.
When not to use it
This skill may not be suitable for casual users or those seeking quick interactions with X/Twitter, as it requires detailed configurations and user approval for actions.
What you can build with it
Social Listening
Monitor brand mentions and trends on X/Twitter using read-only endpoints to gather insights.
Community Audits
Conduct thorough audits of community interactions and engagement metrics with controlled access to data.
Automated Publishing Workflows
Set up scheduled tweets or posts with user-approved actions to maintain a consistent social media presence.
How to install Hermes Tweet
View source1. Install with the skills CLI
npx skills add jeremylongshore/claude-code-plugins-plus-skills/hermes-tweet --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by jeremylongshoreHermes Tweet
Overview
Hermes Tweet solves X research and automation tasks without direct HTTP fallbacks or guessed endpoints. It discovers catalog-listed Xquik routes, performs authenticated reads, and keeps write-like or private operations behind an explicit environment gate and user approval.
Use the skill for read-first workflows. Enable action tooling only for a named operation whose endpoint, payload, account, and side effects the user approves.
When to Use
Use this skill for Hermes Agent sessions that need X/Twitter data or controlled X actions through the Hermes Tweet plugin.
Use this skill especially for social listening, launch monitoring, support triage, creator research, brand research, giveaway audits, community audits, and controlled publishing workflows.
Use tweet_explore first when the user asks for a capability, endpoint, route,
or Xquik API surface. Use tweet_read only after a read-only endpoint is known.
Use tweet_action only after the user requests a write, private read, monitor,
webhook, extraction job, giveaway draw, or media operation that requires action
permissions.
Prerequisites
- Install and enable the plugin with
hermes plugins install Xquik-dev/hermes-tweet --enable. - Configure
XQUIK_API_KEYon the Hermes runtime host for authenticated reads.tweet_exploreremains available without the key or network access. - Leave
HERMES_TWEET_ENABLE_ACTIONSunset or false unless the workflow needs an approved write-like or private operation. - For project-local plugins, set
HERMES_ENABLE_PROJECT_PLUGINS=trueonly in a trusted repository. - Restart a gateway after environment changes and start a new session. Active
CLI sessions can use
/reload.
Permissions and Capabilities
- Use
tweet_explore,tweet_read, andtweet_actiononly through the enabled Hermes Tweet toolset. - Network access is limited to catalog-listed Xquik API routes reached by those tools. Do not create direct HTTP fallbacks.
- Shell access is not part of normal operation. Use Hermes CLI commands only for the install and registry checks listed in Testing.
- Local file access is not part of normal operation. Do not write reports, credentials, logs, screenshots, or cached API payloads unless the user asks for an explicit export workflow.
- Environment access is limited to configuration presence checks for
XQUIK_API_KEY,HERMES_TWEET_ENABLE_ACTIONS, andHERMES_ENABLE_PROJECT_PLUGINS. Never request or echo their values. - MCP access is not required.
Instructions
- Confirm the plugin is enabled with
hermes plugins listand confirm tool registration withhermes tools list. - Use
tweet_exploreto find the catalog endpoint and method. - Use
tweet_readfor public read-only endpoints after the API key is configured. - Before
tweet_action, state the exact endpoint, payload, account, reason, and expected side effects, then get explicit approval. - Verify the tool response. Report policy, authentication, validation, or account errors without retrying through alternate routes.
Decision Rules
- IF the task is endpoint discovery, THEN call
tweet_explorewith a short query. - IF the endpoint method is
GETand the catalog does not mark it as an action, THEN calltweet_read. - IF the endpoint method is not
GET, or the route touches private account state, THEN calltweet_actiononly when actions are enabled and the user has approved the operation. - IF
tweet_actionis unavailable or disabled, THEN explain that action tools are intentionally gated byHERMES_TWEET_ENABLE_ACTIONS=true. - IF
XQUIK_API_KEYis missing, THEN ask the user to set it in the Hermes runtime environment without requesting the key value in chat. - IF Hermes lists the plugin as
not enabled, THEN tell the user to runhermes plugins enable hermes-tweetor reinstall with--enable. - IF the plugin is installed as a project-local
.hermes/plugins/copy, THEN remind the user that Hermes requiresHERMES_ENABLE_PROJECT_PLUGINS=truefor trusted repositories. - IF the task is unattended, scheduled, gateway-driven, or cron-driven, THEN
prefer
tweet_readand keeptweet_actiondisabled unless the workflow has a clear approval step. - IF the user is in Hermes Desktop with a remote gateway profile, THEN remind them that Hermes Tweet must be installed, enabled, and configured on the remote Hermes host where plugin tools execute.
- IF the user uses the Hermes dashboard for gateway administration or credentials, THEN keep Hermes Tweet secrets in the runtime environment and do not ask for key values in chat.
Safety
- Never ask for or reveal API keys, signing keys, passwords, cookies, or TOTP secrets.
- Never pass credentials in tool arguments.
- Use only catalog-listed
/api/v1/...endpoints. - Copied endpoint URLs are accepted only when they resolve to catalog-listed paths.
- Do not use account connection, re-authentication, API key, billing, credit top-up, or support-ticket endpoints.
- For posting, deleting, following, DMs, profile changes, monitors, webhooks, extraction jobs, and draws, summarize the action before calling
tweet_action.
Known Risks and Mitigations
- Risk: A broad X/Twitter request may map to a write-capable route.
Mitigation: Start with
tweet_explore, prefertweet_read, and require a user-approved endpoint plus payload beforetweet_action. - Risk: Secrets may be pasted into chat or examples. Mitigation: Ask only for environment configuration, never for key values, and never put credentials in tool arguments.
- Risk: Endpoint guessing may bypass catalog review.
Mitigation: Accept only catalog-listed
/api/v1/...paths and reject direct HTTP fallbacks. - Risk: Automated X/Twitter actions can affect real accounts.
Mitigation: Keep
HERMES_TWEET_ENABLE_ACTIONS=falseby default and summarize side effects before any account-changing call.
Output
- Output type: endpoint selection, API-result summaries, action previews, and troubleshooting guidance.
- Output format: concise Markdown for humans and JSON-like tool payloads for Hermes Tweet calls.
- Side effects:
tweet_explorehas no external side effects,tweet_readperforms authenticated reads, andtweet_actionmay change account or workflow state only after explicit approval.
Error Handling
Use the narrowest recovery step that preserves the read-first and action-gated contract:
- Missing tool: confirm the plugin is enabled, then run
hermes tools list. - Missing API key: configure
XQUIK_API_KEYon the runtime host without pasting its value into chat, then run/reloadin an active CLI session or runhermes gateway restartand start a new gateway session. - Unknown endpoint: call
tweet_exploreagain. Never guess paths or create a direct HTTP fallback. - Disabled action: keep the action blocked unless the user requested it and
HERMES_TWEET_ENABLE_ACTIONS=trueis intentionally configured. - Policy, authentication, validation, or account error: return the sanitized failure and corrective step. Do not retry through another route.
- Missing slash command: verify it in an active Hermes session or plugin registry test rather than treating prompt text as registration proof.
- Secret in input: stop and ask the user to rotate it before continuing.
Examples
Example: Search tweets
{"query":"tweet search","method":"GET"}
Then call:
{"path":"/api/v1/x/tweets/search","query":{"q":"AI agents","limit":25}}
Example: Inspect trends
Run /xtrends in an active Hermes session. Use tweet_explore when the task
needs a catalog endpoint or structured response instead of the slash command.
Example: Post a tweet
{"query":"post tweet","include_actions":true}
Then call tweet_action with:
{"path":"/api/v1/x/tweets","method":"POST","body":{"account":"@example","text":"Hello from Hermes Tweet"},"reason":"Post the user-approved tweet."}
Testing
After installing or upgrading the plugin in Hermes Agent:
- Run
hermes plugins enable hermes-tweetunless the install used--enable. - Run
hermes plugins listand confirm the plugin isenabled. - Run
hermes tools listand confirm thehermes-tweettoolset is enabled. - Confirm
tweet_exploreis available withoutXQUIK_API_KEY. - Confirm
tweet_readappears only whenXQUIK_API_KEYis configured. - Confirm
tweet_actionstays hidden or disabled unlessHERMES_TWEET_ENABLE_ACTIONS=true.
Useful CLI checks:
hermes plugins enable hermes-tweet
hermes tools list
Release Trust Gate
Before presenting this skill as NVIDIA-verified or ready for broad enterprise deployment:
- Run SkillSpector against the complete skill directory and resolve critical or high findings.
- Complete
skill-card.mdwith owner, license, use case, deployment geography, risks, references, output shape, and release version. - Include Tier-3 eval data and
BENCHMARK.mdfor the reviewed release. - Sign the exact reviewed skill directory and publish
skill.oms.sig. - Verify the published directory with the expected certificate chain.
Do not claim NVIDIA verification when those release artifacts are absent.
Resources
Frequently asked questions about Hermes Tweet
Similar skills
Skill Creator
Efficiently create and manage skills for Gemini CLI.
Agent Development
Create and manage autonomous agents for Claude Code.
Math Olympiad Solver
Solve and verify competition math problems effectively.
Microsoft Skill Creator
Create specialized skills for Microsoft technologies.
Doublecheck
A verification pipeline for AI-generated claims.
Skill Development for Claude Code
Create and enhance skills for Claude Code plugins.
