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
23 changes: 22 additions & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,28 @@
"source": "./plugins/core",
"description": "Commands, agents, skills, and context for AI-assisted development workflows",
"version": "9.22.0",
"tags": ["commands", "agents", "skills", "workflows", "essential"]
"tags": [
"commands",
"agents",
"skills",
"workflows",
"essential"
]
},
{
"name": "hermes-tweet",
"source": "./plugins/hermes-tweet",
"description": "Hermes Agent X/Twitter plugin for research, profile and post reads, and gated write actions through Xquik.",
"version": "0.1.6",
"tags": [
"hermes-agent",
"hermes-plugin",
"xquik",
"twitter",
"x",
"social-media",
"automation"
]
}
]
}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,15 @@ If you prefer to install manually, run these in Claude Code:

```
/plugin install ai-coding-config
/plugin install hermes-tweet
```

## Todo Persistence Across Compaction

### Hermes Tweet Plugin

Hermes Tweet adds X/Twitter research, profile reads, post reads, and gated action tools for Hermes Agent users. Exploratory catalog access works without a key; read tools require `XQUIK_API_KEY`, and action tools also require `HERMES_TWEET_ENABLE_ACTIONS=true`.

**The problem**: Claude Code's context compaction summarizes conversation history to
stay within token limits. When this happens, your todo list vanishes - you lose track of
what you were working on.
Expand Down
21 changes: 21 additions & 0 deletions plugins/hermes-tweet/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "hermes-tweet",
"version": "0.1.6",
"description": "Native Hermes Agent X/Twitter plugin for Xquik automation with read-first workflows and approval-gated actions.",
"author": {
"name": "Xquik",
"url": "https://github.com/Xquik-dev"
},
"license": "MIT",
"homepage": "https://github.com/Xquik-dev/hermes-tweet#readme",
"repository": "https://github.com/Xquik-dev/hermes-tweet",
"keywords": [
"hermes-agent",
"hermes-plugin",
"xquik",
"twitter",
"x",
"social-media",
"automation"
]
}
45 changes: 45 additions & 0 deletions plugins/hermes-tweet/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "hermes-tweet",
"version": "0.1.6",
"description": "Native Hermes Agent X/Twitter plugin for Xquik automation with read-first workflows and approval-gated actions.",
"author": {
"name": "Xquik",
"url": "https://github.com/Xquik-dev"
},
"homepage": "https://github.com/Xquik-dev/hermes-tweet#readme",
"repository": "https://github.com/Xquik-dev/hermes-tweet",
"license": "MIT",
"keywords": [
"hermes-agent",
"hermes-plugin",
"xquik",
"twitter",
"x",
"social-media",
"automation",
"codex-plugin"
],
"skills": "./skills/",
"interface": {
"displayName": "Hermes Tweet",
"shortDescription": "Use Hermes Agent for X/Twitter research and gated actions.",
"longDescription": "Hermes Tweet gives Codex a source-native install surface for the Hermes Agent X/Twitter plugin. Use it to discover tweet and user read tools, summarize public X context, and keep account-changing actions behind explicit Hermes Tweet approval gates.",
"developerName": "Xquik",
"category": "Productivity",
"capabilities": [
"Interactive",
"Read",
"Write"
],
"websiteURL": "https://github.com/Xquik-dev/hermes-tweet#readme",
"privacyPolicyURL": "https://github.com/Xquik-dev/hermes-tweet/security/policy",
"termsOfServiceURL": "https://github.com/Xquik-dev/hermes-tweet/blob/master/LICENSE",
"defaultPrompt": [
"Use Hermes Tweet to research this X/Twitter topic.",
"Use Hermes Tweet to read public replies and summarize the thread.",
"Use Hermes Tweet to prepare an approval-gated X/Twitter action."
],
"brandColor": "#111827",
"composerIcon": "./assets/icon.svg"
}
}
22 changes: 22 additions & 0 deletions plugins/hermes-tweet/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) 2026 Xquik

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Loading