-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Conversation
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.
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@@ -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}}" |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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'; |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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...'); |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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); | ||
} | ||
|
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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-'), |
There was a problem hiding this comment.
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
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
Proper Plugin Naming:
Registry Publishing Requirements:
Plugin Template Enhancements:
Developer Experience Improvements:
Plugin Publishing Workflow:
Plugin Publishing Validation
The plugin publishing validation (
npx elizaos plugin publish --test
) now checks against the ElizaOS registry PR template requirements:Testing Performed
Plugin Creation:
Plugin Development:
Plugin Startup:
Plugin Publishing:
UX Improvements
Commands Tested (in order)
Future Work Needed