smithery/x-school-academy

background-process-run-command-sync

To run a short command and wait for the result, execute a synchronous shell command via the manager and return full output.

Installation

$ npx skills add smithery/x-school-academy --skill background-process-run-command-sync

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/x-school-academy · top by installs.

npx skills add smithery/x-school-academy

Browse all from smithery/x-school-academy

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 986 B
  • docs SUMMARY.md 166 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Usage

Use the MCP tool dev-swarm.request to send the payload as a JSON string:

{"server_id":"backgroundProcess","tool_name":"run_command_sync","arguments":{}}

Tool Description

Runs a short-lived shell command synchronously and returns full output.

Arguments Schema

The schema below describes the arguments object in the request payload.

{
  "type": "object",
  "properties": {
    "command": {
      "type": "string"
    }
  },
  "required": [
    "command"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Background Tasks

If the tool returns a task id, poll the task status via the MCP request tool:

{"server_id":"backgroundProcess","method":"tasks/status","params":{"task_id":"<task_id>"}}