execution

Select and invoke external tools to execute plan steps with timeouts and retries.

Updated Feb 26, 2026
One-click install
npx skills add https://github.com/jonjonbinx1/SolixAI-Marketplace --skill execution-jonjonbinx1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: execution
Source: https://github.com/jonjonbinx1/SolixAI-Marketplace/tree/main/skills/base/execution
Command: npx skills add https://github.com/jonjonbinx1/SolixAI-Marketplace --skill execution-jonjonbinx1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Reduce decision overhead and execution errors when an agent must choose and run external tools to accomplish discrete plan steps by ensuring correct tool selection, validated inputs, and robust result handling.

Core Features & Use Cases

  • Tool selection mapping: Maps common actions (file I/O, shell, HTTP, search, code execution, editing, parsing, project inspection) to the most appropriate tool.
  • Robust execution controls: Constructs precise input objects, enforces timeouts and retry policies, and validates ok/error outputs.
  • Chaining and orchestration: Supports sequencing or parallel invocation of tools and passing results between steps for multi-step workflows.
  • Use Case: Automate a workflow that reads a file, runs a script, and uploads results while handling retries and timeouts automatically.

Quick Start

Invoke the execution skill to select the appropriate tool for the current plan step, run it with a validated input object, and return the result for the next step.

Frequently Asked Questions about execution

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate tool execution for multi-step agent workflows?

Automate tool execution by mapping discrete plan steps to external tools like shell, HTTP, or filesystem actions. The skill selects the appropriate tool, constructs validated input objects, and supports sequential or parallel invocation to complete multi-step workflows.

Can I enforce timeouts and retry policies for external tool orchestration?

Yes, tool orchestration supports configurable timeouts and retry policies for external actions. It validates ok/error outputs and automatically handles transient failures during execution to ensure robust workflow completion.

What is the best way to chain results between sequential workflow steps?

Chain results between sequential workflow steps by passing validated ok/error outputs from one tool execution directly into the input object of the next. This enables seamless sequencing for multi-step orchestration tasks.

Does this tool selection mapping support filesystem and code execution actions?

Yes, tool selection mapping supports filesystem, shell, HTTP, search, code-exec, editor, json-yaml, and project-inspector actions. It identifies the most appropriate tool for each plan step and builds precise inputs for execution.

How do you run parallel tool invocations for independent plan steps?

Run parallel tool invocations by selecting multiple external tools for independent plan steps and executing them concurrently. The orchestration framework constructs separate validated input objects and aggregates the ok/error outputs for each action.