Nate's errata 2025-01-27#132
Merged
Merged
Conversation
nbarbettini
commented
Jan 27, 2025
| ### Use your tools with Arcade | ||
|
|
||
| Now that your local Engine and Actor are running via the `arcade dev` command, you can use your custom tools with Arcade in your application. | ||
| Now that your local Engine and worker are running via the `arcade dev` command, you can use your custom tools with Arcade in your application. |
Collaborator
Author
There was a problem hiding this comment.
No more actors
| ``` | ||
|
|
||
| This means that there are no toolkits found in the same environment as the Arcade Client. Ensure that you are installing the toolkit package in the same environment and see the [Toolkit Installation Guide](/home/install/toolkits) for more details. | ||
| This means that there are no toolkits found in the same environment as the Arcade SDK. Ensure that you are installing the toolkit package in the same environment and see the [Toolkit Installation Guide](/home/install/toolkits) for more details. |
Collaborator
Author
There was a problem hiding this comment.
In the context of this page, we've told the reader to install the SDK/CLI.
EricGustin
reviewed
Jan 27, 2025
Collaborator
Author
|
I see what you mean. Will fix
…On Mon, Jan 27, 2025 at 10:00 AM Eric Gustin ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In pages/home/install/local.mdx
<#132 (comment)>:
> @@ -97,17 +93,21 @@ To run the Engine on it's own, you can run:
arcade-engine
I'm curious if readers are just blindly running this command and getting
errors because they have already started the engine via arcade dev
—
Reply to this email directly, view it on GitHub
<#132 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABZNI2WCDOFKQCCIWBNO45T2MZX2XAVCNFSM6AAAAABV6U4WL6VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDKNZWGE4DGMBTG4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Member
Collaborator
Author
|
Yeah, the auto formatter is doing weird things. Fixing... |
nbarbettini
commented
Jan 27, 2025
| "editor.wordWrapColumn": 80, | ||
| "editor.formatOnSave": true, | ||
| "[javascript][typescript][json][jsonc][mdx][tsx][jsx][css]": { | ||
| "editor.formatOnSave": false, |
Collaborator
Author
There was a problem hiding this comment.
Turned off format-on-save so that it stops messing up our mdx files. (hopefully we can figure out why later, and turn it back on)
nbarbettini
commented
Jan 27, 2025
Comment on lines
+6
to
9
| "[javascript][typescript][json][jsonc][tsx][jsx][css]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode", | ||
| "editor.formatOnSave": true | ||
| }, | ||
| "[json]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
| } |
Collaborator
Author
There was a problem hiding this comment.
Merged this section because line 6 already included [json]
nbarbettini
commented
Jan 27, 2025
| ### Install a toolkit | ||
|
|
||
| In order to run the arcade worker, we need to install a tool. For local development, we can just pip install a tool in the same environment as the client. | ||
| In order to run the Arcade worker, you'll need to install at least one tool. For local development, you can just `pip install` a tool in the same environment as the client. |
Collaborator
Author
There was a problem hiding this comment.
"You" = more active voice
nbarbettini
commented
Jan 27, 2025
| ``` | ||
|
|
||
| For a simple example on using the client, see the [quickstart](/home/quickstart). | ||
| For a simple example on using the Arcade CLI, see the [quickstart on building tools](/home/custom-tools) |
Collaborator
Author
There was a problem hiding this comment.
/home/quickstart no longer talks about the CLI
EricGustin
approved these changes
Jan 27, 2025
teallarson
added a commit
that referenced
this pull request
May 13, 2026
…970) fix(deps): pin protobufjs to 7.5.6 to resolve CVE-2026-41242 Adds `protobufjs: "7.5.6"` to `pnpm.overrides` to address Dependabot alert #132 (GHSA-xq3m-2v4x-88gg, CVSS 9.8). The vulnerable 7.5.4 was a transitive dep via posthog-js → @opentelemetry/otlp-transformer. Pattern mirrors the existing `tar` override. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
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.

Some errata after reviewing #131