Agent skill
spawn
Skills for spawning external processes - AI coding agents and generic CLI commands in new terminal windows. Parent skill category for agent and terminal spawning.
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/consiliency/spawn
SKILL.md
Spawn Skills
This directory contains skills for spawning external processes in new terminal windows.
Overview
Spawn skills enable Claude Code to launch external processes:
- AI coding agents (Claude, Codex, Gemini, Cursor, OpenCode, Copilot)
- Generic CLI commands (ffmpeg, curl, python, npm, etc.)
Both use the fork_terminal utility to create isolated terminal sessions.
Child Skills
| Skill | Description | Use Case |
|---|---|---|
| agent | Spawn AI coding agents | Multi-provider orchestration |
| terminal | Spawn generic CLI commands | Non-AI command execution |
When to Use
Use spawn:agent when:
- Delegating tasks to external AI providers
- Need interactive CLI sessions with AI agents
- Browser-based authentication is required
- Real-time streaming output needed
Use spawn:terminal when:
- Running non-AI CLI commands (ffmpeg, curl, etc.)
- Need interactive terminal for user input
- Long-running processes that shouldn't block Claude
Use orchestration:native-invoke instead when:
- Automating multi-provider tasks
- Need parallel execution across providers
- Clean result collection is important
- No interactive/TTY requirements
Core Utility
Both skills use the fork_terminal Python utility:
# Located at: ./agent/fork_terminal.py
from fork_terminal import fork_terminal
# Basic usage
result = fork_terminal("command", capture=True)
# With logging
result = fork_terminal("command", log_to_file=True, log_agent_output=True)
Quick Reference
spawn/
├── SKILL.md # This file
├── agent/ # AI agent spawning
│ ├── SKILL.md
│ ├── cookbook/ # Per-agent cookbooks
│ │ ├── claude-code.md
│ │ ├── codex-cli.md
│ │ ├── gemini-cli.md
│ │ ├── cursor-cli.md
│ │ ├── opencode-cli.md
│ │ └── copilot-cli.md
│ └── prompts/ # Reusable prompt templates
└── terminal/ # Generic CLI spawning
├── SKILL.md
└── cookbook/
└── cli-command.md
Related Skills
- orchestration/native-invoke - Task-based CLI invocation (preferred for automation)
- multi-agent-orchestration - Higher-level provider routing
- model-discovery - Current model names for providers
See Also
.claude/ai-dev-kit/dev-tools/orchestration/providers/- Shell scripts for each provider/ai-dev-kit:delegate- Command for manual delegation
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
perigon-backend
Perigon ASP.NET Core + EF Core + Aspire conventions
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
perigon-angular
Angular 21+ standalone/Material/signal conventions for Perigon WebApp
fastapi-mastery
Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.
context7-efficient
Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.
browser-use
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.
Didn't find tool you were looking for?