Cascading Development Framework
Go to file
rob bee5315aea docs: Add automation quick reference guide
Add automation/README.md with:
- Quick start instructions for Phase 1 and Phase 2
- Configuration examples for all supported providers
- How it works explanation
- Vote format and optional markers
- Testing and troubleshooting sections

Provides a concise reference for users without needing to read full AUTOMATION.md.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-30 18:32:08 -03:00
assets test: Add comprehensive workflow tests and improve template tests 2025-10-30 16:20:42 -03:00
automation docs: Add automation quick reference guide 2025-10-30 18:32:08 -03:00
docs refactor: Support CLI-based AI providers (Claude Code, Gemini, Codex) 2025-10-30 18:31:27 -03:00
src fix: Make workflow.py executable and add missing argparse import 2025-10-30 16:14:44 -03:00
tests test: Add comprehensive workflow tests and improve template tests 2025-10-30 16:20:42 -03:00
tools build: Bundle automation/ and update pre-commit hook comment 2025-10-30 14:24:32 -03:00
.gitignore 1st commit 2025-10-27 20:17:35 -03:00
AGENTS.md feat: Implement vote parsing orchestrator and testing infrastructure 2025-10-30 14:25:53 -03:00
CLAUDE.md docs: Add CLAUDE.md and restructure DESIGN.md for clarity 2025-10-30 12:31:33 -03:00
GEMINI.md uptodate agents 2025-10-30 13:17:58 -03:00
README.md 1st commit 2025-10-27 16:24:50 -03:00
VERSION 1st commit 2025-10-27 16:24:50 -03:00
pyproject.toml test: Add comprehensive workflow tests and improve template tests 2025-10-30 16:20:42 -03:00

README.md

CascadingDev (CDev)

CDev — short for Cascading Development — is a Git-native AIhuman 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.yml defines 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