self-subagent
Self-Subagent Orchestration
Spawn parallel copies of yourself in non-interactive mode to do work concurrently.
YOU (parent, interactive)
├─ spawn ──→ [self --exec "task A"] ──→ result A ─┐
├─ spawn ──→ [self --exec "task B"] ──→ result B ─┼─→ collect → verify → done
└─ spawn ──→ [self --exec "task C"] ──→ result C ─┘
Each subagent is fire-and-forget: receives a complete prompt, does the work, exits. No follow-ups.
Phase 1: Discover Your Execute Mode
You must figure out how to invoke yourself non-interactively. Do not assume — discover.
1a. Identify what CLI you are
More from pc-style/skills
handoff
Create a handoff message to continue work in a new AI session. Use when the user wants to save context for later, create a handoff document, or prepare work for continuation in a fresh session. Captures relevant files, context, and goals so the next session can start immediately without rediscovering the codebase.
7aidr
Offload context-heavy but low-complexity codebase work to Aider through a thin CLI wrapper. Use when another AI agent should avoid loading large repository context for tasks like discovery, repetitive refactors, cross-file version bumps, and broad search/explain passes. Supports safe read-only scanning, scoped edit runs, model-mode routing, and setup/model diagnostics.
3skill-creator
Create or update AgentSkills. Use when designing, structuring, or publishing skills with references and assets. Triggers on requests like "create a skill", "build a skill for X", "publish this skill", or when the user wants to design, structure, or publish AgentSkills.
3adk-agent-extension
Use this skill when the user wants any MCP-capable agent or IDE assistant to interact with Google ADK agents through the adk-agent-extension MCP server. Trigger for requests like wiring ADK tools into Codex/Claude Code/Cursor/Cline/Gemini, registering a stdio MCP server, listing ADK servers/agents, creating sessions, and chatting with ADK agents.
3openclaw-config
Configure OpenClaw (AI chat gateway) on any OS, VM, or platform. Use when the user mentions openclaw, openclaw config, openclaw.json, openclaw setup, openclaw channels, openclaw gateway, openclaw sandbox, openclaw docker, openclaw install, or needs to create or edit an existing OpenClaw configuration. Handles fresh installs, editing existing configs, adding channels, models, providers, sandboxing, cron, hooks, sessions, and all gateway settings.
1