-
Notifications
You must be signed in to change notification settings - Fork 1
Implement comprehensive QA tool features and improvements #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
christian-byrne
wants to merge
13
commits into
main
Choose a base branch
from
resume-work
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Added START.sh for Linux, START.bat for Windows, START.command for Mac - Created WORKFLOW_GUIDE.md with detailed team collaboration workflow - Added QUICK_REFERENCE.md as one-page cheat sheet - Updated README.md to be more concise - Emphasized git-based team collaboration throughout - Removed GitHub Desktop references (using native git only) - Added platform-specific instructions for all OS
- Made all commands fully interactive and actionable - View All Packs: Categorized (Tested/Issues/Untested), searchable, drill-down - Check Progress: Show all issues option, actionable next steps (diff/sync) - Compare (Diff): Interactive categories, inline deltas, direct sync option - Validation: Filter by errors/warnings, detailed issue views - Sync: Safety warnings, preview (dry run), clear explanations - Added comprehensive in-app help system with 6 topics - No more truncated lists with dead ends - Every screen provides context and next actions - Consistent navigation patterns with Back options
- Ignore dev/implementation note files (TODO.md, etc.) - Ignore Rust build artifacts (cli/target/) - Ignore local-only generated workflows - Keep user-facing docs (WORKFLOW_GUIDE, QUICK_REFERENCE)
- Added JSON schema for checklist validation - Added vue-nodes-cloud as example project - Provides template for new projects
- Enhanced devtools-node-pack-tester.js with export/diff functions - Added install-cli.sh for easy setup - Browser script now supports QA.export() and QA.diff()
- Added GitHub Actions for releases and validation - Added Makefile for common development tasks - Added CHANGELOG.md for tracking releases - Workflows handle multi-platform builds (Windows, Mac, Linux)
- Added DetailedChecklist parser for checklist-detailed.md - Added get_unique_node_types() to Workflow - Created calculate_node_diff() function to compare node lists - Added interactive drill-down from count mismatches - Shows which specific nodes are missing/extra with +/- indicators - Example: '+NodeA (in workflow, not in checklist)' - Example: '-NodeB (in checklist, not in workflow)' - Users can now see exactly what changed, not just counts
- New 'generate' command to search nodes and create workflows - Interactive search query input - Shows all matching nodes before generation - Choice: save local-only (gitignored) or commit to repo - Generates minimal ComfyUI workflow JSON in grid layout - Clear copy-paste instructions (3 methods): - Ctrl+V directly on canvas (easiest) - Copy from file and paste - Drag & drop file - Workflows saved to: - workflows/generated-local/ (gitignored) - workflows/generated-shared/ (committed) - Added to dashboard menu
- New git.rs module with safe wrapper functions - Three dashboard options (only shown if git available): - 🔄 Pull latest from team - 📝 Review my changes - 📤 Commit and share my work - Interactive commit flow with message input - Graceful error handling for common scenarios - Shows git status summary in dashboard - Never auto-runs git commands without explicit user action - Clear error messages for merge conflicts, push failures, etc - Fixed main.rs to properly import from library crate Researched approach (see GIT_AUTOMATION_RESEARCH.md): - Option 3: Helper Commands (recommended) - Safe: requires explicit user action - Easy: guides non-technical users - Coexists with manual git usage
Features: - Generate Python test scripts for API-based node testing - Interactive selection of pack and nodes - Test functions for each node via /prompt endpoint - Local-only or committed test scripts - Instructions for running tests and marking checklist - Saves to api-tests/generated-local/ or api-tests/generated-shared/ Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Features: - Added comfy-table for structured output - Enhanced status command with formatted tables showing progress bars - Improved list command with status indicators (Complete/In Progress/Not Started) - Enhanced diff command with comprehensive comparison table - Color-coded cells based on status (green/yellow/red) - Mini progress bars in status overview Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Features: - Unit tests for checklist parsing and serialization - Workflow loading and node type extraction tests - Metadata JSON parsing tests - Validation tests for checklist formats - All tests pass successfully Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Features: - Added GitHub Actions workflow for Rust CI - Runs format check, clippy linting, and tests on push/PR - Multi-platform testing (Linux, macOS, Windows) - Added rustfmt configuration for consistent formatting - Added clippy configuration for linting rules - Added Makefile with common dev commands - Auto-fixed clippy warnings Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR implements all requested features for the ComfyUI Custom Node QA tool, transforming it into a comprehensive testing platform with enhanced UX, automation, and CI/CD.
Features Implemented
1. Detailed Node Diff View
2. Workflow Generator from Search
3. Git Automation
4. API Node Testing Flow
5. Enhanced UI with Tables & Progress Bars
6. Comprehensive Test Suite
7. CI/CD Pipeline
Technical Improvements
Testing
✅ All unit tests passing (15 tests)
✅ Build successful on release mode
✅ Clippy linting clean
✅ Format check passing
Files Changed
Commits
All changes committed in logical groupings: