393 lines
13 KiB
Markdown
393 lines
13 KiB
Markdown
# Quality Scan Script Opportunities — Reference Guide
|
|
|
|
**Reference: `./references/script-standards.md` for script creation guidelines.**
|
|
|
|
This document identifies deterministic operations that should be offloaded from the LLM into scripts for quality validation of BMad agents.
|
|
|
|
> **Implementation Status:** Many of the scripts described below have been implemented as prepass scripts and scanners. See the status notes on each entry. The implemented scripts live in `./scripts/` and follow the prepass architecture (structured JSON output consumed by LLM scanners) rather than the standalone validator pattern originally envisioned here.
|
|
|
|
---
|
|
|
|
## Core Principle
|
|
|
|
Scripts validate structure and syntax (deterministic). Prompts evaluate semantics and meaning (judgment). Create scripts for checks that have clear pass/fail criteria.
|
|
|
|
---
|
|
|
|
## How to Spot Script Opportunities
|
|
|
|
During build, walk through every capability/operation and apply these tests:
|
|
|
|
### The Determinism Test
|
|
|
|
For each operation the agent performs, ask:
|
|
|
|
- Given identical input, will this ALWAYS produce identical output? → Script
|
|
- Does this require interpreting meaning, tone, context, or ambiguity? → Prompt
|
|
- Could you write a unit test with expected output for every input? → Script
|
|
|
|
### The Judgment Boundary
|
|
|
|
Scripts handle: fetch, transform, validate, count, parse, compare, extract, format, check structure
|
|
Prompts handle: interpret, classify with ambiguity, create, decide with incomplete info, evaluate quality, synthesize meaning
|
|
|
|
### Pattern Recognition Checklist
|
|
|
|
Table of signal verbs/patterns mapping to script types:
|
|
| Signal Verb/Pattern | Script Type |
|
|
|---------------------|-------------|
|
|
| "validate", "check", "verify" | Validation script |
|
|
| "count", "tally", "aggregate", "sum" | Metric/counting script |
|
|
| "extract", "parse", "pull from" | Data extraction script |
|
|
| "convert", "transform", "format" | Transformation script |
|
|
| "compare", "diff", "match against" | Comparison script |
|
|
| "scan for", "find all", "list all" | Pattern scanning script |
|
|
| "check structure", "verify exists" | File structure checker |
|
|
| "against schema", "conforms to" | Schema validation script |
|
|
| "graph", "map dependencies" | Dependency analysis script |
|
|
|
|
### The Outside-the-Box Test
|
|
|
|
Beyond obvious validation, consider:
|
|
|
|
- Could any data gathering step be a script that returns structured JSON for the LLM to interpret?
|
|
- Could pre-processing reduce what the LLM needs to read?
|
|
- Could post-processing validate what the LLM produced?
|
|
- Could metric collection feed into LLM decision-making without the LLM doing the counting?
|
|
|
|
### Your Toolbox
|
|
|
|
**Python is the default** for all script logic (cross-platform: macOS, Linux, Windows/WSL). See `./references/script-standards.md` for full rationale.
|
|
|
|
- **Python:** Standard library (`json`, `pathlib`, `re`, `argparse`, `collections`, `difflib`, `ast`, `csv`, `xml`, etc.) plus PEP 723 inline-declared dependencies (`tiktoken`, `jsonschema`, `pyyaml`, etc.)
|
|
- **Safe shell commands:** `git`, `gh`, `uv run`, `npm`/`npx`/`pnpm`, `mkdir -p` (invocation only, not logic)
|
|
|
|
If you can express the logic as deterministic code, it's a script candidate.
|
|
|
|
### The --help Pattern
|
|
|
|
All scripts use PEP 723 and `--help`. When a skill's prompt needs to invoke a script, it can say "Run `./scripts/foo.py --help` to understand inputs/outputs, then invoke appropriately" instead of inlining the script's interface. This saves tokens in prompts and keeps a single source of truth for the script's API.
|
|
|
|
---
|
|
|
|
## Priority 1: High-Value Validation Scripts
|
|
|
|
### 1. Frontmatter Validator
|
|
|
|
> **Status: IMPLEMENTED** in `./scripts/prepass-structure-capabilities.py`. Handles frontmatter parsing, name validation (kebab-case, agent naming convention), description presence, and field validation as part of the structure prepass.
|
|
|
|
**What:** Validate SKILL.md frontmatter structure and content
|
|
|
|
**Why:** Frontmatter is the #1 factor in skill triggering. Catch errors early.
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# checks:
|
|
- name exists and is kebab-case
|
|
- description exists and follows pattern "Use when..."
|
|
- No forbidden fields (XML, reserved prefixes)
|
|
- Optional fields have valid values if present
|
|
```
|
|
|
|
**Output:** JSON with pass/fail per field, line numbers for errors
|
|
|
|
**Implementation:** Python with argparse, no external deps needed
|
|
|
|
---
|
|
|
|
### 2. Template Artifact Scanner
|
|
|
|
> **Status: IMPLEMENTED** in `./scripts/prepass-structure-capabilities.py`. Detects orphaned template substitution artifacts (`{if-...}`, `{displayName}`, etc.) as part of the structure prepass.
|
|
|
|
**What:** Scan for orphaned template substitution artifacts
|
|
|
|
**Why:** Build process may leave `{if-autonomous}`, `{displayName}`, etc.
|
|
|
|
**Output:** JSON with file path, line number, artifact type
|
|
|
|
**Implementation:** Python script with JSON output
|
|
|
|
---
|
|
|
|
### 3. Access Boundaries Extractor
|
|
|
|
> **Status: PARTIALLY SUPERSEDED.** The memory-system.md file this script targets belongs to the legacy stateless-agent memory architecture. Path validation is now handled by `./scripts/scan-path-standards.py`. The sanctum architecture uses different structural patterns validated by `./scripts/prepass-sanctum-architecture.py`.
|
|
|
|
**What:** Extract and validate access boundaries from memory-system.md
|
|
|
|
**Why:** Security critical — must be defined before file operations
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# Parse memory-system.md for:
|
|
- ## Read Access section exists
|
|
- ## Write Access section exists
|
|
- ## Deny Zones section exists (can be empty)
|
|
- Paths use placeholders correctly ({project-root} for project-scope paths, ./ for skill-internal)
|
|
```
|
|
|
|
**Output:** Structured JSON of read/write/deny zones
|
|
|
|
**Implementation:** Python with markdown parsing
|
|
|
|
---
|
|
|
|
---
|
|
|
|
## Priority 2: Analysis Scripts
|
|
|
|
### 4. Token Counter
|
|
|
|
> **Status: IMPLEMENTED** in `./scripts/prepass-prompt-metrics.py`. Computes file-level token estimates (chars / 4 approximation), section sizes, and content density metrics as part of the prompt craft prepass.
|
|
|
|
**What:** Count tokens in each file of an agent
|
|
|
|
**Why:** Identify verbose files that need optimization
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# For each .md file:
|
|
- Total tokens (approximate: chars / 4)
|
|
- Code block tokens
|
|
- Token density (tokens / meaningful content)
|
|
```
|
|
|
|
**Output:** JSON with file path, token count, density score
|
|
|
|
**Implementation:** Python with tiktoken for accurate counting, or char approximation
|
|
|
|
---
|
|
|
|
### 5. Dependency Graph Generator
|
|
|
|
> **Status: IMPLEMENTED** in `./scripts/prepass-execution-deps.py`. Builds dependency graphs from skill structure, detects circular dependencies, transitive redundancy, and identifies parallelizable stage groups.
|
|
|
|
**What:** Map skill → external skill dependencies
|
|
|
|
**Why:** Understand agent's dependency surface
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# Parse SKILL.md for skill invocation patterns
|
|
# Parse prompt files for external skill references
|
|
# Build dependency graph
|
|
```
|
|
|
|
**Output:** DOT format (GraphViz) or JSON adjacency list
|
|
|
|
**Implementation:** Python, JSON parsing only
|
|
|
|
---
|
|
|
|
### 6. Activation Flow Analyzer
|
|
|
|
> **Status: IMPLEMENTED** in `./scripts/prepass-structure-capabilities.py`. Extracts the On Activation section inventory, detects required agent sections, and validates structure for both stateless and memory agent bootloader patterns.
|
|
|
|
**What:** Parse SKILL.md On Activation section for sequence
|
|
|
|
**Why:** Validate activation order matches best practices
|
|
|
|
**Checks:**
|
|
|
|
Validate that the activation sequence is logically ordered (e.g., config loads before config is used, memory loads before memory is referenced).
|
|
|
|
**Output:** JSON with detected steps, missing steps, out-of-order warnings
|
|
|
|
**Implementation:** Python with regex pattern matching
|
|
|
|
---
|
|
|
|
### 7. Memory Structure Validator
|
|
|
|
> **Status: SUPERSEDED** by `./scripts/prepass-sanctum-architecture.py`. The sanctum architecture replaced the old memory-system.md pattern. The prepass validates sanctum template inventory (PERSONA, CREED, BOND, etc.), section inventories, init script parameters, and first-breath structure.
|
|
|
|
**What:** Validate memory-system.md structure
|
|
|
|
**Why:** Memory files have specific requirements
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# Required sections:
|
|
- ## Core Principle
|
|
- ## File Structure
|
|
- ## Write Discipline
|
|
- ## Memory Maintenance
|
|
```
|
|
|
|
**Output:** JSON with missing sections, validation errors
|
|
|
|
**Implementation:** Python with markdown parsing
|
|
|
|
---
|
|
|
|
### 8. Subagent Pattern Detector
|
|
|
|
> **Status: IMPLEMENTED** in `./scripts/prepass-execution-deps.py`. Detects subagent-from-subagent patterns, multi-source operation detection, loop patterns, and sequential processing patterns that indicate subagent delegation needs.
|
|
|
|
**What:** Detect if agent uses BMAD Advanced Context Pattern
|
|
|
|
**Why:** Agents processing 5+ sources MUST use subagents
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# Pattern detection in SKILL.md:
|
|
- "DO NOT read sources yourself"
|
|
- "delegate to sub-agents"
|
|
- "/tmp/analysis-" temp file pattern
|
|
- Sub-agent output template (50-100 token summary)
|
|
```
|
|
|
|
**Output:** JSON with pattern found/missing, recommendations
|
|
|
|
**Implementation:** Python with keyword search and context extraction
|
|
|
|
---
|
|
|
|
## Priority 3: Composite Scripts
|
|
|
|
### 9. Agent Health Check
|
|
|
|
> **Status: IMPLEMENTED** via `./scripts/generate-html-report.py`. Reads aggregated report-data.json (produced by the quality analysis workflow) and generates an interactive HTML report with branding, capability dashboards, findings, and opportunity themes.
|
|
|
|
**What:** Run all validation scripts and aggregate results
|
|
|
|
**Why:** One-stop shop for agent quality assessment
|
|
|
|
**Composition:** Runs Priority 1 scripts, aggregates JSON outputs
|
|
|
|
**Output:** Structured health report with severity levels
|
|
|
|
**Implementation:** Python script orchestrating other Python scripts via subprocess, JSON aggregation
|
|
|
|
---
|
|
|
|
### 10. Comparison Validator
|
|
|
|
**What:** Compare two versions of an agent for differences
|
|
|
|
**Why:** Validate changes during iteration
|
|
|
|
**Checks:**
|
|
|
|
```python
|
|
# Git diff with structure awareness:
|
|
- Frontmatter changes
|
|
- Capability additions/removals
|
|
- New prompt files
|
|
- Token count changes
|
|
```
|
|
|
|
**Output:** JSON with categorized changes
|
|
|
|
**Implementation:** Python with subprocess for git commands, JSON output
|
|
|
|
---
|
|
|
|
## Script Output Standard
|
|
|
|
All scripts MUST output structured JSON for agent consumption:
|
|
|
|
```json
|
|
{
|
|
"script": "script-name",
|
|
"version": "1.0.0",
|
|
"agent_path": "/path/to/agent",
|
|
"timestamp": "2025-03-08T10:30:00Z",
|
|
"status": "pass|fail|warning",
|
|
"findings": [
|
|
{
|
|
"severity": "critical|high|medium|low|info",
|
|
"category": "structure|security|performance|consistency",
|
|
"location": { "file": "SKILL.md", "line": 42 },
|
|
"issue": "Clear description",
|
|
"fix": "Specific action to resolve"
|
|
}
|
|
],
|
|
"summary": {
|
|
"total": 10,
|
|
"critical": 1,
|
|
"high": 2,
|
|
"medium": 3,
|
|
"low": 4
|
|
}
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## Implementation Checklist
|
|
|
|
When creating validation scripts:
|
|
|
|
- [ ] Uses `--help` for documentation
|
|
- [ ] Accepts `--agent-path` for target agent
|
|
- [ ] Outputs JSON to stdout
|
|
- [ ] Writes diagnostics to stderr
|
|
- [ ] Returns meaningful exit codes (0=pass, 1=fail, 2=error)
|
|
- [ ] Includes `--verbose` flag for debugging
|
|
- [ ] Has tests in `./scripts/tests/` subfolder
|
|
- [ ] Self-contained (PEP 723 for Python)
|
|
- [ ] No interactive prompts
|
|
|
|
---
|
|
|
|
## Integration with Quality Analysis
|
|
|
|
The Quality Analysis skill should:
|
|
|
|
1. **First**: Run available scripts for fast, deterministic checks
|
|
2. **Then**: Use sub-agents for semantic analysis (requires judgment)
|
|
3. **Finally**: Synthesize both sources into report
|
|
|
|
**Example flow:**
|
|
|
|
```bash
|
|
# Run prepass scripts for fast, deterministic checks
|
|
uv run ./scripts/prepass-structure-capabilities.py --agent-path {path}
|
|
uv run ./scripts/prepass-prompt-metrics.py --agent-path {path}
|
|
uv run ./scripts/prepass-execution-deps.py --agent-path {path}
|
|
uv run ./scripts/prepass-sanctum-architecture.py --agent-path {path}
|
|
uv run ./scripts/scan-path-standards.py --agent-path {path}
|
|
uv run ./scripts/scan-scripts.py --agent-path {path}
|
|
|
|
# Collect JSON outputs
|
|
# Spawn sub-agents only for semantic checks
|
|
# Synthesize complete report, then generate HTML:
|
|
uv run ./scripts/generate-html-report.py {quality-report-dir}
|
|
```
|
|
|
|
---
|
|
|
|
## Script Creation Priorities
|
|
|
|
**Phase 1 (Immediate value):** DONE
|
|
|
|
1. Template Artifact Scanner -- implemented in `prepass-structure-capabilities.py`
|
|
2. Access Boundaries Extractor -- superseded by `scan-path-standards.py` and `prepass-sanctum-architecture.py`
|
|
|
|
**Phase 2 (Enhanced validation):** DONE
|
|
|
|
4. Token Counter -- implemented in `prepass-prompt-metrics.py`
|
|
5. Subagent Pattern Detector -- implemented in `prepass-execution-deps.py`
|
|
6. Activation Flow Analyzer -- implemented in `prepass-structure-capabilities.py`
|
|
|
|
**Phase 3 (Advanced features):** DONE
|
|
|
|
7. Dependency Graph Generator -- implemented in `prepass-execution-deps.py`
|
|
8. Memory Structure Validator -- superseded by `prepass-sanctum-architecture.py`
|
|
9. Agent Health Check orchestrator -- implemented in `generate-html-report.py`
|
|
|
|
**Phase 4 (Comparison tools):** NOT YET IMPLEMENTED
|
|
|
|
10. Comparison Validator (Python) -- still a future opportunity
|
|
|
|
Additional implemented scripts not in original plan:
|
|
- `scan-scripts.py` -- validates script quality (PEP 723, agentic design, linting)
|
|
- `scan-path-standards.py` -- validates path conventions across all skill files
|