Add Agentgram plugin#163
Conversation
There was a problem hiding this comment.
Code Review
This pull request registers and integrates "Agentgram", a local-first Telegram messaging plugin and CLI for AI agents, into the marketplace, README, and plugins metadata. The review feedback highlights two issues: an incorrect local path configuration in the plugin's marketplace manifest that will cause installation failures, and a reference in the skill instructions to a fallback bin/ directory that is missing from the mirrored files.
| "name": "agentgram", | ||
| "source": { | ||
| "source": "local", | ||
| "path": "./plugins/agentgram" |
There was a problem hiding this comment.
The path "./plugins/agentgram" is incorrect because the plugin files are located at the root of this mirrored directory (i.e., plugins/jerryfane/agentgram/). When installed via this local marketplace file, it will fail to resolve the plugin. It should be updated to . to correctly point to the root of the plugin bundle.
| "path": "./plugins/agentgram" | |
| "path": "." |
| Before sending messages, prefer the installed `agentgram` command. If it is not | ||
| on `PATH` and Agentgram is installed as a Codex plugin, resolve the plugin root | ||
| from this skill file at `<plugin-root>/skills/agentgram/SKILL.md` and use | ||
| `<plugin-root>/bin/agentgram` (`../../bin/agentgram` relative to this file). Use |
There was a problem hiding this comment.
The skill instructions reference <plugin-root>/bin/agentgram as a fallback execution path. However, the bin/agentgram executable (and the bin/ directory) is not included in the mirrored files in this repository. If the agentgram command is not available on the user's PATH, this fallback path will fail. Please ensure that the necessary executable files are mirrored or update the instructions accordingly.
|
Addressed the review feedback in 46de383:
Validation rerun:
|
Summary
Validation