skills/subagent-output-templating/SKILL.md
Template for structured sub-agent output including YAML log format, task completion reports (WHY/WHAT/TRADE-OFFS/RISKS), and summary constraints. Use when defining how sub-agents should report results.
npx skillsauth add ashaykubal/essential-agents-skills subagent-output-templatingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides standardized templates for sub-agent OUTPUT formatting. It complements subagent-prompting (P0.1) which defines INPUT structure:
| Skill | Purpose |
|-------|---------|
| subagent-prompting | How to prompt sub-agents (GOAL/CONSTRAINTS/CONTEXT/OUTPUT) |
| subagent-output-templating | How sub-agents report results (logs, summaries, diagnostics) |
Use this skill when:
logs/{agent-name}-{YYYYMMDD-HHMMSS}.yaml
Example: logs/bulwark-code-auditor-20260111-143022.yaml
# Required: Metadata block
metadata:
agent: {agent-name} # e.g., bulwark-code-auditor
timestamp: {ISO-8601} # e.g., 2026-01-11T14:30:22Z
model: {model-used} # sonnet, haiku, or opus
task_id: {unique-identifier} # For tracking across pipeline stages
duration_ms: {execution-time} # Execution duration in milliseconds
# Required: Goal from the prompt (for traceability)
goal: "{GOAL from 4-part prompt}"
# Required: Completion report
completion:
why:
problem: "{What was broken/missing}"
root_cause: "{Why it happened}"
solution: "{What was implemented}"
what:
- file: {path}
lines: "{range}"
change: "{description}"
trade_offs:
gained:
- "{benefit 1}"
cost:
- "{drawback 1}"
risks:
- risk: "{description}"
mitigation: "{how addressed}"
severity: {low|medium|high|critical}
next_steps:
- "{action item 1}"
# Required for code-writing agents (omit for read-only agents):
# Pipeline suggestions from implementer-quality.sh output
pipeline_suggestions:
- pipeline: "{recommended pipeline name}"
target_files:
- "{file path}"
reason: "{why this pipeline is recommended}"
# Required: Summary for main thread (100-300 tokens)
summary: |
{Concise summary for main thread consumption}
# Required: Diagnostic output
diagnostics:
model_requested: {model}
model_actual: {model}
context_type: {main|forked}
parent_vars_accessible: {true|false}
hooks_fired:
- {hook-name}
execution_time_ms: {duration}
completion_status: {success|error|timeout}
Every sub-agent MUST conclude with this structured report. This enables explicit decision documentation rather than implicit code changes.
Document the problem and solution rationale.
why:
problem: "Authentication bypass vulnerability in refresh token path"
root_cause: "Token validation skips expiry check on refresh"
solution: "Added isExpired() check to refresh token handler"
Guidelines:
problem: What was broken, missing, or needs improvementroot_cause: The underlying reason (not just symptoms)solution: What was done to address itList all changes made with file locations.
what:
- file: src/auth/token.ts
lines: "45-52"
change: "Added isExpired() check before token refresh"
- file: src/auth/token.test.ts
lines: "120-145"
change: "Added test for expired refresh token rejection"
Guidelines:
Acknowledge explicit compromises made.
trade_offs:
gained:
- "Security: Expired tokens now properly rejected"
- "Compliance: Meets OWASP session management requirements"
cost:
- "Performance: Additional DB lookup on refresh (negligible)"
- "Complexity: New error handling path for expired tokens"
Guidelines:
Document forward-looking concerns.
risks:
- risk: "Existing sessions with expired refresh tokens will fail"
mitigation: "Grace period of 24h for migration"
severity: medium
- risk: "Grace period could be exploited"
mitigation: "Monitor for unusual refresh patterns"
severity: low
Severity Levels:
| Level | Definition |
|-------|------------|
| low | Unlikely or minor impact |
| medium | Possible impact, manageable |
| high | Likely impact, needs attention |
| critical | Must be addressed before deployment |
List follow-up actions for pipeline or human.
next_steps:
- "Monitor refresh failure rate for 24h"
- "Remove grace period after migration window"
- "Update documentation for new error codes"
Guidelines:
The summary is returned to the main thread for pipeline decision-making. It should enable the orchestrator to:
| Complexity | Target Tokens | Use Case | |------------|---------------|----------| | Simple | 100-150 | Single finding, clear action | | Moderate | 150-250 | Multiple findings, some nuance | | Complex | 250-300 | Many findings, trade-off decisions |
Found [N] [severity] issue(s): [brief description].
[Action taken / recommendation].
[Key risk or follow-up if any].
Simple (120 tokens):
Found 1 critical vulnerability: refresh tokens not validated for expiry.
Fixed by adding isExpired() check in token.ts:45-52. Added regression test.
Risk: existing sessions may fail during 24h migration window.
Moderate (200 tokens):
Found 3 issues in authentication module:
- 1 critical: token expiry bypass (fixed)
- 1 medium: weak password hashing (fixed, migration needed)
- 1 low: verbose error messages (fixed)
All issues addressed with tests added. Migration script created for password re-hashing.
Next: run migration in staging, monitor for 48h before production.
Code-writing agents (e.g., bulwark-implementer) that invoke implementer-quality.sh and receive pipeline suggestions MUST include them in the summary with MANDATORY language. This ensures the orchestrator sees and acts on them per SA6.
MANDATORY FOLLOW-UP (SA6): Run the following pipeline(s):
- {pipeline} on {target_files} ({reason})
Orchestrator MUST evaluate each suggestion and either execute or document deferral per SA6.
Read-only agents (reviewers, auditors) omit this section.
Enable automated behavioral testing without mocking. Diagnostics verify:
context: fork agents)logs/diagnostics/{agent-name}-{YYYYMMDD-HHMMSS}.yaml
skill: subagent-output-templating
timestamp: 2026-01-11T14:30:22Z
diagnostics:
model_requested: sonnet
model_actual: sonnet
context_type: forked # main or forked
parent_vars_accessible: false # Should be false for forked
hooks_fired:
- Stop
execution_time_ms: 4520
completion_status: success # success, error, timeout
notes: "Task completed successfully"
| Field | Purpose | Values |
|-------|---------|--------|
| model_requested | Model specified in prompt | haiku, sonnet, opus |
| model_actual | Model that actually ran | haiku, sonnet, opus |
| context_type | Execution context | main, forked |
| parent_vars_accessible | Context isolation test | true, false |
| hooks_fired | Lifecycle hooks that executed | Array of hook names |
| execution_time_ms | Duration | Integer |
| completion_status | Final status | success, error, timeout |
metadata:
agent: {name}
timestamp: {ISO-8601}
model: sonnet
task_id: "{id}"
duration_ms: 0
goal: "{goal}"
completion:
why:
problem: "{problem}"
root_cause: "{cause}"
solution: "{solution}"
what:
- file: {path}
lines: "{range}"
change: "{description}"
trade_offs:
gained: ["{benefit}"]
cost: ["{cost}"]
risks:
- risk: "{risk}"
mitigation: "{mitigation}"
severity: medium
next_steps:
- "{action}"
# Include for code-writing agents only (omit for read-only agents):
pipeline_suggestions:
- pipeline: "{pipeline name}"
target_files: ["{path}"]
reason: "{reason}"
summary: |
{100-300 token summary}
diagnostics:
model_requested: sonnet
model_actual: sonnet
context_type: forked
parent_vars_accessible: false
hooks_fired: []
execution_time_ms: 0
completion_status: success
[ ] Count and severity of findings stated
[ ] Actions taken described
[ ] Key risks mentioned
[ ] Next steps listed
[ ] Under 300 tokens
[ ] Pipeline suggestions with MANDATORY language (code-writing agents only)
[ ] Main log: logs/{agent}-{YYYYMMDD-HHMMSS}.yaml
[ ] Diagnostics: logs/diagnostics/{agent}-{YYYYMMDD-HHMMSS}.yaml
| Context | Placeholder | Format | Example |
|---------|-------------|--------|---------|
| File paths | {YYYYMMDD-HHMMSS} | Compact, filesystem-safe | 20260119-143022 |
| YAML fields | {ISO-8601} | Standard ISO format | 2026-01-19T14:30:22Z |
Why two formats?
Important: Always use {YYYYMMDD-HHMMSS} in file paths, never {timestamp} or {ts}.
For extended examples and edge cases, see references/examples.md.
testing
Prompt template for test classification stage in Test Audit pipeline
testing
--- name: test-audit description: Audit test suites for T1-T4 violations using AST analysis, mock detection, and multi-stage synthesis. Invoke when user asks to audit tests, check test quality, find mock violations, review test effectiveness, or inspect test suites for over-mocking. Triggers automatic rewrites when quality gates fail. user-invocable: true argument-hint: [path] [--threshold=N] skills: - test-classification - mock-detection - assertion-patterns - component-pattern
development
Template for structured sub-agent invocation using 4-part prompting (GOAL/CONSTRAINTS/CONTEXT/OUTPUT) and F# pipeline notation. Use when orchestrating sub-agents or designing multi-agent workflows.
development
Configures Language Server Protocol integration for Claude Code projects. Use when setting up LSP servers, verifying post-restart initialization, or troubleshooting broken LSP configurations.