Testing improvements completing Week 1 consolidation: 1. Add tests/test_workflow.py (6 comprehensive tests) - test_extract_vote_value: Vote value extraction - test_parse_votes_single_participant_single_vote: Basic parsing - test_parse_votes_single_participant_multiple_votes: Latest vote wins - test_parse_votes_multiple_participants: Multi-participant tracking - test_parse_votes_malformed_lines: Error handling - test_parse_votes_mixed_content: Real-world scenarios 2. Improve tests/test_template_meta.py - Replace stub tests with real implementations - test_find_template_fields: Field extraction from templates - test_render_request_from_template: Template rendering - test_render_request_from_template_with_existing_meta: Preserve existing data 3. Add __init__.py files for test imports - assets/__init__.py: Make assets importable - automation/__init__.py: Make automation importable - Enables tests to import workflow.py and create_feature.py 4. Update pyproject.toml pytest configuration - Add ".", "assets" to pythonpath - Allows tests to import from automation/ and assets/ Test Results: - All 11 tests passing - Coverage: workflow vote parsing, template rendering, utils - Foundation ready for Stage 2 development 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| assets | ||
| automation | ||
| docs | ||
| src | ||
| tests | ||
| tools | ||
| .gitignore | ||
| AGENTS.md | ||
| CLAUDE.md | ||
| GEMINI.md | ||
| README.md | ||
| VERSION | ||
| pyproject.toml | ||
README.md
CascadingDev (CDev)
CDev — short for Cascading Development — is a Git-native AI–human collaboration framework that automates documentation, discussion summaries, and code review directly within your repository.
It lets you build self-documenting projects where AI assists in generating and maintaining feature discussions, design docs, and implementation plans — all version-controlled alongside your code.
✨ Key Features
- Git-Integrated Workflow — every discussion, decision, and artifact lives in Git.
- Cascading Rules System — nearest
.ai-rules.ymldefines how automation behaves. - Stage-Per-Discussion Model — separate files for feature, design, implementation, testing, and review.
- Pre-commit Hook — automatically maintains summaries, diagrams, and vote tallies.
- Ramble GUI — friendly PySide6/PyQt5 dialog for capturing structured feature requests.
- Deterministic Builds — a reproducible installer bundle you can unzip and run anywhere.
🚀 Quick Start (Developers)
# 1. Create and activate a virtual environment
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip wheel PySide6
# 2. Build the installer bundle
python tools/build_installer.py
# 3. Test-install into a temporary folder
python install/cascadingdev-*/setup_cascadingdev.py --target /tmp/myproject --no-ramble