.cursor/skills/completion-report-generation/SKILL.md
--- name: completion-report-generation description: Guides completion report generation: what was done, what's next, blockers, progress tracking, Master Plan updates. Use when completing phases, sections, or features. --- # Completion Report Generation ## Report Structure ```markdown # Phase X.Y.Z Completion Report **Date:** [Date] **Agent:** [Agent Name] **Status:** ✅ Complete ## What Was Done ### Completed Tasks - [x] Task 1 - [x] Task 2 - [x] Task 3 ### Implementation Summary [Brief su
npx skillsauth add avra-cadavra/avrai .cursor/skills/completion-report-generationInstall 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.
# Phase X.Y.Z Completion Report
**Date:** [Date]
**Agent:** [Agent Name]
**Status:** ✅ Complete
## What Was Done
### Completed Tasks
- [x] Task 1
- [x] Task 2
- [x] Task 3
### Implementation Summary
[Brief summary of what was implemented]
### Key Deliverables
- Deliverable 1: [Description]
- Deliverable 2: [Description]
## What's Next
### Next Phase/Section
- Next task 1
- Next task 2
### Dependencies Satisfied
- Dependency 1 (satisfies Phase X.Y)
- Dependency 2 (enables Phase X.Z)
## Blockers (if any)
None / [List blockers]
## Master Plan Updates
- Updated Phase X.Y status to Complete
- Updated dependencies in Master Plan
- Next phase can now proceed
## Testing
- [x] Unit tests written and passing
- [x] Integration tests written and passing
- [x] Coverage requirements met
## Documentation
- [x] Code documented
- [x] API documentation updated
- [x] Progress documents updated
## Master Plan Updates
1. **Status Update:**
- Phase X.Y.Z: Complete → ✅
2. **Dependencies:**
- Phase X.Y.Z completion enables Phase X.Y.Z+1
3. **Next Steps:**
- Proceed to Phase X.Y.Z+1
Update progress documents:
docs/agents/status/status_tracker.md - Update phase statusdocs/plans/[phase]/progress.md - Update detailed progressdocs/plans/[phase]/status.md - Update current statusdocs/agents/reports/ - Completion report examplesdevelopment
--- name: world-model-development description: Guides world model development patterns: state/action encoders, ONNX inference, feature extraction pipeline, latency budgets. Use when implementing world model components, state encoders, action encoders, feature extractors, or ONNX models. Core skill for Phases 3-6. --- # World Model Development Patterns ## Core Principle All world model components follow LeCun's autonomous machine intelligence framework. State observations flow through a percep
tools
Implements base workflow controller patterns for multi-step processes. Use when creating complex workflows that require orchestration of multiple steps with error handling and rollback.
testing
--- name: widget-test-patterns description: Guides widget test patterns: BLoC testing, user interactions, state changes, material app setup. Use when writing widget tests, testing UI components, or validating widget behavior. --- # Widget Test Patterns ## Core Pattern Widget tests verify UI behavior: user interactions, state changes, and visual display. ## Basic Widget Test Setup ```dart testWidgets('widget displays correctly', (WidgetTester tester) async { // Arrange: Create widget awa
testing
--- name: test-template-generation description: Generates test templates: unit, widget, integration, service tests following project patterns. Use when creating new tests or ensuring tests follow project standards. --- # Test Template Generation ## Available Templates Test templates are located in `test/templates/`: - `unit_test_template.dart` - `widget_test_template.dart` - `integration_test_template.dart` - `service_test_template.dart` ## Unit Test Template ```dart /// SPOTS Component Uni