demo-subagents-tui

demo-subagents-tui is a skill for Claude Code, Codex from dimetron/pi-go. It costs 0 tokens per session (1,718 once invoked), scanned A, original, MIT.

A demonstration of subagents in the pi-go terminal interface, where a main agent starts separate child agents to work on tasks at the same time. It shows different child roles for exploration, planning, coding, design, review, and small fixes.

In plain words
What is it for?
Use it to learn or demonstrate parallel task execution in pi-go, such as exploring code, planning changes, implementing work, and reviewing code.
Why use it?
It explains how to divide independent work between child agents and see their results while the main task continues.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to learn or demonstrate parallel task execution in pi-go, such as exploring code, planning changes, implementing work, and reviewing code.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dimetron/pi-go/demo-subagents-tui
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dimetron/pi-go --skill demo-subagents-tui
Clone the repo
git clone --depth 1 https://github.com/dimetron/pi-go

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for demo-subagents-tui

README.md
[![agentmods](https://agentmods.dev/badge/skills/dimetron/pi-go/demo-subagents-tui/github.svg)](https://agentmods.dev/skills/dimetron/pi-go/demo-subagents-tui)
Your own site
<a href="https://agentmods.dev/skills/dimetron/pi-go/demo-subagents-tui"><img src="https://agentmods.dev/badge/skills/dimetron/pi-go/demo-subagents-tui/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for demo-subagents-tui

Your own site · 80×15
<a href="https://agentmods.dev/skills/dimetron/pi-go/demo-subagents-tui"><img src="https://agentmods.dev/badge/skills/dimetron/pi-go/demo-subagents-tui.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,718 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01718
Opus 5 $0.00000 $0.00859
Sonnet 5 $0.00000 $0.00344
Haiku 4.5 $0.00000 $0.00172

Measured 10d ago against content hash 1bcbf0275ced, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

demo-subagents-tui scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.pi-go/skills/demo-subagents-tui/SKILL.md · 219 lines

How it starts

The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Demo: Subagents in pi-go TUI

This skill demonstrates how to use the agent tool to spawn subagents within the pi-go TUI for parallel task execution. Subagents are autonomous child processes that run concurrently, enabling efficient parallelization of independent tasks.

Overview

The subagent system allows the main agent to spawn child agents that execute tasks independently. Each subagent:

  • Runs as a separate pi subprocess
  • Receives its own prompt and context
  • Streams events back to the TUI for live display
  • Returns a final result upon completion

Available agent types:

Type Role Worktree Best For
explore smol No Fast, read-only codebase exploration
plan plan No Analysis and implementation planning
task default Yes Full coding tasks with code changes
designer slow Yes Code creation and modification
reviewer slow No Code review with git inspection
quick-task smol No Small, focused tasks

Limitations:

  • Maximum 8 concurrent subagents at a time (pool size: 5)
  • Subagents run in isolated git worktrees for task, designer types
  • Worktrees are automatically cleaned up after completion

Three Execution Modes

The subagent tool supports three execution modes:

Single Mode

Spawn one agent to perform a specific task.

{
  "agent": "explore",
  "task": "Find all test files in the project and identify testing patterns used."
}

Parallel Mode

Spawn multiple agents concurrently (max 8) to work on independent tasks simultaneously.

{
  "tasks": [
    {"agent": "explore", "task": "Find all error handling patterns in internal/tools/"},
    {"agent": "reviewer", "task": "Review the session package for code quality issues"},
    {"agent": "quick-task", "task": "Run go vet on internal/agent/ and report issues"}
  ]
}

Chain Mode

Run agents sequentially, passing each result to the next step.

{
  "chain": [
    {"agent": "explore", "task": "Find the main entry point and session management code"},
    {"agent": "plan", "task": "Based on this: {previous}\nSuggest a refactoring plan for the session package"},
    {"agent": "task", "task": "Implement the refactoring plan: {previous}"}
  ]
}

Read the full file on GitHub · 219 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 219 lines · 0 tokens per session scan A 1bcbf0275ced

Subscribe to this mod's changes

demo-subagents-tui is a skill published in the GitHub repository dimetron/pi-go (155 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,718 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

use-modern-go

Use the Modern Go Guidelines CLI whenever writing, modifying, fixing, or refactoring Go code. Apply its version-specific guidance to generated changes.

JetBrains/go-modern-guidelines · 32 tokens

gograph

Go repository intelligence for Claude Code. Use when reading, navigating, editing, reviewing, or refactoring a Go codebase. Exposes 64 query, analysis, and workflow capabilities through the local gograph MCP server, including bounded first-call exploration, AST-aware call graphs, blast-radius analysis, impact, and…

ozgurcd/gograph · 69 tokens

go

Use when writing, reviewing, testing, or shipping Go code and HTTP services: idioms, %w error wrapping, goroutine/context/errgroup concurrency, net/http 1.22 routing, log/slog, project layout, table-driven tests, Go hardening. NOT language-agnostic threat modeling (that is secure-coding), NOT Dockerfile/CI shipping…

ericrisco/rsc-harness · 86 tokens

code-review-go

Deep Go-specific code review covering goroutine lifecycle, data races, error wrapping, domain modeling, and interface design. Applied in addition to the generic code-review skill when Go code is detected. Invoked when reviewing Go PRs, Go code changes, or performing Go-specific quality checks.

soulcodex/agentic · 61 tokens

toolchains-golang-core

Go 1.22-1.24 core patterns for minimalism, efficiency, code reuse, and performance.

bobmatnyc/claude-mpm · 28 tokens

cli-to-go-migration

Reusable agent skill for migrating command-line interfaces from any programming language to Go.

alexastrum/skl · 21 tokens