72 lines
2.4 KiB
Markdown
72 lines
2.4 KiB
Markdown
# Output Requirements
|
|
|
|
When performing ultra-granular analysis, Claude MUST structure output following the Per-Function Microstructure Checklist format demonstrated in [FUNCTION_MICRO_ANALYSIS_EXAMPLE.md](FUNCTION_MICRO_ANALYSIS_EXAMPLE.md).
|
|
|
|
---
|
|
|
|
## Required Structure
|
|
|
|
For EACH analyzed function, output MUST include:
|
|
|
|
**1. Purpose** (mandatory)
|
|
- Clear statement of function's role in the system
|
|
- Impact on system state, security, or economics
|
|
- Minimum 2-3 sentences
|
|
|
|
**2. Inputs & Assumptions** (mandatory)
|
|
- All parameters (explicit and implicit)
|
|
- All preconditions
|
|
- All trust assumptions
|
|
- Each input must identify: type, source, trust level
|
|
- Minimum 3 assumptions documented
|
|
|
|
**3. Outputs & Effects** (mandatory)
|
|
- Return values (or "void" if none)
|
|
- All state writes
|
|
- All external interactions
|
|
- All events emitted
|
|
- All postconditions
|
|
- Minimum 3 effects documented
|
|
|
|
**4. Block-by-Block Analysis** (mandatory)
|
|
For EACH logical code block, document:
|
|
- **What:** What the block does (1 sentence)
|
|
- **Why here:** Why this ordering/placement (1 sentence)
|
|
- **Assumptions:** What must be true (1+ items)
|
|
- **Depends on:** What prior state/logic this relies on
|
|
- **First Principles / 5 Whys / 5 Hows:** Apply at least ONE per block
|
|
|
|
Minimum standards:
|
|
- Analyze at minimum: ALL conditional branches, ALL external calls, ALL state modifications
|
|
- For complex blocks (>5 lines): Apply First Principles AND 5 Whys or 5 Hows
|
|
- For simple blocks (<5 lines): Minimum What + Why here + 1 Assumption
|
|
|
|
**5. Cross-Function Dependencies** (mandatory)
|
|
- Internal calls made (list all)
|
|
- External calls made (list all with risk analysis)
|
|
- Functions that call this function
|
|
- Shared state with other functions
|
|
- Invariant couplings (how this function's invariants interact with others)
|
|
- Minimum 3 dependency relationships documented
|
|
|
|
---
|
|
|
|
## Quality Thresholds
|
|
|
|
A complete micro-analysis MUST identify:
|
|
- Minimum 3 invariants (per function)
|
|
- Minimum 5 assumptions (across all sections)
|
|
- Minimum 3 risk considerations (especially for external interactions)
|
|
- At least 1 application of First Principles
|
|
- At least 3 applications of 5 Whys or 5 Hows (combined)
|
|
|
|
---
|
|
|
|
## Format Consistency
|
|
|
|
- Use markdown headers: `**Section Name:**` for major sections
|
|
- Use bullet points (`-`) for lists
|
|
- Use code blocks (` ```solidity `) for code snippets
|
|
- Reference line numbers: `L45`, `lines 98-102`
|
|
- Separate blocks with `---` horizontal rules for readability
|