Changed temp file location from /tmp to .git/ai-agents-temp/ to resolve Claude CLI permission errors when reading discussion content. Problem: - agents.py created temp files in /tmp/tmp*.md - Asked Claude CLI to read these files - Claude CLI couldn't access /tmp without explicit permission grant - Error: "I don't have permission to read that file" - Fell back to basic pattern matching (degraded functionality) Solution: - Create temp files in .git/ai-agents-temp/ directory - Claude CLI has permission to read files in the project directory - Use PID for unique filenames to avoid conflicts - Cleanup still handled by finally block Benefits: - No user configuration needed - Claude CLI can now read discussion files - AI agents work properly for structured extraction - Temp files automatically gitignored (.git/ directory) - Easy debugging (files visible in project) The finally block at line 154-158 still cleans up temp files after use. 🤖 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