## Phase 8: Enterprise Extractor Improvements ✅ - 14 security extractors (TLS, JWT, SQL injection, XSS, etc.) - 10 framework-specific extractors (Spring, Django, Rails, etc.) - Config file security detection (YAML, TOML) ## Phase 9: Autonomous Extractor Generation ✅ - Shadow mode executor with TP/FP tracking - Graduation pipeline with confidence thresholds - Auto-rollback on regression detection - Cross-project pattern syncing ## UAT Suite Complete (14 scripts, 90 tests) - test-core-detection.sh (6 tests) - test-declarative-extractors.sh (5 tests) - test-domain-frameworks.sh (5 tests) - test-domain-unreal.sh (3 tests) - test-llm-extraction.sh (6 tests) - test-eval-harness.sh (5 tests) - test-cross-language.sh (3 tests) - test-precommit-performance.sh (4 tests) - test-output-formats.sh (8 tests) - test-drift-detection.sh (6 tests) - test-exit-codes.sh (12 tests) + 3 more scripts ## Other Changes - Updated roadmap to mark Phase 8-9 complete - Added .gitignore entries for build artifacts - Updated pre-commit: 800 line limit, exclude tests/data/cmd Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
852 B
YAML
22 lines
852 B
YAML
task: aphoria-code-patterns
|
|
created: 2026-02-06
|
|
phase: COMPLETE
|
|
patterns:
|
|
- name: unwrap-expect-isolation
|
|
description: Test code uses unwrap/expect without #[allow] markers
|
|
before_count: 72
|
|
current_count: 0
|
|
status: NOT_APPLICABLE
|
|
note: All 72 unwrap() calls are in test functions - acceptable practice
|
|
- name: json-construction-consistency
|
|
description: Mix of json! macro and struct serialization
|
|
before_count: 27
|
|
current_count: 27
|
|
status: NOT_APPLICABLE
|
|
note: json! macro is used appropriately for dynamic JSON, SARIF format, and test fixtures
|
|
resolution: |
|
|
Both patterns from the audit were false positives:
|
|
1. Unwrap/expect: All in test code where it's acceptable
|
|
2. JSON construction: json! macro is the right choice for dynamic/report JSON
|
|
No fixes needed. Original audit was overly aggressive.
|