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

feat: external test #2205

Closed
wants to merge 1 commit into from
Closed

feat: external test #2205

wants to merge 1 commit into from

Conversation

eCoxvague
Copy link

Fix

Relates to

Risks

Background

What does this PR do?

What kind of change is this?

Documentation changes needed?

Testing

Where should a reviewer start?

Detailed testing steps

Fix
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

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

Hi @eCoxvague! Welcome to the ai16z community. Thanks for submitting your first pull request; your efforts are helping us accelerate towards AGI. We'll review it shortly. You are now a ai16z contributor!

@JoeyKhd
Copy link
Member

JoeyKhd commented Jan 12, 2025

Sorry, but provide more information about this PR.

@odilitime odilitime changed the title Fix feat: external test Jan 14, 2025
Comment on lines +24 to +33
async function runProcess(command, args = [], directory = projectRoot()) {
try {
throw new Error("Not implemented yet");
// TODO
// const result = await $`cd ${directory} && ${command} ${args}`;
return result.stdout.trim();
} catch (error) {
throw new Error(`Command failed: ${error.message}`);
}
}
Copy link

Choose a reason for hiding this comment

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

The runProcess function currently throws immediately and contains unreachable code. Consider implementing process execution using either spawn() or exec() from the child_process module instead of the commented template literal syntax. Here's an example:

const result = await spawn(command, args, { cwd: directory });

This would provide proper process handling and output capture.

Spotted by Graphite Reviewer

Is this helpful? React 👍 or 👎 to let us know.

@shakkernerd
Copy link
Member

Hello,

We are changing our plugin development strategy to be more scalable. We have moved the plugins out into their own repos and we're looking for people to either maintain those or own them on their own Github.

If you'd like to be a maintainer, file an issue in the plugin repo and join our Discord https://discord.gg/elizaos to coordinate.

If you'd like to control the plugin on your own Github, please add an issue to the plugin repo pointing to your repo, and add a modification to the registry. Submit a PR to edit the registry here: https://github.com/elizaos-plugins/registry

Closing this PR for now. Let us know if you have any questions.

@shakkernerd shakkernerd closed this Feb 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants