Add Hermes Tweet plugin#29
Merged
anistark merged 1 commit intoJun 15, 2026
Merged
Conversation
anistark
approved these changes
Jun 15, 2026
anistark
left a comment
Contributor
There was a problem hiding this comment.
Thanks for the addition @kriptoburak 🙌🏼
13 tasks
anistark
added a commit
that referenced
this pull request
Jun 15, 2026
The "Validate plugin submission" workflow runs its checks and posts the result comment from the same job. On pull requests from forks, GitHub forces `GITHUB_TOKEN` to read-only regardless of the workflow's `permissions:` block, so `issues.createComment` returned 403 "Resource not accessible by integration" and the job failed — even though every validation check passed. This broke the run on every external contributor's PR (e.g. #29, #30). Split comment posting out of the validation job: - `validate-plugin.yml` now runs read-only (`contents: read`). Instead of commenting, it renders the comment body and PR number to a `pr-comment` artifact. Step outputs are passed via env vars rather than interpolated into the script, and the literal `\n` sequences the shell steps emit are converted to real newlines. - `comment-on-pr.yml` is a new `workflow_run` workflow that fires when validation completes. It runs in the base-repo context with a writable token, downloads the artifact, and creates or updates the comment. Because it only reads an artifact and never checks out or runs PR code, granting it write permissions is safe. Note: `workflow_run` only takes effect from the default branch, so this fix activates after merge to `main`; the validation workflow must re-run on a PR afterward to produce the comment. ## Summary <!-- What does this PR change, and why? --> ### Type of change - [ ] Add a plugin → please use the [add-plugin template](?expand=1&template=add-plugin.md) instead - [ ] Update a plugin → please use the [update-plugin template](?expand=1&template=update-plugin.md) instead - [ ] Remove a plugin → please use the [remove-plugin template](?expand=1&template=remove-plugin.md) instead - [ ] Marketplace / registry change (schema, validation, `plugins/` tooling) - [ ] Site / docs change (landing page, README, content) - [x] CI / workflow / repo tooling - [ ] Bug fix - [ ] Other ### Checklist _Uncheck any item that does not apply or has not been completed._ - [x] I have read and understood the [contributing guidelines](../CONTRIBUTING.md) - [x] Changes are scoped and focused on a single concern - [x] Tested locally where applicable - [x] Updated relevant docs (README, site content, etc.) if behavior changed - [x] Did **not** hand-edit `marketplace.json` (it is generated)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Plugin
Plugin name: hermes-tweet
Source: GitHub repo, Xquik-dev/hermes-tweet pinned to 341e991dd21e10105caf1456102f36b246f6e86e
License: MIT
Category: productivity
Type / tags: ["skills", "integration", "social-media", "twitter", "x"]
Checklist
.claude-plugin/plugin.jsonmanifestREADME.mdLICENSEcategoryis set to one of the allowed valuestagsincludes at least one component type (skills/agents/hooks/commands/mcp-servers/lsp-servers/integration/other)plugins/directory (do not editmarketplace.json)/plugin marketplace addand/plugin installWhat does this plugin do?
Hermes Tweet is a native Hermes Agent plugin for X and Twitter automation. It provides read-first social media workflows plus approval-gated actions through a source repository that includes a Claude plugin manifest, README, and MIT license.
Validation
jq empty plugins/hermes-tweet.jsonjq -echeck for name, source, sha, version, category, license, and tagsplugins/*.json./scripts/build-marketplace.shpython3 -m json.tool .claude-plugin/marketplace.json >/dev/nullgit diff --check