Table of Contents
Structured Output
When To Use
- When finalizing any review or analysis.
- To format findings in a consistent way that names specific next steps.
- Before presenting results to stakeholders or committing them to documentation.
When NOT To Use
- Capturing evidence during analysis - use proof-of-work
- Reviewing changes - use diff-analysis or review-core first
Activation Patterns
Trigger Keywords: format, structure, deliverable, report, organize, present, consistent
Contextual Cues:
- "format this as a report" or "structure the output"
- "create a deliverable" or "present these findings"
- "organize this consistently" or "standardize the format"
- "make this actionable" or "prepare for stakeholders"
Auto-Load When: Finalizing any analysis deliverable or when consistent formatting is requested.
Required TodoWrite Items
structured-output:template-selected
structured-output:findings-formatted
structured-output:actions-assigned
structured-output:appendix-attached
Mark each item complete as you finish the corresponding step.
Step 1: Select Template (structured-output:template-selected)
- Choose output format based on deliverable type:
- Review Report: Summary, Findings, Recommendations, Evidence.
- PR Description: Summary, Changes, Test Plan, Notes.
- Release Notes: Highlights, Breaking Changes, Fixes, Credits.
- Incident Report: Timeline, Impact, Root Cause, Remediation.
- Confirm audience and required detail level.
Step 2: Format Findings (structured-output:findings-formatted)
- Use consistent finding structure:
### [SEVERITY] Finding Title
**Location**: file.rs:123
**Anchor**: `verbatim source text copied from line 123`
**Category**: Security | Performance | Correctness | Style
**Description**: Brief explanation of the issue.
**Evidence**: [E1, E2] - Reference to evidence log.
**Recommendation**: Specific remediation steps.
Verification: Run the command with --help flag to verify availability.
- Severity levels: CRITICAL, HIGH, MEDIUM, LOW, INFO.
- Order findings by severity, then by file location.
- Anchor is mandatory and grounds the finding. Copy the exact
source text at
Location (not a paraphrase). It is what a second
pass re-reads to confirm the finding is real. A finding whose anchor
does not appear at its cited line is treated as a hallucination and
dropped. The check is mechanical: imbue:review-core Step 6 runs
plugins/imbue/scripts/citation_verifier.py over the findings.
Step 3: Assign Actions (structured-output:actions-assigned)
- Convert findings to action items with assignee and priority:
## Action Items
- [ ] [HIGH] Fix SQL injection in auth.py:45 (@security-team, P1)
- [ ] [MEDIUM] Add input validation to API endpoint (@backend, P2)
- [ ] [LOW] Update deprecated dependency (@devops, P3)
Verification: Run the command with --help flag to verify availability.
- Include owner assignment where known.
- Add priority indicators (P1/P2/P3) for triage.
- Note dependencies between actions.
Step 4: Attach Appendix (structured-output:appendix-attached)
- Compile supporting materials:
## Appendix
### A. Commands Run
[Full evidence log from imbue:proof-of-work]
### B. External References
[Citations and documentation links]
### C. Raw Data
[Large outputs, full diffs, or data exports]
Verification: Run the command with --help flag to verify availability.
- Keep main report concise; details in appendix.
- validate appendix is navigable with clear section headers.
Output Quality Checklist
Before finalizing:
Exit Criteria
- Todos completed with formatted deliverable.
- Output follows selected template structure.
- Stakeholders can act on findings without clarification.
Source: athola/claude-night-market → plugins/imbue/skills/structured-output/SKILL.md
1---2name: structured-output3description: Formats review deliverables with consistent structure for comparable findings. Use when finalizing any review or analysis that must be shared or compared.4---5
6## Table of Contents
7
8- [When to Use](#when-to-use)
9- [Activation Patterns](#activation-patterns)
10- [Required TodoWrite Items](#required-todowrite-items)
11- [Step 1: Select Template (`structured-output:template-selected`)](#step-1:-select-template-(structured-output:template-selected))
12- [Step 2: Format Findings (`structured-output:findings-formatted`)](#step-2:-format-findings-(structured-output:findings-formatted))
13- [Step 3: Assign Actions (`structured-output:actions-assigned`)](#step-3:-assign-actions-(structured-output:actions-assigned))
14- [Step 4: Attach Appendix (`structured-output:appendix-attached`)](#step-4:-attach-appendix-(structured-output:appendix-attached))
15- [Output Quality Checklist](#output-quality-checklist)
16- [Exit Criteria](#exit-criteria)
17
18
19# Structured Output
20
21## When To Use
22- When finalizing any review or analysis.
23- To format findings in a consistent way that names specific next steps.
24- Before presenting results to stakeholders or committing them to documentation.
25
26## When NOT To Use
27
28- Capturing evidence during analysis - use proof-of-work
29- Reviewing changes - use diff-analysis or review-core first
30
31## Activation Patterns
32**Trigger Keywords**: format, structure, deliverable, report, organize, present, consistent
33**Contextual Cues**:
34- "format this as a report" or "structure the output"
35- "create a deliverable" or "present these findings"
36- "organize this consistently" or "standardize the format"
37- "make this actionable" or "prepare for stakeholders"
38
39**Auto-Load When**: Finalizing any analysis deliverable or when consistent formatting is requested.
40
41## Required TodoWrite Items
421. `structured-output:template-selected`
432. `structured-output:findings-formatted`
443. `structured-output:actions-assigned`
454. `structured-output:appendix-attached`
46
47Mark each item complete as you finish the corresponding step.
48
49## Step 1: Select Template (`structured-output:template-selected`)
50- Choose output format based on deliverable type:
51 - **Review Report**: Summary, Findings, Recommendations, Evidence.
52 - **PR Description**: Summary, Changes, Test Plan, Notes.
53 - **Release Notes**: Highlights, Breaking Changes, Fixes, Credits.
54 - **Incident Report**: Timeline, Impact, Root Cause, Remediation.
55- Confirm audience and required detail level.
56
57## Step 2: Format Findings (`structured-output:findings-formatted`)
58- Use consistent finding structure:
59 ```markdown
60 ### [SEVERITY] Finding Title
61 **Location**: file.rs:123
62 **Anchor**: `verbatim source text copied from line 123`
63 **Category**: Security | Performance | Correctness | Style
64 **Description**: Brief explanation of the issue.
65 **Evidence**: [E1, E2] - Reference to evidence log.
66 **Recommendation**: Specific remediation steps.
67 ```
68 **Verification:** Run the command with `--help` flag to verify availability.
69- Severity levels: CRITICAL, HIGH, MEDIUM, LOW, INFO.
70- Order findings by severity, then by file location.
71- **Anchor is mandatory and grounds the finding.** Copy the exact
72 source text at `Location` (not a paraphrase). It is what a second
73 pass re-reads to confirm the finding is real. A finding whose anchor
74 does not appear at its cited line is treated as a hallucination and
75 dropped. The check is mechanical: `imbue:review-core` Step 6 runs
76 `plugins/imbue/scripts/citation_verifier.py` over the findings.
77
78## Step 3: Assign Actions (`structured-output:actions-assigned`)
79- Convert findings to action items with assignee and priority:
80 ```markdown
81 ## Action Items
82 - [ ] [HIGH] Fix SQL injection in auth.py:45 (@security-team, P1)
83 - [ ] [MEDIUM] Add input validation to API endpoint (@backend, P2)
84 - [ ] [LOW] Update deprecated dependency (@devops, P3)
85 ```
86 **Verification:** Run the command with `--help` flag to verify availability.
87- Include owner assignment where known.
88- Add priority indicators (P1/P2/P3) for triage.
89- Note dependencies between actions.
90
91## Step 4: Attach Appendix (`structured-output:appendix-attached`)
92- Compile supporting materials:
93 ```markdown
94 ## Appendix
95 ### A. Commands Run
96 [Full evidence log from imbue:proof-of-work]
97
98 ### B. External References
99 [Citations and documentation links]
100
101 ### C. Raw Data
102 [Large outputs, full diffs, or data exports]
103 ```
104 **Verification:** Run the command with `--help` flag to verify availability.
105- Keep main report concise; details in appendix.
106- validate appendix is navigable with clear section headers.
107
108## Output Quality Checklist
109Before finalizing:
110- [ ] Every finding carries a verbatim `Anchor` the citation verifier
111 resolved (no unverified findings ship).
112- [ ] All findings have evidence references.
113- [ ] Severity levels are justified.
114- [ ] Recommendations are specific and name the next step.
115- [ ] No orphaned sections or placeholder text.
116- [ ] Format renders correctly in target medium (GitHub, Confluence, etc.).
117
118## Exit Criteria
119- Todos completed with formatted deliverable.
120- Output follows selected template structure.
121- Stakeholders can act on findings without clarification.
122
123---
124
125**Source:** [`athola/claude-night-market`](https://github.com/athola/claude-night-market) → `plugins/imbue/skills/structured-output/SKILL.md`