Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eli2 107/fix plugin publishing #4095

Merged
merged 5 commits into from
Apr 1, 2025
Merged

Conversation

yungalgo
Copy link

PR: Enhance ElizaOS Plugin Development and Publishing Workflow

This PR improves the complete plugin lifecycle - from creation to development to publishing - with a focus on streamlining the developer experience and ensuring plugins work correctly within the ElizaOS ecosystem.

Key Improvements

  1. Proper Plugin Naming:

    • Modified template generation to dynamically replace the hardcoded plugin name in source files with the actual plugin name
    • Ensures plugins use the correct name at runtime in dev/start mode
  2. Registry Publishing Requirements:

    • Added missing required components to plugin templates:
    • Added images/ directory with detailed README
    • Added agentConfig section to package.json
    • Properly formatted repository URL with placeholders
  3. Plugin Template Enhancements:

    • Updated success message in create.ts with clearer next steps
    • Improved plugin README.md with more detailed guidance
    • Added proper configuration schema validation
  4. Developer Experience Improvements:

    • Preserved custom changes to template files during builds
    • Fixed repository URL format to use the correct GitHub pattern
    • Enhanced plugin startup and error logging
  5. Plugin Publishing Workflow:

    • Implemented validation for plugin requirements before publishing
    • Improved the GitHub PR flow for registry submissions
    • Added clearer feedback messages during the publishing process
    • Added guided inputs for plugin description and other metadata

Plugin Publishing Validation

The plugin publishing validation (npx elizaos plugin publish --test) now checks against the ElizaOS registry PR template requirements:

  • Verification of public GitHub repository accessibility
  • Validation of 'main' as the default branch
  • Checking for the 'elizaos-plugins' topic in repository settings
  • Repository description presence
  • Directory structure validation:
    • Presence of images/ directory with logo.jpg and banner.jpg
    • Proper image file sizes and formats
    • Source code structure (src/index.ts, etc.)
  • Package.json validation:
    • Proper agentConfig section
    • Correct repository URL format
    • Required plugin parameters

Testing Performed

  1. Plugin Creation:

    • Verified template files contain all required components
    • Confirmed that the correct package name is used in all places
    • Validated directory structure is correct, including images folder
  2. Plugin Development:

    • Tested the dev command with hot-reloading
    • Confirmed plugin actions are registered and triggered correctly
    • Verified log output shows the correct plugin name
  3. Plugin Startup:

    • Tested the start command for launching plugins
    • Validated service initialization sequence
    • Confirmed plugin loads with the correct name
  4. Plugin Publishing:

    • Tested the plugin publish --test validation workflow
    • Verified repository URL formatting and template replacement
    • Confirmed PR creation flow to the registry repo
    • Validated proper forking of the registry repository

UX Improvements

  • Added clearer step-by-step guidance during the plugin publishing process
  • Added prompts to create required assets like logo and banner
  • Improved error messaging to help developers fix issues
  • Enhanced console output with visual formatting and emojis
  • Added dynamic input for plugin descriptions and GitHub username

Commands Tested (in order)

npx elizaos create -t plugin [name/plugin-name]
cd plugin-name
npx elizaos dev
npx elizaos start
npx elizaos test (not worked on, tests not written or passing)
npx elizaos plugin publish --test
npx elizaos plugin publish

Future Work Needed

  1. Registry Integration: I am not positive if the new plugin is being registered correctly in the registry fork / PR step, this needs a sanity check and guidance.
  2. Testing Framework: The plugin test command still needs implementation

create plugin command + publish plugin --test works.

still need to test dev, start, and publish (actual)

no github repo functionality
now the repo pushes and the registry is updated and a pr is made, all in the cli, there is validation for plugin reqs too.
@yungalgo yungalgo added the V2 Eliza 1.x label Mar 27, 2025
Copy link
Contributor

coderabbitai bot commented Mar 27, 2025

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@@ -9,7 +9,7 @@
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elizaos-plugins/plugin-starter"
"url": "github:{{GITHUB_USERNAME}}/{{PLUGIN_NAME}}"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if this will cause problems with Lerna

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i reverted it to previous state, let's not change this for now i agree.

@@ -273,7 +273,7 @@ export async function publishToGitHub(
}

// Create version branch - use type in branch name
const entityType = packageJson.type || 'plugin';
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any idea what other types they were thinking about?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it could also be a project -- i also added a quick error message if type != plugin.


// Try force pushing if normal push fails
try {
logger.info('Attempting force push...');
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this could be dangerous, what's the case where we need to go this far.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let me see if i can get it accomplished in a less aggressive manner

// Update targetDir to use the prefixed name
targetDir = path.join(options.dir === '.' ? process.cwd() : options.dir, projectName);
}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not just const and calculate the targetDir name here

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, i refactored this, thank you

const packageJson = JSON.parse(await fs.readFile(packageJsonPath, 'utf-8'));

return {
name: packageJson.name.includes('plugin-'),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we may want @elizaos/ prefix too but not sure

@lalalune lalalune merged commit a6b7cb8 into v2-develop Apr 1, 2025
1 of 3 checks passed
@lalalune lalalune deleted the ELI2-107/fix-plugin-publishing branch April 1, 2025 14:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
V2 Eliza 1.x
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants