@algolia/wizard 0.9.0-rc.93.95 → 0.9.0-rc.96.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -2815,7 +2815,7 @@ function storeApproval(root) {
|
|
|
2815
2815
|
}
|
|
2816
2816
|
function runShellTool(ctx) {
|
|
2817
2817
|
return tool8({
|
|
2818
|
-
description: "Run a shell command in the project. Use this for anything the project needs done in its own ecosystem: installing dependencies, running a script you wrote, running the project's lint/typecheck/test commands. The user sees and approves every command before it runs, so write a clear `explanation`. If the user rejects a command, do not retry it \u2014 propose a different approach.",
|
|
2818
|
+
description: "Run a shell command in the project. Use this for anything the project needs done in its own ecosystem: installing dependencies, running a script you wrote, running the project's lint/typecheck/test commands. The user sees and approves every command before it runs, so write a clear `explanation`. If the user rejects a command, do not retry it \u2014 propose a different approach. Never `cd`, `pushd` or `popd` inside the command \u2014 pass `cwd` instead. Never leave the project root: no `..` in any path, no absolute paths outside the root, and no `-C`/`--prefix` flag pointing outside it. Everything you need is inside the root.",
|
|
2819
2819
|
inputSchema: z14.object({
|
|
2820
2820
|
command: z14.string().describe(
|
|
2821
2821
|
"The command to run, exactly as it would be typed in a shell. Pipes, && and redirects are allowed."
|
|
@@ -3260,7 +3260,7 @@ async function runAnalysis(mode, extraInstructions = []) {
|
|
|
3260
3260
|
// package.json
|
|
3261
3261
|
var package_default = {
|
|
3262
3262
|
name: "@algolia/wizard",
|
|
3263
|
-
version: "0.9.0-rc.
|
|
3263
|
+
version: "0.9.0-rc.96.101",
|
|
3264
3264
|
description: "Magically implement Algolia functionality in your codebase",
|
|
3265
3265
|
type: "module",
|
|
3266
3266
|
engines: {
|